/* ===== VARIABLES ===== */ :root { --primary-1: #ec4899; --primary-2: #06b6d4; --bg-light: #f9fafb; --bg-white: #ffffff; --text-dark: #1f2937; --text-gray: #6b7280; --text-light: #9ca3af; --border: #e5e7eb; --shadow: 0 4px 6px -1px rgba(0,0,0,0.1); --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1); --radius: 12px; --radius-lg: 20px; --transition: all 0.3s ease; } /* ===== COLOR THEMES ===== */ .theme-0 { --primary-1: #ec4899; --primary-2: #06b6d4; } .theme-1 { --primary-1: #8b5cf6; --primary-2: #f97316; } .theme-2 { --primary-1: #10b981; --primary-2: #3b82f6; } .theme-3 { --primary-1: #f43f5e; --primary-2: #8b5cf6; } .theme-4 { --primary-1: #f59e0b; --primary-2: #14b8a6; } .theme-5 { --primary-1: #6366f1; --primary-2: #ec4899; } .theme-6 { --primary-1: #84cc16; --primary-2: #a855f7; } .theme-7 { --primary-1: #0ea5e9; --primary-2: #f43f5e; } .theme-8 { --primary-1: #d946ef; --primary-2: #06b6d4; } .theme-9 { --primary-1: #ef4444; --primary-2: #eab308; } /* ===== RESET ===== */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg-light); color: var(--text-dark); line-height: 1.6; transition: var(--transition); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } a { text-decoration: none; color: inherit; } button { cursor: pointer; border: none; background: none; font-family: inherit; } /* ===== SPA PAGES ===== */ .page { display: none; } .page.active { display: block; } /* ===== GRADIENT TEXT ===== */ .gradient-text { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .gradient-text-white { background: white; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } /* ===== BUTTONS ===== */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius); font-weight: 600; font-size: 14px; transition: var(--transition); position: relative; min-width: 100px; min-height: 40px; } .btn-primary { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; box-shadow: var(--shadow); } .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; } /* Button Loading Spinner */ .btn.btn-loading { color: transparent !important; pointer-events: none; } .btn.btn-loading * { visibility: hidden; } .btn.btn-loading::after { content: ''; position: absolute; width: 20px; height: 20px; top: 50%; left: 50%; margin-left: -10px; margin-top: -10px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #ffffff; animation: btn-spin 0.8s linear infinite; visibility: visible; } @keyframes btn-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .btn-outline { border: 2px solid var(--border); background: white; color: var(--text-dark); } .btn-outline:hover { border-color: var(--primary-1); background: rgba(236, 72, 153, 0.05); } .btn-lg { padding: 16px 32px; font-size: 18px; } .btn-block { width: 100%; justify-content: center; } .btn-text { display: none; } @media (min-width: 640px) { .btn-text { display: inline; } } /* ===== HEADER ===== */ .header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); } .header-content { display: flex; align-items: center; justify-content: space-between; height: 70px; } .logo { display: flex; align-items: center; gap: 10px; } .logo-img { width: 45px; height: 45px; border-radius: var(--radius); object-fit: cover; } .logo-text { display: flex; flex-direction: column; line-height: 1.1; } .logo-text span { font-size: 18px; font-weight: 900; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .logo-text-single { font-size: 20px; font-weight: 800; } .nav { display: none; gap: 30px; } .nav-link { font-weight: 500; color: var(--text-gray); transition: var(--transition); } .nav-link:hover, .nav-link.active { color: var(--primary-1); } .header-buttons { display: flex; gap: 10px; align-items: center; } .btn-cart { position: relative; } .cart-badge { position: absolute; top: -8px; right: -8px; width: 20px; height: 20px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; font-size: 11px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); transition: var(--transition); } .cart-badge.show { opacity: 1; transform: scale(1); } .mobile-menu-btn { display: block; padding: 8px; color: var(--text-gray); order: 3; } .mobile-menu { display: none; flex-direction: column; padding: 15px 20px; border-top: 1px solid var(--border); background: white; } .mobile-menu.show { display: flex; } .mobile-nav-link { padding: 12px 0; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border); } .mobile-search-btn { width: 100%; text-align: left; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; border-radius: var(--radius); margin-top: 10px; padding: 15px; border: none; } @media (min-width: 768px) { .nav { display: flex; } .mobile-menu-btn { display: none; } } /* ===== HERO ===== */ .hero { position: relative; height: 600px; overflow: hidden; } .hero-slider { position: relative; height: 100%; } .hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: all 0.7s ease; } .hero-slide.active { opacity: 1; transform: scale(1); } .hero-bg { width: 100%; height: 100%; object-fit: cover; } .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent); } .hero-content { position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; justify-content: center; padding: 60px 20px; color: white; } .hero-content .btn { width: fit-content; } .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 15px; width: fit-content; } .hero-title { font-size: clamp(32px, 6vw, 56px); font-weight: 800; margin-bottom: 15px; max-width: 600px; } .hero-subtitle { font-size: clamp(16px, 2.5vw, 20px); opacity: 0.9; margin-bottom: 25px; max-width: 500px; } .hero-package-info { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; } .hero-coins { font-size: 24px; font-weight: 700; } .hero-price { font-size: 32px; font-weight: 800; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; } .hero-feature { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 50px; font-size: 14px; } .hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; } .hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); } .hero-dot.active { width: 30px; border-radius: 10px; background: white; } /* ===== STATS BAR ===== */ .stats-bar { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); padding: 20px 0; } .stats-bar-grid { display: flex; justify-content: space-around; align-items: center; gap: 10px; } .stats-bar-item { text-align: center; color: white; } .stats-bar-value { font-size: 24px; font-weight: 800; } .stats-bar-label { font-size: 12px; opacity: 0.9; } @media (max-width: 768px) { .stats-bar { padding: 15px 0; } .stats-bar-value { font-size: 16px; } .stats-bar-label { font-size: 9px; } } /* ===== PAGE HEADER ===== */ .page-header { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); padding: 60px 0; text-align: center; color: white; } .page-title { font-size: clamp(28px, 5vw, 48px); font-weight: 800; margin-bottom: 15px; } .page-subtitle { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto; } /* ===== SECTION TITLES ===== */ .section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; text-align: center; margin-bottom: 15px; } .section-subtitle { text-align: center; color: var(--text-gray); max-width: 600px; margin: 0 auto 50px; } /* ===== PACKAGES ===== */ .packages { padding: 80px 0; position: relative; overflow: hidden; } .animated-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; } .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; animation: blob 10s infinite ease-in-out; } .blob-1 { width: 400px; height: 400px; background: var(--primary-1); top: 10%; left: 10%; } .blob-2 { width: 350px; height: 350px; background: var(--primary-2); top: 40%; right: 10%; animation-delay: 2s; } .blob-3 { width: 300px; height: 300px; background: linear-gradient(var(--primary-1), var(--primary-2)); bottom: 10%; left: 30%; animation-delay: 4s; } @keyframes blob { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(30px, -50px) scale(1.1); } 50% { transform: translate(-20px, 30px) scale(0.9); } 75% { transform: translate(40px, 20px) scale(1.05); } } .packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; position: relative; z-index: 1; } .package-card { background: white; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; } .package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); } .package-card.popular { border: 2px solid var(--primary-1); } .package-badge { position: absolute; top: 0; right: 0; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; padding: 8px 20px; font-size: 12px; font-weight: 700; border-radius: 0 var(--radius-lg) 0 var(--radius); } .package-icon { width: 80px; height: 80px; margin: 0 auto 20px; } .package-icon img { width: 100%; height: 100%; object-fit: contain; } .package-name { font-size: 22px; font-weight: 700; text-align: center; margin-bottom: 10px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .package-coins { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 24px; font-weight: 700; color: var(--primary-1); margin-bottom: 15px; } .package-price { font-size: 36px; font-weight: 800; text-align: center; margin-bottom: 20px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .package-features { list-style: none; margin-bottom: 25px; } .package-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-gray); } .package-features li::before { content: '✓'; color: #10b981; font-weight: 700; } /* ===== HOW IT WORKS ===== */ .how-it-works { padding: 80px 0; background: white; } .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; } .step-card { text-align: center; position: relative; } .step-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 36px; transition: var(--transition); } .step-card:hover .step-icon { transform: scale(1.1) rotate(5deg); } .step-number { position: absolute; top: -10px; right: calc(50% - 55px); width: 30px; height: 30px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary-1); box-shadow: var(--shadow); } .step-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; } .step-desc { color: var(--text-gray); font-size: 14px; } /* ===== ABOUT ===== */ .about { padding: 80px 0; background: var(--bg-light); } .about-content { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; } .about-text p { color: var(--text-gray); margin: 15px 0; } .about-features { list-style: none; margin-top: 25px; } .about-features li { padding: 8px 0; font-weight: 500; } .about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); } @media (min-width: 768px) { .about-content { grid-template-columns: 1fr 1fr; } } /* ===== CONTENT SECTION ===== */ .content-section { padding: 60px 0; } .content-box { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); } .content-box h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); } .content-box h3 { font-size: 20px; font-weight: 600; margin: 30px 0 15px; color: var(--text-dark); } .content-box p { color: var(--text-gray); margin-bottom: 15px; line-height: 1.8; } .content-box ul { margin: 15px 0 15px 20px; } .content-box ul li { color: var(--text-gray); margin-bottom: 10px; } /* ===== VALUES GRID ===== */ .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 20px 0; } .value-card { background: var(--bg-light); padding: 25px; border-radius: var(--radius); text-align: center; } .value-icon { font-size: 40px; display: block; margin-bottom: 15px; } .value-card h4 { font-size: 18px; margin-bottom: 10px; } .value-card p { font-size: 14px; color: var(--text-gray); } /* ===== FAQ ===== */ .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { background: white; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 10px; overflow: hidden; } .faq-question { width: 100%; padding: 20px; text-align: left; font-size: 16px; font-weight: 600; color: var(--text-dark); background: white; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); } .faq-question:hover { background: var(--bg-light); } .faq-question::after { content: '+'; font-size: 24px; color: var(--primary-1); } .faq-item.open .faq-question::after { content: '−'; } .faq-answer { display: none; padding: 0 20px 20px; } .faq-item.open .faq-answer { display: block; } .faq-answer p { color: var(--text-gray); line-height: 1.8; } /* ===== CONTACT ===== */ .contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; } .contact-info h2, .contact-form-wrapper h2 { font-size: 24px; font-weight: 700; margin-bottom: 25px; } .contact-item { display: flex; gap: 15px; padding: 20px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 15px; } .contact-icon { font-size: 32px; } .contact-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 5px; } .contact-item p { color: var(--text-dark); font-weight: 500; } .contact-form-wrapper { background: white; padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow); } .contact-form { display: flex; flex-direction: column; gap: 20px; } .form-group { display: flex; flex-direction: column; gap: 8px; } .form-group label { font-weight: 500; font-size: 14px; } .form-group input, .form-group select, .form-group textarea { padding: 12px 15px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 16px; transition: var(--transition); } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-1); } @media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } } /* ===== SUPPORT CHAT PAGE ===== */ .support-chat-page { max-width: 800px; margin: 0 auto; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; } .chat-header-page { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; padding: 15px 20px; display: flex; align-items: center; gap: 10px; } .status-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .chat-messages-page { height: 400px; padding: 20px; overflow-y: auto; background: var(--bg-light); } .chat-message-page { display: flex; gap: 10px; margin-bottom: 15px; } .chat-message-page.user { flex-direction: row-reverse; } .bot-avatar { width: 35px; height: 35px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; } .message-content { max-width: 70%; padding: 12px 16px; border-radius: 18px; font-size: 14px; } .chat-message-page.bot .message-content { background: white; box-shadow: var(--shadow); border-bottom-left-radius: 4px; } .chat-message-page.user .message-content { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; border-bottom-right-radius: 4px; } .chat-quick-replies-page { padding: 15px 20px; display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--border); } .quick-reply-page { padding: 10px 16px; background: var(--bg-light); border-radius: 50px; font-size: 13px; color: var(--text-gray); transition: var(--transition); } .quick-reply-page:hover { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; } .chat-input-page { display: flex; gap: 10px; padding: 20px; border-top: 1px solid var(--border); } .chat-input-page input { flex: 1; padding: 12px 15px; border: 2px solid var(--border); border-radius: 50px; font-size: 14px; } .chat-input-page input:focus { outline: none; border-color: var(--primary-1); } /* ===== SERVICES ===== */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; } .service-card { background: white; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); } .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } .service-icon { font-size: 48px; margin-bottom: 20px; } .service-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 15px; } .service-card p { color: var(--text-gray); margin-bottom: 20px; } /* ===== LEGAL CONTENT ===== */ .legal-content { max-width: 800px; margin: 0 auto; background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); } .legal-content h2 { font-size: 22px; font-weight: 700; margin: 30px 0 15px; color: var(--text-dark); } .legal-content h2:first-child { margin-top: 0; } .legal-content h3 { font-size: 18px; font-weight: 600; margin: 25px 0 10px; color: var(--text-dark); } .legal-content p { color: var(--text-gray); margin-bottom: 15px; line-height: 1.8; } .legal-content ul { margin: 15px 0 15px 20px; } .legal-content ul li { color: var(--text-gray); margin-bottom: 10px; } /* ===== SECURITY GRID ===== */ .security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 25px 0; } .security-card { background: var(--bg-light); padding: 25px; border-radius: var(--radius); text-align: center; } .security-icon { font-size: 40px; display: block; margin-bottom: 15px; } .security-card h3 { font-size: 16px; margin-bottom: 10px; } .security-card p { font-size: 14px; color: var(--text-gray); } /* ===== REFUND BOXES ===== */ .refund-box { padding: 25px; border-radius: var(--radius); margin: 20px 0; } .refund-box h3 { margin-bottom: 15px; } .refund-box ul { margin-left: 20px; } .refund-box ul li { margin-bottom: 8px; } .refund-success { background: #ecfdf5; border-left: 4px solid #10b981; } .refund-warning { background: #fef2f2; border-left: 4px solid #dc2626; } /* ===== CART PAGE ===== */ .cart-page-layout { display: grid; grid-template-columns: 1fr; gap: 30px; } .cart-section { background: white; padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow); } .cart-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 20px; } .order-summary { background: white; padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow); } .order-summary h2 { font-size: 20px; font-weight: 700; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--border); } @media (min-width: 768px) { .cart-page-layout { grid-template-columns: 1fr 400px; } } /* ===== FOOTER ===== */ .footer { background: #111827; color: white; } .footer-features { border-bottom: 1px solid #374151; padding: 40px 0; } .footer-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; } .footer-feature { display: flex; align-items: center; gap: 15px; } .footer-feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; } .footer-feature strong { display: block; font-size: 15px; } .footer-feature span { color: #9ca3af; font-size: 13px; } .footer-content { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 50px 0; } .footer-brand p { color: #9ca3af; margin: 15px 0; max-width: 300px; } .social-links { display: flex; gap: 10px; margin-top: 20px; } .social-link { width: 40px; height: 40px; background: #374151; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); } .social-link:hover { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); } .footer-links, .footer-contact { display: flex; flex-direction: column; } .footer-links h4, .footer-contact h4 { font-size: 16px; margin-bottom: 20px; } .footer-links a, .footer-contact p { color: #9ca3af; font-size: 14px; padding: 8px 0; transition: var(--transition); } .footer-links a:hover { color: white; } .footer-bottom { text-align: center; padding: 25px; border-top: 1px solid #374151; color: #6b7280; font-size: 14px; } @media (min-width: 768px) { .footer-features-grid { grid-template-columns: repeat(4, 1fr); } .footer-content { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } } /* ===== MODAL ===== */ .modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 200; opacity: 0; visibility: hidden; transition: var(--transition); padding: 20px; } .modal.show { opacity: 1; visibility: visible; } .modal-content { background: white; border-radius: var(--radius-lg); padding: 30px; max-width: 500px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.9); transition: var(--transition); } .modal.show .modal-content { transform: scale(1); } .modal-large { max-width: 900px; } .modal-close { position: absolute; top: 15px; right: 15px; width: 35px; height: 35px; background: var(--bg-light); border-radius: 50%; font-size: 24px; display: flex; align-items: center; justify-content: center; color: var(--text-gray); transition: var(--transition); } .modal-close:hover { background: var(--border); } .modal-title { font-size: 24px; font-weight: 700; margin-bottom: 25px; } .search-form { display: flex; gap: 10px; margin-bottom: 15px; } .search-input-wrapper { flex: 1; position: relative; } .search-prefix { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 18px; } .search-input { width: 100%; padding: 15px 15px 15px 35px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 16px; transition: var(--transition); } .search-input:focus { outline: none; border-color: var(--primary-1); } .search-error { background: #fef2f2; color: #dc2626; padding: 12px; border-radius: var(--radius); font-size: 14px; display: none; } .search-error.show { display: block; } .user-result { display: none; margin-top: 20px; padding: 20px; background: linear-gradient(135deg, rgba(236,72,153,0.05), rgba(6,182,212,0.05)); border-radius: var(--radius-lg); border: 1px solid rgba(236,72,153,0.2); } .user-result.show { display: block; } .user-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; } .user-avatar { width: 70px; height: 70px; border-radius: 50%; border: 4px solid white; box-shadow: var(--shadow); } .user-name { font-size: 20px; font-weight: 700; } .user-verified { color: #10b981; margin-left: 5px; } .user-nickname { color: var(--text-gray); font-size: 14px; } .user-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; } .user-stat { text-align: center; background: white; padding: 15px 10px; border-radius: var(--radius); box-shadow: var(--shadow); } .user-stat-icon { font-size: 20px; margin-bottom: 5px; } .user-stat-value { font-size: 18px; font-weight: 700; } .user-stat-label { font-size: 11px; color: var(--text-gray); } .user-success { display: flex; align-items: center; gap: 10px; margin-top: 15px; padding: 12px; background: #ecfdf5; color: #059669; border-radius: var(--radius); font-weight: 500; } /* ===== CART MODAL ===== */ .cart-layout { display: grid; grid-template-columns: 1fr; gap: 30px; } .cart-left h3, .cart-right h3 { font-size: 18px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); } .cart-items { margin-bottom: 20px; } .cart-empty { text-align: center; color: var(--text-gray); padding: 30px; } .cart-item { display: flex; justify-content: space-between; align-items: start; padding: 15px; background: var(--bg-light); border-radius: var(--radius); margin-bottom: 15px; } .cart-item-info h4 { font-size: 16px; margin-bottom: 5px; } .cart-item-coins { font-size: 14px; color: var(--text-gray); } .cart-item-remove { color: #dc2626; padding: 8px; border-radius: var(--radius); transition: var(--transition); } .cart-item-remove:hover { background: #fef2f2; } .cart-total { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 2px solid var(--border); font-size: 20px; font-weight: 700; } .cart-total-price { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .cart-note { text-align: center; color: var(--text-gray); font-size: 13px; margin-top: 15px; } @media (min-width: 768px) { .cart-layout { grid-template-columns: 1fr 1fr; } } /* ===== LIVE CHAT ===== */ .live-chat-btn { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); border-radius: 50%; font-size: 28px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 150; transition: var(--transition); } .live-chat-btn:hover { transform: scale(1.1); } .live-chat { position: fixed; bottom: 100px; right: 25px; width: 350px; max-width: calc(100vw - 50px); background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 150; display: none; flex-direction: column; overflow: hidden; } .live-chat.show { display: flex; } .chat-header { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; } .chat-close { color: white; font-size: 24px; opacity: 0.8; transition: var(--transition); } .chat-close:hover { opacity: 1; } .chat-messages { height: 300px; overflow-y: auto; padding: 20px; background: var(--bg-light); } .chat-message { max-width: 80%; padding: 12px 16px; border-radius: 18px; margin-bottom: 10px; font-size: 14px; } .chat-message.bot { background: white; border-bottom-left-radius: 4px; box-shadow: var(--shadow); } .chat-message.user { background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); color: white; margin-left: auto; border-bottom-right-radius: 4px; } .chat-quick-replies { padding: 10px 15px; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--border); } .quick-reply { padding: 8px 14px; background: var(--bg-light); border-radius: 50px; font-size: 12px; color: var(--text-gray); transition: var(--transition); } .quick-reply:hover { background: var(--border); } .chat-input-wrapper { display: flex; padding: 15px; gap: 10px; border-top: 1px solid var(--border); } .chat-input { flex: 1; padding: 12px 15px; border: 1px solid var(--border); border-radius: 50px; font-size: 14px; } .chat-input:focus { outline: none; border-color: var(--primary-1); } .chat-send { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary-1), var(--primary-2)); border-radius: 50%; color: white; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: var(--transition); } .chat-send:hover { transform: scale(1.1); } /* ===== TOAST ===== */ .toast { position: fixed; top: 90px; right: 20px; padding: 15px 25px; background: #10b981; color: white; border-radius: var(--radius); font-weight: 500; box-shadow: var(--shadow-lg); z-index: 300; transform: translateX(150%); transition: var(--transition); } .toast.show { transform: translateX(0); } .toast.error { background: #dc2626; } /* ===== SCROLLBAR ===== */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-light); } ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

