:root{--bg-color:#f8f9fa;--text-color:#333;--card-bg:#ffffff;--border-color:#e1e5e9;--hover-bg:#f8f9fa;--shadow:rgba(0,0,0,0.1);--shadow-hover:rgba(0,0,0,0.15);--input-bg:#ffffff;--navbar-bg:linear-gradient(135deg,#667eea 0%,#764ba2 100%)}
.dark-theme{--bg-color:#1a1a1a;--text-color:#e1e1e1;--card-bg:#2d2d2d;--border-color:#404040;--hover-bg:#3a3a3a;--shadow:rgba(0,0,0,0.3);--shadow-hover:rgba(0,0,0,0.5);--input-bg:#2d2d2d;--navbar-bg:linear-gradient(135deg,#4a5568 0%,#2d3748 100%)}
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter','Segoe UI',Tahoma,Geneva,Verdana,sans-serif;line-height:1.6;color:var(--text-color);background-color:var(--bg-color);scroll-behavior:smooth;transition:background-color 0.3s ease,color 0.3s ease;overflow-x:hidden;overflow-y:auto;height:auto;min-height:100vh;position:relative}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.navbar{background:var(--navbar-bg);padding:1rem 0;position:fixed;top:0;width:100%;z-index:1000;box-shadow:0 2px 10px var(--shadow);transition:background 0.3s ease}
.nav-container{max-width:1200px;margin:0 auto;padding:0 1rem;display:flex;justify-content:space-between;align-items:center;height:70px}
.nav-logo h2{color:white;margin:0;font-size:1.2rem;display:flex;align-items:center;gap:0.5rem;font-weight:600;white-space:nowrap}
.nav-logo-img{width:24px;height:24px;object-fit:contain;border-radius:4px;filter:brightness(1.1);transition:all 0.3s ease}
.nav-logo-img:hover{transform:scale(1.1);filter:brightness(1.2)}
.nav-menu{display:flex;align-items:center;gap:1rem}
.nav-menu li{list-style:none;margin-left:2rem}
.nav-link{color:white;text-decoration:none;font-weight:500;transition:color 0.3s ease;position:relative;display:block;padding:0.5rem 0}
.nav-link:hover,.nav-link.active{color:#ffd700}
.nav-link.active::after{content:'';position:absolute;bottom:-5px;left:0;width:100%;height:2px;background:#ffd700}
.cart-link{position:relative}
.cart-count{background:#ff4757;color:white;border-radius:50%;padding:2px 6px;font-size:0.8rem;position:absolute;top:-8px;right:-8px;min-width:18px;text-align:center;z-index:10;display:none}
.cart-update-animation{animation:cartBounce 0.3s ease}
@keyframes cartBounce{0%{transform:scale(1)}50%{transform:scale(1.2)}100%{transform:scale(1)}}
.hamburger{display:none;flex-direction:column;cursor:pointer;padding:0.5rem;z-index:1001;background:none;border:none}
.hamburger .bar{width:25px;height:3px;background-color:white;margin:3px 0;transition:all 0.3s ease;border-radius:2px}
.hamburger.active .bar:nth-child(1){transform:rotate(-45deg) translate(-5px,6px)}
.hamburger.active .bar:nth-child(2){opacity:0}
.hamburger.active .bar:nth-child(3){transform:rotate(45deg) translate(-5px,-6px)}
.mobile-menu-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);z-index:999;opacity:0;visibility:hidden;transition:all 0.3s ease}
.mobile-menu-overlay.active{opacity:1;visibility:visible}
.hero{background:linear-gradient(135deg,rgba(102,126,234,0.95),rgba(118,75,162,0.95));background-size:cover;background-position:center;min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;color:white;margin-top:80px;position:relative;overflow:hidden;padding:2rem 0}
.hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');opacity:0.3}
.hero-content h1{font-size:clamp(2.5rem,5vw,3.5rem);margin-bottom:1rem;animation:fadeInUp 1s ease}
.hero-content p{font-size:clamp(1rem,2vw,1.2rem);margin-bottom:2rem;animation:fadeInUp 1s ease 0.2s both;max-width:600px;margin-left:auto;margin-right:auto;line-height:1.6}
.hero-badge{display:inline-flex;align-items:center;gap:0.5rem;background:rgba(255,215,0,0.9);color:#333;padding:0.5rem 1rem;border-radius:25px;font-weight:600;margin-bottom:1rem;animation:fadeInUp 1s ease 0.1s both}
.hero-cta{display:flex;flex-direction:column;align-items:center;gap:2rem;animation:fadeInUp 1s ease 0.5s both}
.hero-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:1.5rem;justify-content:center;max-width:500px;margin:0 auto}
.stat{text-align:center;padding:0.5rem}
.stat strong{display:block;font-size:1.5rem;color:#ffd700;margin-bottom:0.25rem}
.stat span{font-size:0.9rem;opacity:0.9}
.floating-card{position:absolute;width:60px;height:60px;background:rgba(255,255,255,0.1);border-radius:15px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:white;animation:float 6s ease-in-out infinite}
.floating-card:nth-child(1){top:20%;left:10%;animation-delay:0s}
.floating-card:nth-child(2){top:60%;right:15%;animation-delay:2s}
.floating-card:nth-child(3){bottom:30%;left:20%;animation-delay:4s}
.hero-features{display:flex;justify-content:center;gap:2rem;margin:2rem 0;flex-wrap:wrap}
.feature-badge{background:rgba(255,255,255,0.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.2);padding:1rem 1.5rem;border-radius:50px;display:flex;align-items:center;gap:0.5rem;animation:fadeInUp 1s ease 0.6s both;transition:all 0.3s ease}
.feature-badge:hover{background:rgba(255,255,255,0.2);transform:translateY(-2px)}
.feature-badge i{font-size:1.2rem;color:#ffd700}
.cta-button{display:inline-block;background:#ffd700;color:#333;padding:15px 30px;text-decoration:none;border-radius:30px;font-weight:bold;font-size:1.1rem;transition:all 0.3s ease;animation:fadeInUp 1s ease 0.4s both;cursor:pointer;border:none;outline:none;position:relative;z-index:10;pointer-events:auto;user-select:none}
.cta-button:hover{background:#ffed4a;transform:translateY(-2px);box-shadow:0 5px 15px rgba(0,0,0,0.2);color:#333;text-decoration:none}
.categories,.features,.testimonials,.special-offers,.code-checker{padding:80px 0}
.categories h2,.features h2,.testimonials h2,.special-offers h2,.code-checker h2{text-align:center;font-size:2.5rem;margin-bottom:3rem;color:#333}
.features{padding:5rem 0;background:linear-gradient(135deg,rgba(102,126,234,0.95),rgba(118,75,162,0.95));color:white;position:relative;overflow:hidden}
.features::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');opacity:0.3}
.features-header{text-align:center;margin-bottom:4rem;position:relative;z-index:1}
.features-header h2{font-size:2.5rem;margin-bottom:1rem}
.features-header p{font-size:1.1rem;opacity:0.9;max-width:600px;margin:0 auto}
.features-main-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2.5rem;margin-bottom:3rem;position:relative;z-index:1}
.features-secondary-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;position:relative;z-index:1}
.feature-card{background:rgba(0,0,0,0.3);backdrop-filter:blur(10px);border-radius:15px;padding:2rem;text-align:center;transition:transform 0.3s ease,box-shadow 0.3s ease;border:1px solid rgba(255,255,255,0.3)}
.feature-card.primary{background:rgba(0,0,0,0.4);border:2px solid rgba(255,255,255,0.4);transform:scale(1.02)}
.feature-card.secondary{background:rgba(0,0,0,0.25);border:1px solid rgba(255,255,255,0.25)}
.feature-icon{width:80px;height:80px;margin:0 auto 1.5rem;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;transition:all 0.3s ease}
.feature-card:hover .feature-icon{transform:scale(1.1);box-shadow:0 10px 25px rgba(102,126,234,0.3)}
.feature-icon i{font-size:2rem;color:white}
.feature-card h3{font-size:1.4rem;margin-bottom:1rem;color:#ffffff;font-weight:700;letter-spacing:0.5px}
.feature-card p{color:#ffffff;line-height:1.6;margin-bottom:1.5rem;font-weight:600;font-size:1rem}
.testimonials{background:white}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem;margin-top:2rem}
.testimonial-card{background:#f8f9fa;padding:2rem;border-radius:15px;box-shadow:0 5px 15px rgba(0,0,0,0.1);transition:all 0.3s ease;position:relative}
.testimonial-card:hover{transform:translateY(-5px);box-shadow:0 15px 30px rgba(0,0,0,0.15)}
.testimonial-card::before{content:'"';position:absolute;top:-10px;left:20px;font-size:4rem;color:#667eea;font-family:serif;opacity:0.3}
.stars{display:flex;gap:0.25rem;margin-bottom:1rem}
.stars i{color:#ffd700;font-size:1.2rem}
.testimonial-card p{font-style:italic;color:#555;line-height:1.6;margin-bottom:1.5rem}
.testimonial-author{display:flex;flex-direction:column;gap:0.25rem}
.testimonial-author strong{color:#333;font-size:1.1rem}
.testimonial-author span{color:#667eea;font-size:0.9rem}
.special-offers{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:white}
.special-offers h2{color:white}
.offers-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:2rem}
.offer-card{background:white;color:#333;padding:2rem;border-radius:20px;text-align:center;position:relative;transition:all 0.3s ease;overflow:hidden}
.offer-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(0,0,0,0.2)}
.primary-offer{transform:scale(1.05);border:3px solid #ffd700}
.offer-badge{position:absolute;top:20px;right:-30px;background:#ff4757;color:white;padding:8px 40px;font-size:0.8rem;font-weight:bold;transform:rotate(45deg);text-transform:uppercase;letter-spacing:1px}
.primary-offer .offer-badge{background:#ffd700;color:#333}
.offer-card h3{font-size:1.5rem;margin:2rem 0 1rem;color:#333}
.offer-card p{color:#666;margin-bottom:1.5rem;line-height:1.6}
.offer-price{margin:1.5rem 0}
.old-price{color:#999;text-decoration:line-through;font-size:1.1rem;margin-right:0.5rem}
.new-price{color:#667eea;font-size:1.8rem;font-weight:bold}
.offer-btn{background:linear-gradient(135deg,#667eea,#764ba2);color:white;padding:12px 30px;border-radius:25px;text-decoration:none;font-weight:600;transition:all 0.3s ease;display:inline-block}
.offer-btn:hover{background:linear-gradient(135deg,#5a6fd8,#6a4190);transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.4)}
.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:2rem;padding:0 1rem}
.products-container{width:100%;max-width:1200px;margin:0 auto}
.products-container.grid-view{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;padding:0}
.product-card{background:var(--card-bg);border-radius:20px;padding:0;box-shadow:0 8px 25px var(--shadow);transition:all 0.4s ease;cursor:pointer;border:2px solid transparent;overflow:hidden;position:relative}
.product-card:hover{transform:translateY(-8px);box-shadow:0 15px 40px rgba(102,126,234,0.2);border-color:#667eea}
.product-image{width:100%;height:240px;background:#f8f9fa;border-radius:20px 20px 0 0;display:flex;align-items:center;justify-content:center;margin-bottom:0;position:relative;overflow:hidden;border-bottom:1px solid #e1e5e9}
.product-image img{width:100%;height:100%;object-fit:cover;border-radius:0;transition:transform 0.4s ease;display:block}
.product-card:hover .product-image img{transform:scale(1.1)}
.product-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(102,126,234,0.95);display:flex;align-items:center;justify-content:center;gap:1rem;opacity:0;transition:opacity 0.3s ease;border-radius:0}
.product-card:hover .product-overlay{opacity:1}
.product-info{padding:1.5rem;text-align:left}
.product-title{font-size:1.2rem;margin-bottom:0.5rem;color:#333;font-weight:600;line-height:1.3}
.product-category{color:#667eea;font-size:0.9rem;margin-bottom:1rem;font-weight:500;display:flex;align-items:center;gap:0.5rem}
.product-price{font-size:1.5rem;font-weight:bold;color:#333;margin-bottom:1rem}
.price-value{color:#667eea}
.product-description{color:#666;font-size:0.9rem;line-height:1.5;margin-bottom:1.5rem}
.product-actions{display:flex;gap:0.5rem;align-items:center}
.add-to-cart-btn{flex:1;background:linear-gradient(135deg,#667eea,#764ba2);color:white;border:none;padding:12px 16px;border-radius:10px;cursor:pointer;font-weight:600;transition:all 0.3s ease;display:flex;align-items:center;justify-content:center;gap:0.5rem;font-size:0.9rem}
.add-to-cart-btn:hover{background:linear-gradient(135deg,#5a6fd8,#6a4190);transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.3)}
.add-to-cart-btn.disabled{background:#ccc;cursor:not-allowed;transform:none}
.view-product-btn{background:#f8f9fa;color:#667eea;border:2px solid #e1e5e9;padding:12px;border-radius:10px;cursor:pointer;transition:all 0.3s ease;display:flex;align-items:center;justify-content:center;min-width:48px}
.view-product-btn:hover{background:#667eea;color:white;border-color:#667eea}
.categories-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;align-items:stretch}
.category-card{background:var(--card-bg);padding:0;border-radius:20px;text-align:center;box-shadow:0 8px 25px var(--shadow);transition:all 0.4s ease;cursor:pointer;overflow:hidden;position:relative;display:flex;flex-direction:column;min-height:400px;height:100%}
.category-card:hover{transform:translateY(-8px);box-shadow:0 15px 40px rgba(0,0,0,0.2)}
.category-image{width:100%;height:180px;overflow:hidden;position:relative;flex-shrink:0;background:#f8f9fa;display:flex;align-items:center;justify-content:center}
.category-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease}
.category-card:hover .category-image img{transform:scale(1.1)}
.category-card h3{font-size:1.4rem;margin:1.5rem 0 1rem;color:#333;font-weight:700;padding:0 1.5rem;flex-shrink:0;line-height:1.3}
.category-card p{color:#666;font-size:0.95rem;line-height:1.6;padding:0 1.5rem;margin-bottom:1.5rem;flex:1;display:flex;align-items:flex-start;justify-content:center;text-align:center;min-height:60px}
.btn,.cta-button,.add-to-cart-btn{position:relative;overflow:hidden;z-index:1}
.btn::before,.cta-button::before,.add-to-cart-btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);transition:left 0.5s;z-index:-1}
.btn:hover::before,.cta-button:hover::before,.add-to-cart-btn:hover::before{left:100%}
.product-card,.category-card,.info-card{box-shadow:0 4px 20px rgba(0,0,0,0.08);transition:all 0.3s cubic-bezier(0.25,0.8,0.25,1)}
.product-card:hover,.category-card:hover,.info-card:hover{box-shadow:0 12px 40px rgba(102,126,234,0.15)}
.auth-container{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);padding:2rem 1rem;margin-top:80px;position:relative}
.auth-container::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');opacity:0.3}
.auth-forms{position:relative;z-index:1;width:100%;max-width:450px}
.auth-form{background:white;padding:3rem;border-radius:20px;box-shadow:0 20px 40px rgba(0,0,0,0.2);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.2);animation:slideInUp 0.6s ease-out}
.auth-form h2{text-align:center;margin-bottom:2rem;color:#333;font-size:2rem;font-weight:700;display:flex;align-items:center;justify-content:center;gap:0.75rem}
.auth-form h2 i{color:#667eea;font-size:1.8rem}
.auth-header{text-align:center;margin-bottom:2rem}
.auth-header h2{color:#333;font-size:2rem;font-weight:700;margin-bottom:1rem;display:flex;align-items:center;justify-content:center;gap:0.75rem}
.auth-header p{color:#666;font-size:1rem;line-height:1.5}
.auth-links{text-align:center;margin-top:2rem;padding-top:2rem;border-top:1px solid #e1e5e9}
.auth-switch{margin:1rem 0;color:#666}
.auth-switch a{color:#667eea;text-decoration:none;font-weight:600;transition:color 0.3s ease}
.auth-switch a:hover{color:#5a67d8;text-decoration:underline}
.form-container{max-width:500px;margin:120px auto 50px;background:var(--card-bg);padding:3rem;border-radius:15px;box-shadow:0 10px 30px var(--shadow)}
.form-container h1{text-align:center;margin-bottom:2rem;color:var(--text-color);font-size:2rem}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:500;color:#333}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:15px 20px;border:2px solid #e1e5e9;border-radius:12px;font-size:1rem;transition:all 0.3s ease;background:#f8f9fa;color:#333;font-weight:500}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#667eea;background:white;box-shadow:0 0 0 4px rgba(102,126,234,0.1);transform:translateY(-1px)}
.form-group input.error{border-color:#dc3545;background:#fff5f5;box-shadow:0 0 0 4px rgba(220,53,69,0.1)}
.form-group input.valid{border-color:#28a745;background:#f8fff9;box-shadow:0 0 0 4px rgba(40,167,69,0.1)}
.field-errors{margin-top:0.5rem}
.error-message{display:block;color:#dc3545;font-size:0.875rem;font-weight:500;margin-top:0.25rem}
.success-message{display:block;color:#28a745;font-size:0.875rem;font-weight:500;margin-top:0.25rem}
.form-group label{color:#333;font-weight:600;margin-bottom:0.75rem;display:flex;align-items:center;gap:0.5rem;font-size:0.95rem}
.form-group label i{color:#667eea;width:16px;text-align:center}
.password-requirements{display:block;color:#666;font-size:0.8rem;margin-top:0.5rem;line-height:1.4}
.btn{background:linear-gradient(135deg,#667eea,#764ba2);color:white;border:none;padding:15px 24px;border-radius:12px;cursor:pointer;font-size:1rem;font-weight:600;transition:all 0.3s ease;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;text-align:center;box-shadow:0 4px 15px rgba(102,126,234,0.3);position:relative;overflow:hidden}
.btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);transition:left 0.5s}
.btn:hover::before{left:100%}
.btn:hover{background:linear-gradient(135deg,#5a6fd8,#6a4190);transform:translateY(-2px);box-shadow:0 8px 25px rgba(102,126,234,0.4)}
.btn:active{transform:translateY(0);box-shadow:0 4px 15px rgba(102,126,234,0.3)}
.btn-primary{width:100%;margin-top:1.5rem}
.btn-secondary{background:#6c757d}
.btn-secondary:hover{background:#5a6268}
.btn-danger{background:#dc3545}
.btn-danger:hover{background:#c82333}
.shop-hero-new{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);margin-top:80px;padding:4rem 0;text-align:center;color:white;position:relative;overflow:hidden}
.shop-hero-new::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 20% 80%,rgba(255,255,255,0.1) 0%,transparent 50%),radial-gradient(circle at 80% 20%,rgba(255,255,255,0.1) 0%,transparent 50%)}
.shop-hero-content{position:relative;z-index:1;max-width:900px;margin:0 auto;padding:0 2rem}
.shop-hero-content h1{font-size:3rem;font-weight:700;margin-bottom:1rem;text-shadow:0 2px 10px rgba(0,0,0,0.3)}
.shop-hero-content p{font-size:1.2rem;margin-bottom:2rem;opacity:0.9}
.hero-search{max-width:600px;margin:0 auto}
.search-input-wrapper{display:flex;background:white;border-radius:50px;padding:8px;box-shadow:0 10px 30px rgba(0,0,0,0.2);align-items:center}
.search-input-wrapper i{color:#667eea;margin-left:1rem;font-size:1.2rem}
.search-input-wrapper input{flex:1;border:none;padding:12px 1rem;font-size:1rem;background:transparent;outline:none}
.search-btn-hero{background:linear-gradient(135deg,#667eea,#764ba2);color:white;border:none;border-radius:50%;width:50px;height:50px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s ease}
.search-btn-hero:hover{transform:scale(1.1);box-shadow:0 5px 15px rgba(102,126,234,0.4)}
.shop-controls-new{background:#f8f9fa;padding:2rem 0;border-bottom:1px solid #e9ecef}
.categories-filter-section{margin-bottom:2rem}
.categories-filter-section h3{color:#333;margin-bottom:1rem;font-size:1.3rem;display:flex;align-items:center;gap:0.5rem}
.categories-pills{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
.category-pill{background:white;border:2px solid #e9ecef;border-radius:25px;padding:12px 20px;cursor:pointer;transition:all 0.3s ease;display:flex;align-items:center;gap:0.5rem;font-weight:500;position:relative;min-width:140px;justify-content:center}
.category-pill:hover{border-color:#667eea;transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.2)}
.category-pill.active{background:linear-gradient(135deg,#667eea,#764ba2);border-color:#667eea;color:white;transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.3)}
.category-pill .count{background:rgba(102,126,234,0.1);color:#667eea;padding:2px 8px;border-radius:12px;font-size:0.8rem;font-weight:600;margin-left:0.5rem}
.category-pill.active .count{background:rgba(255,255,255,0.2);color:white}
.shop-toolbar-new{display:flex;justify-content:space-between;align-items:center;padding-top:1.5rem;border-top:1px solid #e9ecef}
.results-info{color:#666;font-size:1rem}
.sort-and-view{display:flex;align-items:center;gap:1rem}
.sort-dropdown{display:flex;align-items:center;gap:0.5rem}
.sort-dropdown label{font-weight:500;color:#333;display:flex;align-items:center;gap:0.5rem}
.sort-dropdown select{padding:10px 15px;border:2px solid #e9ecef;border-radius:8px;background:white;cursor:pointer;font-size:0.9rem;transition:border-color 0.3s ease}
.sort-dropdown select:focus{outline:none;border-color:#667eea}
.shop-content-new{padding:3rem 0;min-height:60vh}
.products-grid-new{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem;margin-top:2rem}
.product-card-new{background:white;border-radius:20px;overflow:hidden;box-shadow:0 8px 25px rgba(0,0,0,0.1);transition:all 0.4s cubic-bezier(0.25,0.8,0.25,1);border:1px solid #f0f0f0;position:relative;opacity:0;transform:translateY(20px)}
.product-card-new.animate-in{opacity:1;transform:translateY(0)}
.product-card-new:hover{transform:translateY(-10px);box-shadow:0 20px 40px rgba(102,126,234,0.2);border-color:#667eea}
.product-image-new{position:relative;height:250px;overflow:hidden}
.image-container{width:100%;height:100%;position:relative;background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);display:flex;align-items:center;justify-content:center}
.product-img{width:100%;height:100%;object-fit:cover;object-position:center;transition:all 0.4s ease;opacity:0}
.product-img.loaded{opacity:1}
.product-card-new:hover .product-img{transform:scale(1.1)}
.image-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(102,126,234,0.9);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity 0.3s ease}
.product-card-new:hover .image-overlay{opacity:1}
.quick-view-btn{background:white;color:#667eea;border:none;padding:15px;border-radius:50%;cursor:pointer;font-size:1.2rem;transition:all 0.3s ease;box-shadow:0 5px 15px rgba(0,0,0,0.2)}
.quick-view-btn:hover{background:#667eea;color:white;transform:scale(1.1)}
.image-placeholder-new{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;color:#999;font-size:1rem}
.image-placeholder-new i{font-size:3rem;margin-bottom:0.5rem;color:#ccc}
.stock-badge{position:absolute;top:15px;right:15px;background:#dc3545;color:white;padding:5px 12px;border-radius:15px;font-size:0.8rem;font-weight:600;z-index:2}
.product-info-new{padding:1.5rem}
.product-category-new{display:flex;align-items:center;gap:0.5rem;color:#667eea;font-size:0.9rem;font-weight:500;margin-bottom:0.75rem}
.product-title-new{font-size:1.3rem;font-weight:600;color:#333;margin-bottom:1rem;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-price-new{margin-bottom:1.5rem}
.price-amount{font-size:1.5rem;font-weight:700;color:#667eea}
.product-actions-new{display:flex;gap:0.75rem}
.add-to-cart-btn-new{flex:1;background:linear-gradient(135deg,#667eea,#764ba2);color:white;border:none;padding:15px 20px;border-radius:12px;cursor:pointer;font-weight:600;transition:all 0.3s ease;display:flex;align-items:center;justify-content:center;gap:0.5rem;font-size:1rem}
.add-to-cart-btn-new:hover{background:linear-gradient(135deg,#5a6fd8,#6a4190);transform:translateY(-2px);box-shadow:0 8px 25px rgba(102,126,234,0.3)}
.add-to-cart-btn-new.disabled{background:#ccc;cursor:not-allowed;transform:none}
.add-to-cart-btn-new.disabled:hover{background:#ccc;transform:none;box-shadow:none}
.loading-state-new,.empty-state-new,.error-state-new{grid-column:1/-1;text-align:center;padding:4rem 2rem;background:white;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.1);margin:2rem 0}
.loading-animation,.empty-animation,.error-animation{margin-bottom:2rem}
.loading-spinner-new{width:60px;height:60px;border:4px solid #e9ecef;border-top:4px solid #667eea;border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 1rem}
.empty-animation i,.error-animation i{font-size:4rem;color:#667eea;margin-bottom:1rem}
.error-animation i{color:#dc3545}
.loading-state-new h3,.empty-state-new h3,.error-state-new h3{font-size:1.8rem;color:#333;margin-bottom:1rem}
.loading-state-new p,.empty-state-new p,.error-state-new p{color:#666;font-size:1.1rem;margin-bottom:2rem}
.btn-clear-filters,.btn-retry{background:linear-gradient(135deg,#667eea,#764ba2);color:white;padding:12px 24px;border:none;border-radius:25px;cursor:pointer;font-weight:600;transition:all 0.3s ease;display:inline-flex;align-items:center;gap:0.5rem}
.btn-clear-filters:hover,.btn-retry:hover{background:linear-gradient(135deg,#5a6fd8,#6a4190);transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.3)}
.cart-container{margin-top:100px;padding:2rem 0;min-height:60vh}
.cart-header{text-align:center;margin-bottom:2rem}
.cart-header h1{color:#333;font-size:2.5rem;margin-bottom:0.5rem}
.cart-breadcrumb{color:#666;font-size:1rem}
.cart-breadcrumb a{color:#667eea;text-decoration:none}
.cart-breadcrumb a:hover{text-decoration:underline}
.cart-content{display:grid;grid-template-columns:2fr 1fr;gap:2rem;margin-top:2rem}
.cart-items-section{background:white;border-radius:15px;padding:2rem;box-shadow:0 5px 15px rgba(0,0,0,0.1)}
.cart-items-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid #f8f9fa}
.cart-items-header h2{color:#333;margin:0;font-size:1.5rem}
.cart-items-container{min-height:200px}
.loading-cart{text-align:center;padding:3rem 0;color:#666}
.loading-cart i{font-size:2rem;color:#667eea;margin-bottom:1rem}
.cart-item{background:#f8f9fa;padding:1.5rem;border-radius:12px;margin-bottom:1rem;border:2px solid transparent;transition:all 0.3s ease;display:flex;align-items:center;gap:1rem;position:relative}
.cart-item:hover{border-color:#667eea;box-shadow:0 5px 15px rgba(102,126,234,0.1)}
.item-image{width:80px;height:80px;border-radius:8px;overflow:hidden;flex-shrink:0}
.item-image img{width:100%;height:100%;object-fit:cover}
.item-details{flex:1;min-width:0}
.item-details h3{margin:0 0 0.5rem 0;color:#333;font-size:1.1rem;font-weight:600}
.item-price{color:#667eea;font-weight:600;font-size:1rem;margin:0}
.item-quantity{display:flex;align-items:center;gap:0.5rem;margin:0.5rem 0}
.quantity-btn{background:#667eea;color:white;border:none;width:32px;height:32px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:0.9rem;transition:all 0.3s ease}
.quantity-btn:hover{background:#5a67d8;transform:scale(1.1)}
.quantity-btn:disabled{background:#ccc;cursor:not-allowed;transform:none}
.quantity{background:white;border:2px solid #e2e8f0;border-radius:8px;padding:0.5rem 1rem;min-width:50px;text-align:center;font-weight:600;color:#333}
.item-total{font-weight:700;color:#333;font-size:1.1rem;text-align:right;min-width:80px}
.remove-btn{background:#e53e3e;color:white;border:none;width:36px;height:36px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease;position:absolute;top:1rem;right:1rem}
.remove-btn:hover{background:#c53030;transform:scale(1.1)}
.cart-summary{background:white;border-radius:15px;padding:2rem;box-shadow:0 5px 15px rgba(0,0,0,0.1);height:fit-content;position:sticky;top:120px}
.cart-summary h3{color:#333;margin:0 0 1.5rem 0;font-size:1.3rem;text-align:center}
.summary-row{display:flex;justify-content:space-between;align-items:center;padding:0.75rem 0;border-bottom:1px solid #f0f0f0}
.summary-row.total{border-bottom:none;font-weight:700;font-size:1.2rem;color:#333;margin-top:1rem;padding-top:1rem;border-top:2px solid #667eea}
.checkout-btn{width:100%;margin-top:1.5rem;padding:1rem;font-size:1.1rem;font-weight:600;background:linear-gradient(135deg,#667eea,#764ba2);border:none;border-radius:10px;color:white;cursor:pointer;transition:all 0.3s ease}
.checkout-btn:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(102,126,234,0.3)}
.checkout-summary .btn-full{margin-top:1.5rem;padding:1.2rem;font-size:1.1rem;font-weight:700;background:linear-gradient(135deg,#28a745,#20c997);border:none;border-radius:12px;color:white;cursor:pointer;transition:all 0.3s ease;text-transform:uppercase;letter-spacing:0.5px;box-shadow:0 8px 25px rgba(40,167,69,0.3)}
.checkout-summary .btn-full:hover{background:linear-gradient(135deg,#218838,#1fa08a);transform:translateY(-3px);box-shadow:0 12px 35px rgba(40,167,69,0.4)}
.empty-cart{text-align:center;padding:4rem 2rem;color:#666}
.empty-cart i{font-size:4rem;color:#ccc;margin-bottom:1rem}
.empty-cart h3{color:#333;margin-bottom:0.5rem}
.empty-cart p{margin-bottom:2rem}
.checkout-container{margin-top:80px;padding:2rem 0;background:#f8f9fa;min-height:calc(100vh - 80px)}
.checkout-container h1{text-align:center;color:#333;font-size:2.5rem;margin-bottom:2rem;font-weight:700}
.checkout-content{display:grid;grid-template-columns:2fr 1fr;gap:2rem;margin-top:2rem;align-items:start}
.order-item{display:flex;justify-content:space-between;align-items:center;padding:1rem 0;border-bottom:1px solid #f0f0f0;position:relative}
.order-item:last-child{border-bottom:none}
.item-info{display:flex;align-items:center;gap:1rem;flex:1}
.item-image{width:60px;height:60px;object-fit:cover;border-radius:8px;border:2px solid #e1e5e9;background:#f8f9fa}
.item-details h4{margin:0 0 0.5rem 0;font-size:0.9rem;font-weight:600;color:#333}
.quantity-controls{display:flex;align-items:center;gap:0.5rem;margin:0.5rem 0}
.quantity-controls .quantity-btn{width:24px;height:24px;border:1px solid #ddd;background:white;border-radius:4px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:0.8rem;transition:all 0.2s ease}
.quantity-controls .quantity-btn:hover:not(:disabled){background:#f5f5f5;border-color:#667eea}
.quantity-controls .quantity-btn:disabled{opacity:0.5;cursor:not-allowed}
.quantity-controls .quantity{font-weight:600;min-width:20px;text-align:center;font-size:0.9rem}
.unit-price{font-size:0.8rem;color:#666;margin:0}
.item-total{font-weight:600;color:#333;margin-left:1rem}
.remove-item-btn{position:absolute;top:0.5rem;right:0;background:#dc3545;color:white;border:none;border-radius:50%;width:24px;height:24px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:0.7rem;transition:background-color 0.2s ease}
.remove-item-btn:hover{background:#c82333}
.order-totals{border-top:2px solid #e1e5e9;margin-top:1rem;padding-top:1rem}
.total-row{display:flex;justify-content:space-between;margin:0.5rem 0;font-size:0.9rem}
.total-row.final-total{font-size:1.1rem;color:#333;border-top:1px solid #ddd;padding-top:0.5rem;margin-top:1rem}
.checkout-form{background:white;padding:2rem;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.1);margin-bottom:2rem}
.checkout-form h2{color:#333;margin-bottom:1.5rem;font-size:1.8rem;font-weight:700;display:flex;align-items:center;gap:0.5rem}
.digital-products-notice{background:linear-gradient(135deg,#e3f2fd,#bbdefb);padding:1rem 1.5rem;border-radius:12px;margin-bottom:2rem;display:flex;align-items:center;gap:0.75rem;border-left:4px solid #2196f3}
.digital-products-notice i{color:#1976d2;font-size:1.2rem}
.digital-products-notice p{margin:0;color:#1565c0;font-weight:500}
.checkout-summary{background:white;border-radius:20px;padding:2rem;box-shadow:0 8px 25px rgba(0,0,0,0.1);position:sticky;top:120px;height:fit-content;max-height:calc(100vh - 140px);overflow-y:auto}
.checkout-summary h3{color:#333;margin:0 0 1.5rem 0;font-size:1.5rem;font-weight:700;text-align:center;padding-bottom:1rem;border-bottom:2px solid #f8f9fa}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:600;color:#333}
.form-group input,.form-group select{width:100%;padding:0.75rem;border:2px solid #e1e5e9;border-radius:8px;font-size:1rem;transition:border-color 0.3s ease}
.form-group input:focus,.form-group select:focus{outline:none;border-color:#667eea}
.payment-methods{display:flex;gap:1rem;margin:1rem 0}
.payment-option{display:flex;align-items:center;gap:0.5rem}
.btn-full{width:100%;padding:1rem;font-size:1.1rem;margin-top:1rem}
.alert{padding:15px 20px;border-radius:8px;margin-bottom:10px;display:flex;justify-content:space-between;align-items:center;font-weight:500;box-shadow:0 4px 12px rgba(0,0,0,0.15);animation:slideIn 0.3s ease-out;max-width:400px}
.alert-success{background:#d4edda;color:#155724;border-left:4px solid #28a745}
.alert-error{background:#f8d7da;color:#721c24;border-left:4px solid #dc3545}
.alert-warning{background:#fff3cd;color:#856404;border-left:4px solid #ffc107}
.alert-info{background:#d1ecf1;color:#0c5460;border-left:4px solid #17a2b8}
.alert-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:inherit;opacity:0.7;transition:opacity 0.3s ease}
.alert-close:hover{opacity:1}
#language-selector{padding:8px 12px;border-radius:6px;border:1px solid #ddd;background:white;color:#333;font-size:14px;cursor:pointer;transition:all 0.3s ease}
#language-selector:hover{border-color:#667eea;box-shadow:0 2px 8px rgba(102,126,234,0.2)}
#language-selector:focus{outline:none;border-color:#667eea;box-shadow:0 0 0 3px rgba(102,126,234,0.1)}
.forgot-password-link{color:#667eea!important;text-decoration:none;font-weight:500;display:inline-flex;align-items:center;gap:0.5rem;transition:all 0.3s ease}
.forgot-password-link:hover{color:#5a67d8!important;text-decoration:underline}
.forgot-password-link i{font-size:0.9em}
.password-requirements{font-size:0.8rem;color:#666;margin-top:0.5rem;line-height:1.4}
.password-strength{margin:1rem 0}
.strength-bar{width:100%;height:6px;background-color:#e0e0e0;border-radius:3px;overflow:hidden}
.strength-fill{height:100%;width:0%;transition:all 0.3s ease;border-radius:3px}
.strength-fill.muy-débil{background-color:#f44336}
.strength-fill.débil{background-color:#ff9800}
.strength-fill.regular{background-color:#ffeb3b}
.strength-fill.buena{background-color:#8bc34a}
.strength-fill.excelente{background-color:#4caf50}
.strength-text{font-size:0.8rem;margin-top:0.25rem;display:block;color:#666}
.auth-header.error h2{color:#dc3545}
.auth-header.success h2{color:#28a745}
.success-message{text-align:center;padding:2rem;border:2px solid #28a745;border-radius:8px;background-color:#f8fff9;margin-top:1rem}
.success-message i{font-size:3rem;color:#28a745;margin-bottom:1rem}
.success-message h3{color:#28a745;margin-bottom:1rem}
.success-message p{color:#666;margin-bottom:0.5rem}
.store-info{padding:5rem 0;background:#f8f9fa;position:relative;overflow:hidden}
.store-info::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(102,126,234,0.05) 0%,rgba(118,75,162,0.05) 100%);z-index:1}
.store-info .container{position:relative;z-index:2}
.store-info h2{text-align:center;font-size:2.5rem;margin-bottom:3rem;color:#333;font-weight:700}
.store-info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem}
.info-card{background:white;padding:2.5rem 2rem;border-radius:20px;text-align:center;box-shadow:0 8px 25px rgba(0,0,0,0.1);transition:all 0.4s ease;border:1px solid #f0f0f0;position:relative;overflow:hidden}
.info-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(135deg,#667eea,#764ba2)}
.info-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(102,126,234,0.2);border-color:#667eea}
.info-icon{width:80px;height:80px;margin:0 auto 1.5rem;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;transition:all 0.3s ease}
.info-card:hover .info-icon{transform:scale(1.1);box-shadow:0 10px 25px rgba(102,126,234,0.3)}
.info-icon i{font-size:2rem;color:white}
.info-card h3{font-size:1.3rem;margin-bottom:1rem;color:#333;font-weight:700}
.info-card p{color:#666;line-height:1.6;font-size:1rem}
.trust-badges{text-align:center;margin-top:3rem;padding:2rem;background:white;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.1)}
.trust-badges h3{font-size:1.5rem;margin-bottom:2rem;color:#333;font-weight:700}
.badges-row{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap}
.trust-badge{display:flex;align-items:center;gap:0.5rem;padding:1rem 1.5rem;background:linear-gradient(135deg,#f8f9fa,#e9ecef);border-radius:50px;border:2px solid #e9ecef;transition:all 0.3s ease;min-width:140px;justify-content:center;font-weight:600;color:#333}
.trust-badge:hover{border-color:#667eea;background:linear-gradient(135deg,#667eea,#764ba2);color:white;transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.3)}
.trust-badge i{font-size:1.2rem;color:#667eea;transition:color 0.3s ease}
.trust-badge:hover i{color:white}
.faq{padding:5rem 0;background:linear-gradient(135deg,rgba(102,126,234,0.03) 0%,rgba(118,75,162,0.03) 100%);position:relative;pointer-events:auto!important;z-index:1!important}
.faq-header{text-align:center;margin-bottom:3rem}
.faq-header h2{font-size:2.5rem;margin-bottom:1rem;color:#333;font-weight:700}
.faq-header p{font-size:1.1rem;color:#666;max-width:600px;margin:0 auto;line-height:1.6}
.faq-container{max-width:900px;margin:0 auto;pointer-events:auto!important;z-index:2!important;position:relative!important}
.faq-dropdown{background:white;border-radius:15px;margin-bottom:1rem;box-shadow:0 4px 20px rgba(0,0,0,0.08);border:1px solid rgba(102,126,234,0.1);overflow:hidden;transition:all 0.3s ease;pointer-events:auto!important;z-index:10!important;position:relative!important}
.faq-dropdown:hover{box-shadow:0 8px 30px rgba(102,126,234,0.15);transform:translateY(-2px)}
.faq-question{padding:1.5rem 2rem;cursor:pointer!important;background:linear-gradient(135deg,rgba(102,126,234,0.05) 0%,rgba(118,75,162,0.05) 100%);border-bottom:1px solid rgba(102,126,234,0.1);transition:all 0.3s ease;position:relative;pointer-events:auto!important;z-index:15!important;user-select:none}
.faq-question:hover{background:linear-gradient(135deg,rgba(102,126,234,0.1) 0%,rgba(118,75,162,0.1) 100%)}
.faq-question.active{background:linear-gradient(135deg,#667eea,#764ba2);border-bottom-color:transparent}
.faq-question.active h3{color:white}
.faq-question.active .faq-arrow{color:white;transform:rotate(180deg)}
.faq-question h3{margin:0;font-size:1.2rem;font-weight:600;color:#333;display:flex;align-items:center;gap:1rem;line-height:1.4;transition:color 0.3s ease;pointer-events:none!important;width:100%}
.faq-question h3 i:first-child{color:#667eea;font-size:1.1rem;width:20px;text-align:center;transition:color 0.3s ease;pointer-events:none!important}
.faq-question.active h3 i:first-child{color:white}
.faq-arrow{margin-left:auto;color:#667eea;font-size:1rem;transition:all 0.3s ease;pointer-events:none!important}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.4s ease;background:white;pointer-events:auto!important;z-index:5!important;position:relative!important}
.faq-answer.active{max-height:500px;padding:0 2rem 2rem 2rem}
.faq-content{padding-top:1rem;border-top:1px solid rgba(102,126,234,0.1)}
.faq-content p{color:#555;line-height:1.8;font-size:1rem;margin:0;text-align:justify}
.footer{background:#2c3e50;color:white;padding:3rem 0 1rem;margin-top:5rem}
.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-bottom:2rem}
.footer-section h3,.footer-section h4{color:#ffd700;margin-bottom:1rem;font-size:1.2rem;font-weight:600}
.footer-section p{color:#bbb;line-height:1.6;margin-bottom:1rem}
.footer-section ul{list-style:none;padding:0}
.footer-section ul li{margin-bottom:0.5rem}
.footer-section ul li a{color:#bbb;text-decoration:none;transition:color 0.3s ease;display:flex;align-items:center;gap:0.5rem;pointer-events:auto!important;cursor:pointer!important;z-index:10!important;position:relative!important;padding:0.5rem 0}
.footer-section ul li a:hover{color:#ffd700}
.footer-section ul li a i{width:16px;text-align:center;pointer-events:none}
.footer-section{pointer-events:auto!important;z-index:5!important;position:relative!important}
.footer{pointer-events:auto!important;z-index:5!important}
.footer-bottom{border-top:1px solid #34495e;padding-top:1rem;text-align:center;color:#bbb;font-size:0.9rem}
.footer-bottom p{margin:0}
.profile-container{margin-top:80px;padding:2rem 0;background:#f8f9fa;min-height:calc(100vh - 80px)}
.profile-header{text-align:center;background:white;padding:3rem 2rem;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.1);margin-bottom:2rem;position:relative;overflow:hidden;display:flex;flex-direction:column;align-items:center;justify-content:center}
.profile-header::before{content:'';position:absolute;top:0;left:0;right:0;height:120px;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);z-index:1}
.profile-avatar{position:relative;z-index:2;width:120px;height:120px;background:white;border-radius:50%;margin:0 auto 1.5rem;display:flex;align-items:center;justify-content:center;font-size:3rem;color:#667eea;box-shadow:0 8px 25px rgba(0,0,0,0.15);border:4px solid white}
.profile-header h1{position:relative;z-index:2;color:#333;margin-bottom:0.5rem;font-size:2rem;font-weight:700;text-align:center;width:100%}
.profile-header p{position:relative;z-index:2;color:#666;font-size:1.1rem;margin:0;text-align:center;width:100%}
.profile-tabs{background:white;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.1);overflow:hidden}
.tab-navigation{display:flex;background:#f8f9fa;border-bottom:1px solid #e9ecef;overflow-x:auto;justify-content:center}
.tab-btn{flex:1;background:none;border:none;padding:1.5rem 2rem;cursor:pointer;transition:all 0.3s ease;color:#666;font-weight:600;display:flex;align-items:center;justify-content:center;gap:0.5rem;white-space:nowrap;min-width:150px;position:relative;text-align:center}
.tab-btn:hover{background:rgba(102,126,234,0.1);color:#667eea}
.tab-btn.active{background:white;color:#667eea;border-bottom:3px solid #667eea}
.tab-btn i{font-size:1.1rem}
.tab-content{display:none;padding:2rem}
.tab-content.active{display:block}
.profile-form-section h3{color:#333;margin-bottom:2rem;font-size:1.5rem;font-weight:700;display:flex;align-items:center;justify-content:center;gap:0.5rem;text-align:center;width:100%}
.profile-form-section h4{color:#333;margin:2rem 0 1rem 0;font-size:1.2rem;font-weight:600;display:flex;align-items:center;justify-content:center;gap:0.5rem;border-bottom:2px solid #f8f9fa;padding-bottom:0.5rem;text-align:center;width:100%}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:1.5rem}
.orders-section h3,.codes-section h3,.security-section h3{color:#333;margin-bottom:2rem;font-size:1.5rem;font-weight:700;display:flex;align-items:center;justify-content:center;gap:0.5rem;text-align:center;width:100%}
.orders-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}
.orders-filters{display:flex;gap:0.5rem;flex-wrap:wrap}
.filter-btn{background:#f8f9fa;border:2px solid #e9ecef;color:#666;padding:0.5rem 1rem;border-radius:25px;cursor:pointer;transition:all 0.3s ease;font-weight:500;font-size:0.9rem}
.filter-btn:hover{border-color:#667eea;color:#667eea}
.filter-btn.active{background:#667eea;border-color:#667eea;color:white}
.orders-container,.codes-container{min-height:300px}
.loading-orders,.loading-codes{text-align:center;padding:4rem 2rem;color:#666;display:flex;flex-direction:column;align-items:center;justify-content:center}
.loading-orders i,.loading-codes i{font-size:2rem;color:#667eea;margin-bottom:1rem}
.no-orders,.no-codes{text-align:center;padding:4rem 2rem;color:#666;display:flex;flex-direction:column;align-items:center;justify-content:center}
.no-orders i,.no-codes i{font-size:4rem;color:#ddd;margin-bottom:1rem}
.no-orders h3,.no-codes h3{color:#333;margin-bottom:1rem;text-align:center;width:100%}
.security-section form{max-width:500px}
.security-section .form-group{margin-bottom:1.5rem}
.security-section .form-group label{color:#333;font-weight:600;margin-bottom:0.5rem;display:block}
.security-section .form-group input{width:100%;padding:0.75rem 1rem;border:2px solid #e9ecef;border-radius:8px;font-size:1rem;transition:border-color 0.3s ease}
.security-section .form-group input:focus{outline:none;border-color:#667eea;box-shadow:0 0 0 3px rgba(102,126,234,0.1)}
.security-section .form-group small{color:#666;font-size:0.85rem;margin-top:0.25rem;display:block}
.modern-order-card{transition:all 0.3s ease;margin-bottom:1.5rem}
.codes-filters{padding:1rem;margin-bottom:1.5rem}
.codes-filters > div:first-child{gap:0.75rem}
.codes-filters select{min-width:140px;flex:1;max-width:200px}
.order-codes-group{overflow:hidden}
.individual-code-card{position:relative;overflow-wrap:break-word;word-break:break-word}
.codes-container{overflow-x:hidden}
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:linear-gradient(135deg,#2c3e50,#34495e);color:white;padding:1.5rem;box-shadow:0 -4px 20px rgba(0,0,0,0.3);z-index:10000;transform:translateY(100%);transition:transform 0.4s ease-in-out;border-top:3px solid #667eea}
.cookie-banner.show{transform:translateY(0)}
.cookie-banner-content{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:2rem}
.cookie-banner-text{flex:1;font-size:0.95rem;line-height:1.5}
.cookie-banner-text h4{margin:0 0 0.5rem 0;font-size:1.1rem;color:#667eea;display:flex;align-items:center;gap:0.5rem}
.cookie-banner-text p{margin:0;color:#ecf0f1}
.cookie-banner-text a{color:#667eea;text-decoration:none;font-weight:500;transition:color 0.3s ease}
.cookie-banner-text a:hover{color:#5a6fd8;text-decoration:underline}
.cookie-banner-actions{display:flex;gap:1rem;align-items:center;flex-wrap:wrap}
.cookie-banner button{padding:0.75rem 1.5rem;border:none;border-radius:25px;cursor:pointer;font-weight:600;font-size:0.9rem;transition:all 0.3s ease;text-transform:uppercase;letter-spacing:0.5px}
.cookie-accept{background:linear-gradient(135deg,#667eea,#764ba2);color:white}
.cookie-accept:hover{background:linear-gradient(135deg,#5a6fd8,#6a42a0);transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.4)}
.cookie-decline{background:transparent;color:#bdc3c7;border:2px solid #bdc3c7}
.cookie-decline:hover{background:#bdc3c7;color:#2c3e50;transform:translateY(-2px)}
.cookie-settings{background:transparent;color:#667eea;border:2px solid #667eea;font-size:0.85rem;padding:0.6rem 1.2rem}
.cookie-settings:hover{background:#667eea;color:white;transform:translateY(-2px)}
.cookie-modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.8);z-index:10001;backdrop-filter:blur(5px)}
.cookie-modal.show{display:flex;align-items:center;justify-content:center}
.cookie-modal-content{background:white;border-radius:15px;padding:2rem;max-width:600px;width:90%;max-height:80vh;overflow-y:auto;position:relative;box-shadow:0 20px 40px rgba(0,0,0,0.3)}
.cookie-modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:2px solid #f8f9fa}
.cookie-modal-header h3{margin:0;color:#2c3e50;font-size:1.4rem}
.cookie-modal-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:#95a5a6;padding:0.5rem;border-radius:50%;transition:all 0.3s ease}
.cookie-modal-close:hover{background:#f8f9fa;color:#2c3e50}
.cookie-category{margin-bottom:1.5rem;padding:1rem;border:2px solid #f8f9fa;border-radius:10px;transition:border-color 0.3s ease}
.cookie-category:hover{border-color:#667eea}
.cookie-category-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:0.5rem}
.cookie-category h4{margin:0;color:#2c3e50;font-size:1.1rem}
.cookie-toggle{position:relative;display:inline-block;width:50px;height:24px}
.cookie-toggle input{opacity:0;width:0;height:0}
.cookie-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;transition:0.4s;border-radius:34px}
.cookie-slider:before{position:absolute;content:"";height:18px;width:18px;left:3px;bottom:3px;background-color:white;transition:0.4s;border-radius:50%}
input:checked + .cookie-slider{background-color:#667eea}
input:checked + .cookie-slider:before{transform:translateX(26px)}
.cookie-category p{margin:0;color:#7f8c8d;font-size:0.9rem;line-height:1.4}
.cookie-modal-actions{display:flex;gap:1rem;justify-content:flex-end;margin-top:2rem;padding-top:1rem;border-top:2px solid #f8f9fa}
.cookie-save-settings{background:linear-gradient(135deg,#667eea,#764ba2);color:white;border:none;padding:0.75rem 1.5rem;border-radius:25px;cursor:pointer;font-weight:600;transition:all 0.3s ease}
.cookie-save-settings:hover{background:linear-gradient(135deg,#5a6fd8,#6a42a0);transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.4)}
.product-detail{margin-top:80px;padding:0;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);min-height:calc(100vh - 80px);position:relative;overflow:hidden}
.product-detail::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');opacity:0.3;animation:float 20s ease-in-out infinite}
.breadcrumb{padding:1.5rem 0;margin-bottom:2rem;position:relative;z-index:2}
.breadcrumb a{color:#ffd700;text-decoration:none;margin-right:0.5rem;font-weight:600;transition:all 0.3s ease;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.breadcrumb a:hover{text-decoration:underline;color:#fff;transform:translateY(-1px)}
.breadcrumb-separator{color:#fff;margin:0 0.5rem;opacity:0.8}
.breadcrumb .current{color:#fff;font-weight:600;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.product-container{background:rgba(255,255,255,0.95);backdrop-filter:blur(20px);border-radius:30px;padding:0;box-shadow:0 20px 60px rgba(0,0,0,0.3),0 0 0 1px rgba(255,255,255,0.2);margin:0 2rem 2rem;position:relative;z-index:2;overflow:hidden;border:2px solid rgba(255,255,255,0.3);animation:slideInUp 0.8s ease-out}
.product-container::before{content:'';position:absolute;top:0;left:0;right:0;height:200px;background:linear-gradient(135deg,rgba(102,126,234,0.1),rgba(118,75,162,0.1));z-index:1}
.product-detail-content{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch;position:relative;z-index:2}
.product-detail-image{position:relative;background:linear-gradient(135deg,#f8f9fa,#e9ecef);border-radius:30px 0 0 30px;overflow:hidden;min-height:600px;display:flex;align-items:center;justify-content:center}
.product-image-large{width:100%;height:100%;position:relative;overflow:hidden}
.product-image-large img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease;filter:brightness(1.1) contrast(1.1) saturate(1.2)}
.product-image-large:hover img{transform:scale(1.05)}
.product-image-large i{font-size:8rem;color:#ccc;opacity:0.5}
.product-detail-info{padding:3rem;background:white;border-radius:0 30px 30px 0;position:relative;display:flex;flex-direction:column;justify-content:center}
.product-meta{margin-bottom:1rem}
.product-category{background:linear-gradient(135deg,#667eea,#764ba2);color:white;padding:0.75rem 1.5rem;border-radius:25px;font-size:0.9rem;font-weight:700;display:inline-flex;align-items:center;gap:0.5rem;text-transform:uppercase;letter-spacing:1px;box-shadow:0 4px 15px rgba(102,126,234,0.4);animation:pulse 2s infinite}
.product-title{font-size:2.5rem;font-weight:800;color:#333;margin:1.5rem 0;line-height:1.2;background:linear-gradient(135deg,#333,#667eea);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-shadow:none}
.product-price{font-size:3rem;font-weight:900;background:linear-gradient(135deg,#667eea,#764ba2);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;margin-bottom:2rem;animation:bounce 2s infinite}
.product-actions{margin:2rem 0;display:flex;flex-direction:column;gap:2rem}
.quantity-selector{background:rgba(102,126,234,0.1);padding:1.5rem;border-radius:20px;border:2px solid rgba(102,126,234,0.2)}
.quantity-selector > div{display:flex;align-items:center;justify-content:center;gap:1rem}
.product-actions .btn-large{align-self:stretch;max-width:none}
.quantity-btn{background:linear-gradient(135deg,#667eea,#764ba2);color:white;border:none;width:50px;height:50px;border-radius:50%;cursor:pointer;font-size:1.2rem;transition:all 0.3s ease;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 15px rgba(102,126,234,0.4)}
.quantity-btn:hover{transform:translateY(-3px) scale(1.1);box-shadow:0 8px 25px rgba(102,126,234,0.6)}
.quantity-btn:active{transform:translateY(0) scale(0.95)}
#quantity{width:80px;height:50px;border:3px solid #667eea;border-radius:15px;text-align:center;font-size:1.2rem;font-weight:700;color:#333;background:white;transition:all 0.3s ease}
#quantity:focus{outline:none;border-color:#764ba2;box-shadow:0 0 0 4px rgba(102,126,234,0.2);transform:scale(1.05)}
.btn-large{padding:1.5rem 2rem;font-size:1.2rem;font-weight:700;border-radius:15px;background:linear-gradient(135deg,#28a745,#20c997);color:white;border:none;cursor:pointer;transition:all 0.4s ease;text-transform:uppercase;letter-spacing:1px;box-shadow:0 8px 25px rgba(40,167,69,0.4);position:relative;overflow:hidden}
.btn-large::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);transition:left 0.5s}
.btn-large:hover::before{left:100%}
.btn-large:hover{background:linear-gradient(135deg,#218838,#1fa08a);transform:translateY(-5px) scale(1.02);box-shadow:0 15px 40px rgba(40,167,69,0.6)}
.btn-large:active{transform:translateY(-2px) scale(0.98)}
.product-additional-info{padding:3rem;position:relative;z-index:2}
.product-description,.product-redemption,.product-instructions{background:rgba(255,255,255,0.95);backdrop-filter:blur(20px);border-radius:25px;padding:2.5rem;margin-bottom:2rem;box-shadow:0 15px 35px rgba(0,0,0,0.1);border:1px solid rgba(255,255,255,0.3);transition:all 0.4s ease;position:relative;overflow:hidden}
.product-description::before,.product-redemption::before,.product-instructions::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(135deg,#667eea,#764ba2)}
.product-description:hover,.product-redemption:hover,.product-instructions:hover{transform:translateY(-5px);box-shadow:0 25px 50px rgba(102,126,234,0.2)}
.product-description h3,.product-redemption h3,.product-instructions h3{color:#333;font-size:1.5rem;font-weight:700;margin-bottom:1.5rem;display:flex;align-items:center;gap:1rem}
.product-description h3 i,.product-redemption h3 i,.product-instructions h3 i{background:linear-gradient(135deg,#667eea,#764ba2);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;font-size:1.8rem}
.product-description p,.product-redemption p,.product-instructions p{color:#555;line-height:1.8;font-size:1.1rem}
.redemption-info{background:linear-gradient(135deg,rgba(102,126,234,0.1),rgba(118,75,162,0.1));padding:1.5rem;border-radius:15px;margin-top:1rem;border-left:4px solid #667eea}
.redemption-item{margin-bottom:1rem;padding:1rem;background:white;border-radius:10px;box-shadow:0 5px 15px rgba(0,0,0,0.05)}
.redemption-item strong{color:#667eea;font-weight:700;display:block;margin-bottom:0.5rem}
.redemption-item span{color:#333;font-weight:500}
.redemption-item a{color:#667eea;text-decoration:none;font-weight:600;transition:color 0.3s ease}
.redemption-item a:hover{color:#5a67d8;text-decoration:underline}
.instructions-content{margin-top:1rem}
.instructions-content ol{padding-left:20px;counter-reset:step-counter}
.instructions-content ol li{list-style:none;padding:1.5rem 1.5rem 1.5rem 3rem;margin-bottom:1rem;background:linear-gradient(135deg,rgba(102,126,234,0.05),rgba(118,75,162,0.05));border-radius:15px;border-left:4px solid #667eea;position:relative;counter-increment:step-counter;transition:all 0.3s ease}
.instructions-content ol li::before{content:counter(step-counter);position:absolute;left:15px;top:1.5rem;background:linear-gradient(135deg,#667eea,#764ba2);color:white;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.9rem;box-shadow:0 4px 10px rgba(102,126,234,0.3)}
.instructions-content ol li:hover{background:linear-gradient(135deg,rgba(102,126,234,0.1),rgba(118,75,162,0.1));transform:translateX(5px)}
.loading-state{text-align:center;padding:4rem 2rem;color:#fff;position:relative;z-index:2}
.loading-spinner{font-size:3rem;color:#ffd700;margin-bottom:1rem;animation:spin 1s linear infinite}
.loading-state h3{color:#fff;font-size:2rem;margin-bottom:1rem;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.loading-state p{color:#fff;opacity:0.9;font-size:1.1rem;text-shadow:0 1px 2px rgba(0,0,0,0.3)}
.error-state{text-align:center;padding:4rem 2rem;color:#fff;position:relative;z-index:2}
.error-icon i{font-size:4rem;color:#ff6b6b;margin-bottom:1rem;animation:bounce 2s infinite}
.error-state h3{color:#fff;font-size:2rem;margin-bottom:1rem;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.error-state p{color:#fff;opacity:0.9;font-size:1.1rem;margin-bottom:2rem;text-shadow:0 1px 2px rgba(0,0,0,0.3)}
.error-state .btn{background:linear-gradient(135deg,#ff6b6b,#ee5a6f);color:white;padding:1rem 2rem;border-radius:15px;text-decoration:none;font-weight:700;transition:all 0.3s ease;box-shadow:0 8px 25px rgba(255,107,107,0.4)}
.error-state .btn:hover{background:linear-gradient(135deg,#ff5252,#e53e5f);transform:translateY(-3px);box-shadow:0 15px 35px rgba(255,107,107,0.6)}
.related-products-section{margin-top:3rem;padding:3rem 2rem;position:relative;z-index:2}
.related-products-section h3{color:#fff;font-size:2.5rem;margin-bottom:2rem;text-align:center;font-weight:800;text-shadow:0 3px 6px rgba(0,0,0,0.3)}
.related-products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}
.news-container{margin-top:80px;padding:2rem 0;background:#f8f9fa;min-height:calc(100vh - 80px)}
.article-wrapper{max-width:900px;margin:0 auto;background:white;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.1);overflow:hidden}
.blog-post-full{padding:0;margin:0}
.article-loading{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:4rem 2rem;color:#666}
.article-loading .loading-spinner{margin-bottom:1rem}
.article-loading .spinner{width:40px;height:40px;border:4px solid #e9ecef;border-top:4px solid #667eea;border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 1rem}
.back-button,.back-button-bottom{background:#667eea;color:white;border:none;padding:0.75rem 1.5rem;border-radius:25px;cursor:pointer;font-weight:600;margin-bottom:2rem;transition:all 0.3s ease;text-decoration:none;display:inline-flex;align-items:center;gap:0.5rem}
.back-button:hover,.back-button-bottom:hover{background:#5a67d8;transform:translateY(-2px);text-decoration:none;color:white}
.article-header{padding:2rem 2rem 1rem;text-align:center}
.article-category-full{background:linear-gradient(135deg,#667eea,#764ba2);color:white;padding:0.5rem 1rem;border-radius:20px;font-size:0.9rem;font-weight:600;display:inline-block;margin-bottom:1rem}
.article-header h1{color:#333;font-size:2.5rem;font-weight:700;margin-bottom:1rem;line-height:1.3}
.article-meta-full{color:#666;margin-bottom:1rem;display:flex;align-items:center;justify-content:center;gap:0.5rem;flex-wrap:wrap}
.article-tags-full{display:flex;justify-content:center;gap:0.5rem;flex-wrap:wrap}
.article-tags-full .tag{background:#f8f9fa;color:#667eea;padding:0.25rem 0.75rem;border-radius:15px;font-size:0.8rem;font-weight:500}
.article-image-full{width:100%;max-height:400px;overflow:hidden;margin-bottom:0}
.article-image-full img{width:100%;height:100%;object-fit:cover;display:block}
.article-content-full{padding:2rem;color:#333;line-height:1.8;font-size:1.1rem}
.article-content-full h2{color:#333;font-size:1.8rem;margin:2rem 0 1rem;font-weight:700}
.article-content-full h3{color:#333;font-size:1.5rem;margin:1.5rem 0 1rem;font-weight:600}
.article-content-full p{margin-bottom:1.5rem;text-align:justify}
.article-content-full ul,.article-content-full ol{margin:1.5rem 0;padding-left:2rem}
.article-content-full li{margin-bottom:0.5rem}
.article-content-full strong{color:#667eea;font-weight:700}
.article-footer{padding:2rem;border-top:2px solid #f8f9fa;text-align:center}
.post-navigation{margin:2rem 0;text-align:center}
.related-articles{margin-top:3rem;background:white;border-radius:20px;padding:2rem;box-shadow:0 8px 25px rgba(0,0,0,0.1)}
.related-articles h3{color:#333;font-size:1.8rem;margin-bottom:2rem;text-align:center}
.related-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem}
.related-article-card{background:#f8f9fa;border-radius:15px;overflow:hidden;cursor:pointer;transition:all 0.3s ease;border:2px solid transparent}
.related-article-card:hover{transform:translateY(-5px);border-color:#667eea;box-shadow:0 10px 25px rgba(102,126,234,0.2)}
.related-article-card img{width:100%;height:150px;object-fit:cover}
.related-content{padding:1.5rem}
.related-content h4{color:#333;font-size:1.1rem;margin-bottom:0.5rem;font-weight:600;line-height:1.3}
.related-content p{color:#666;font-size:0.9rem;margin:0}
.article-not-found{text-align:center;padding:4rem 2rem;color:#666}
.article-not-found h1{color:#333;font-size:2rem;margin-bottom:1rem}
.article-not-found p{margin-bottom:2rem;font-size:1.1rem}
.binance-pay-section{background:#f8f9fa;padding:1.5rem;border-radius:12px;margin-top:1rem;border:2px solid #e9ecef;transition:border-color 0.3s ease}
.binance-pay-section.active{border-color:#667eea;background:white}
.currency-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:1rem;margin-top:1rem}
.currency-option{background:white;border:2px solid #e9ecef;border-radius:12px;padding:1rem;cursor:pointer;transition:all 0.3s ease;text-align:center;position:relative}
.currency-option:hover{border-color:#667eea;transform:translateY(-2px);box-shadow:0 5px 15px rgba(102,126,234,0.2)}
.currency-option.selected{border-color:#667eea;background:linear-gradient(135deg,rgba(102,126,234,0.1),rgba(118,75,162,0.1))}
.currency-option .crypto-icon{font-size:2rem;margin-bottom:0.5rem;color:#667eea}
.currency-option .crypto-name{font-weight:600;color:#333;margin-bottom:0.25rem}
.currency-option .crypto-symbol{color:#666;font-size:0.9rem;margin-bottom:0.5rem}
.currency-option .crypto-price{color:#667eea;font-weight:700;font-size:1.1rem}
.currency-option .crypto-amount{color:#28a745;font-size:0.9rem;font-weight:600;margin-top:0.25rem}
.binance-instructions{background:linear-gradient(135deg,rgba(255,193,7,0.1),rgba(255,152,0,0.1));border:2px solid #ffc107;border-radius:12px;padding:1.5rem;margin-top:1rem}
.binance-instructions h4{color:#856404;margin-bottom:1rem;font-size:1.2rem;display:flex;align-items:center;gap:0.5rem}
.binance-instructions ol{color:#856404;font-weight:500}
.binance-instructions li{margin-bottom:0.75rem;line-height:1.5}
.binance-qr-section{text-align:center;padding:2rem;background:white;border-radius:12px;margin-top:1rem;border:2px solid #e9ecef}
.binance-qr-code{margin:1rem 0}
.binance-qr-code img{max-width:200px;border:4px solid #667eea;border-radius:12px}
.binance-payment-info{background:#f8f9fa;padding:1rem;border-radius:8px;margin:1rem 0}
.binance-payment-info p{margin:0.5rem 0;font-weight:500}
.binance-payment-info .amount{font-size:1.2rem;color:#667eea;font-weight:700}
.binance-btn{background:linear-gradient(135deg,#f0b90b,#f0b90b)!important;border:none!important}
.binance-btn:hover{background:linear-gradient(135deg,#d4a309,#d4a309)!important}
.binance-btn i{color:#000!important}
.legal-container{margin-top:80px;padding:2rem 0;background:#f8f9fa;min-height:calc(100vh - 80px)}
.legal-page{background:white;border-radius:20px;box-shadow:0 8px 25px rgba(0,0,0,0.1);overflow:hidden;max-width:900px;margin:0 auto}
.legal-header{background:linear-gradient(135deg,#667eea,#764ba2);color:white;padding:3rem 2rem;text-align:center}
.legal-header h1{font-size:2.5rem;margin-bottom:0.5rem;font-weight:700;display:flex;align-items:center;justify-content:center;gap:1rem}
.legal-header h1 i{font-size:2rem}
.last-updated{background:rgba(255,255,255,0.2);padding:0.5rem 1rem;border-radius:20px;font-size:0.9rem;font-weight:500;display:inline-block}
.legal-content{padding:2rem}
.legal-section{margin-bottom:2.5rem;padding-bottom:2rem;border-bottom:1px solid #f0f0f0}
.legal-section:last-child{border-bottom:none;margin-bottom:0}
.legal-section h2{color:#333;font-size:1.8rem;margin-bottom:1.5rem;font-weight:700;display:flex;align-items:center;gap:0.75rem;padding-bottom:0.5rem;border-bottom:2px solid #667eea}
.legal-section h3{color:#333;font-size:1.4rem;margin:2rem 0 1rem;font-weight:600}
.legal-section p{color:#555;line-height:1.8;margin-bottom:1.5rem;text-align:justify;font-size:1rem}
.legal-section ul,.legal-section ol{margin:1.5rem 0;padding-left:2rem;color:#555}
.legal-section li{margin-bottom:0.75rem;line-height:1.6}
.legal-section li strong{color:#667eea;font-weight:700}
.legal-section strong{color:#667eea;font-weight:700}
@keyframes fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeInLeft{from{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}
@keyframes fadeInRight{from{opacity:0;transform:translateX(30px)}to{opacity:1;transform:translateX(0)}}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(0)}40%{transform:translateY(-10px)}60%{transform:translateY(-5px)}}
@keyframes shimmer{0%{background-position:-200px 0}100%{background-position:calc(200px + 100%) 0}}
@keyframes float{0%,100%{transform:translateY(0px) rotate(0deg)}25%{transform:translateY(-20px) rotate(5deg)}50%{transform:translateY(0px) rotate(0deg)}75%{transform:translateY(-10px) rotate(-5deg)}}
@keyframes slideInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes slideIn{from{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}
@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
@keyframes typing{from{width:0}to{width:100%}}
@keyframes blink-cursor{from,to{border-color:transparent}50%{border-color:#667eea}}
.animate-on-scroll{opacity:0;transform:translateY(30px);transition:all 0.6s ease-out}
.animate-on-scroll.animate{opacity:1;transform:translateY(0)}
.skeleton{background:linear-gradient(90deg,#f0f0f0 25%,transparent 37%,#f0f0f0 63%);background-size:400px 100%;animation:shimmer 1.5s ease-in-out infinite}
.hover-lift{transition:transform 0.3s ease,box-shadow 0.3s ease}
.hover-lift:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(0,0,0,0.15)}
.btn-animated{position:relative;overflow:hidden;transition:all 0.3s ease}
.btn-animated::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);transition:left 0.5s}
.btn-animated:hover::before{left:100%}
.typing-text{overflow:hidden;border-right:2px solid #667eea;white-space:nowrap;animation:typing 3.5s steps(40,end),blink-cursor 0.75s step-end infinite}
.parallax{background-attachment:fixed;background-position:center;background-repeat:no-repeat;background-size:cover}
@media (max-width:768px){
.hamburger{display:flex}
.nav-menu{position:fixed;left:-100%;top:80px;flex-direction:column;background:linear-gradient(135deg,rgba(102,126,234,0.98),rgba(118,75,162,0.98));backdrop-filter:blur(10px);width:100%;height:calc(100vh - 80px);text-align:center;transition:left 0.3s ease;box-shadow:0 10px 30px rgba(0,0,0,0.3);z-index:1000;padding:2rem 0;overflow-y:auto}
.nav-menu.active{left:0}
.nav-item{margin:1rem 0;width:100%}
.nav-link{font-size:1.2rem;padding:1.5rem 2rem;display:flex;align-items:center;justify-content:center;gap:0.75rem;color:white;text-decoration:none;border-radius:0;transition:all 0.3s ease;width:100%;box-sizing:border-box}
.nav-link:hover,.nav-link.active{background:rgba(255,255,255,0.2);color:#ffd700;transform:translateX(10px)}
.nav-link i{font-size:1.3rem}
.cart-count{background:#ff4757;color:white;border-radius:50%;padding:4px 8px;font-size:0.8rem;margin-left:0.5rem;min-width:20px;text-align:center}
.container{padding:0 1rem}
.hero{min-height:80vh;padding:1rem 0}
.hero-content h1{font-size:clamp(2rem,8vw,2.5rem);line-height:1.2;margin-bottom:1rem}
.hero-content p{font-size:clamp(0.9rem,4vw,1.1rem);margin-bottom:1.5rem;padding:0 1rem}
.hero-features{flex-direction:column;gap:1rem}
.hero-stats{grid-template-columns:repeat(2,1fr);gap:1rem;max-width:300px}
.stat{padding:0.75rem 0.5rem}
.stat strong{font-size:1.2rem}
.stat span{font-size:0.8rem}
.floating-card{display:none}
.feature-badge{padding:0.75rem 1rem;font-size:0.9rem}
.cta-button{padding:12px 24px;font-size:1rem;margin:1rem}
.categories,.features,.testimonials,.special-offers,.code-checker{padding:3rem 0}
.categories h2,.features h2,.testimonials h2,.special-offers h2,.code-checker h2{font-size:2rem;margin-bottom:2rem}
.products-grid{grid-template-columns:1fr;gap:1.5rem;padding:0 1rem;justify-items:center}
.product-card{width:100%;max-width:320px;min-height:420px;margin:0 auto;display:flex;flex-direction:column}
.product-image{height:200px;width:100%;flex-shrink:0}
.product-info{padding:1.25rem;flex:1;display:flex;flex-direction:column;justify-content:space-between}
.product-title{font-size:1.1rem;line-height:1.3;margin-bottom:0.75rem;min-height:2.6rem;display:flex;align-items:center}
.product-price{font-size:1.3rem;margin-bottom:1rem}
.product-actions{flex-direction:column;gap:0.75rem;margin-top:auto}
.add-to-cart-btn{padding:12px 16px;font-size:0.9rem;width:100%}
.products-grid-new{grid-template-columns:1fr;gap:1.5rem;padding:0 1rem;justify-items:center}
.product-card-new{width:100%;max-width:320px;min-height:450px;margin:0 auto;display:flex;flex-direction:column}
.product-image-new{height:220px;width:100%;flex-shrink:0}
.product-info-new{padding:1.25rem;flex:1;display:flex;flex-direction:column;justify-content:space-between}
.product-title-new{font-size:1.1rem;line-height:1.3;margin-bottom:1rem;min-height:2.6rem;display:flex;align-items:center}
.product-price-new{margin-bottom:1rem}
.product-actions-new{margin-top:auto}
.add-to-cart-btn-new{padding:12px 16px;font-size:0.9rem;width:100%}
.categories-grid{grid-template-columns:1fr;gap:1.5rem;padding:0 1rem}
.category-card{max-width:400px;margin:0 auto;min-height:350px}
.category-image{height:160px}
.category-card h3{font-size:1.2rem;margin:1rem 0}
.category-card p{font-size:0.9rem;padding:0 1rem;margin-bottom:1rem}
.features-main-grid{grid-template-columns:1fr;gap:2rem}
.features-secondary-grid{grid-template-columns:1fr;gap:1.5rem}
.feature-card{padding:1.5rem}
.feature-icon{width:60px;height:60px;margin-bottom:1rem}
.feature-icon i{font-size:1.5rem}
.feature-card h3{font-size:1.2rem}
.feature-card p{font-size:0.9rem}
.testimonials-grid{grid-template-columns:1fr;gap:1.5rem}
.testimonial-card{padding:1.5rem}
.offers-grid{grid-template-columns:1fr;gap:1.5rem;padding:0 1rem}
.offer-card{padding:1.5rem;max-width:400px;margin:0 auto}
.primary-offer{transform:none;margin-bottom:1rem}
.store-info{padding:3rem 0}
.store-info h2{font-size:2rem}
.store-info-grid{grid-template-columns:1fr;gap:1.5rem;margin-bottom:2rem}
.info-card{padding:2rem 1.5rem}
.badges-row{gap:1rem;flex-direction:column;align-items:center}
.trust-badge{min-width:200px}
.faq{padding:3rem 0}
.faq h2{font-size:2rem}
.faq-grid{grid-template-columns:1fr;gap:1.5rem}
.faq-item{padding:1.5rem}
.shop-controls{padding:1.5rem 0;position:relative;top:0}
.search-container{max-width:100%;margin:0 1rem}
.search-container input{font-size:0.9rem;padding:12px 16px 12px 45px}
.search-btn{padding:12px 20px}
.shop-filters{gap:0.75rem;justify-content:center;padding:0 1rem}
.filter-btn{padding:10px 16px;font-size:0.9rem;min-width:80px}
.shop-toolbar{flex-direction:column;gap:1rem;align-items:stretch;padding:1rem}
.sort-section{justify-content:center}
.shop-hero-new{padding:3rem 0}
.shop-hero-content{padding:0 1rem}
.shop-hero-content h1{font-size:2.2rem}
.shop-hero-content p{font-size:1rem}
.categories-pills{gap:0.75rem;flex-direction:column;align-items:center}
.category-pill{padding:10px 16px;min-width:250px;font-size:0.9rem}
.shop-toolbar-new{flex-direction:column;gap:1rem;align-items:stretch}
.products-grid-new{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;padding:0 1rem}
.product-image-new{height:220px}
.product-card-new{max-width:350px;margin:0 auto}
.parallax{background-attachment:scroll}
.animate-on-scroll{animation-duration:0.4s}
.auth-container{padding:1rem;margin-top:80px}
.auth-form{padding:2rem 1.5rem}
.auth-form h2{font-size:1.5rem}
.auth-header h2{font-size:1.5rem}
.form-group input,.form-group select,.form-group textarea{padding:12px 16px}
.checkout-container{padding:1rem;margin-top:80px}
.checkout-container h1{font-size:2rem;margin-bottom:1.5rem}
.checkout-content{grid-template-columns:1fr;gap:1.5rem;margin-top:1rem}
.checkout-form{padding:1.5rem;border-radius:15px;margin-bottom:1rem}
.checkout-form h2{font-size:1.5rem;margin-bottom:0.75rem}
.digital-products-notice{padding:0.75rem 1rem;margin-bottom:1.5rem;flex-direction:column;text-align:center;gap:0.5rem}
.checkout-summary{position:static;max-height:none;top:auto;padding:1.5rem;border-radius:15px;margin-top:1rem}
.checkout-summary h3{font-size:1.3rem;margin-bottom:1rem}
.cart-content{grid-template-columns:1fr;gap:1rem}
.cart-item{flex-direction:column;text-align:center;gap:1rem;padding:1rem}
.remove-btn{position:static;margin-top:1rem}
.item-details{text-align:center}
.item-quantity{justify-content:center}
.form-container{margin:100px 1rem 2rem;padding:2rem;max-width:none}
.form-container h1{font-size:1.8rem}
.form-row{grid-template-columns:1fr;gap:1rem}
.form-group input,.form-group select,.form-group textarea{padding:12px 16px;font-size:1rem}
.btn{padding:12px 20px;font-size:1rem}
.profile-container{padding:1rem}
.profile-header{padding:1.5rem 1rem;border-radius:16px;margin-bottom:1rem}
.profile-avatar{width:80px;height:80px;font-size:2rem;margin-bottom:1rem}
.profile-header h1{font-size:1.3rem}
.profile-header p{font-size:0.95rem}
.profile-tabs{border-radius:16px}
.tab-content{padding:1rem}
.filter-btn{padding:0.5rem 0.75rem;font-size:0.8rem;min-width:70px;max-width:100px}
.orders-filters{gap:0.4rem}
.footer{padding:1.5rem 0 1rem;margin-top:2rem}
.footer-content{padding:0 0.5rem;gap:1rem}
.footer-section{padding:0 0.5rem}
.footer-section h3,.footer-section h4{font-size:1rem;margin-bottom:0.75rem}
.footer-section p{font-size:0.85rem;margin-bottom:0.75rem}
.footer-section ul li a{font-size:0.85rem;padding:0.4rem 0}
.footer-bottom{padding:0.75rem 0.5rem;font-size:0.8rem}
.cookie-banner{padding:1rem}
.cookie-banner-content{flex-direction:column;text-align:center;gap:1rem}
.cookie-banner-actions{justify-content:center;width:100%}
.cookie-banner button{flex:1;min-width:120px}
.cookie-modal-content{margin:1rem;padding:1.5rem;width:calc(100% - 2rem)}
.cookie-modal-actions{flex-direction:column}
.cookie-save-settings{width:100%}
.product-detail{margin-top:80px;padding:0}
.product-container{border-radius:20px;margin:1rem;overflow:hidden}
.product-detail-content{grid-template-columns:1fr;gap:0}
.product-detail-image{min-height:300px;border-radius:20px 20px 0 0;background:linear-gradient(135deg,#f8f9fa,#e9ecef)}
.product-detail-info{padding:2rem 1.5rem;border-radius:0 0 20px 20px;background:white}
.product-title{font-size:2rem;margin:1rem 0;background:linear-gradient(135deg,#333,#667eea);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.product-price{font-size:2.5rem;margin-bottom:1.5rem;background:linear-gradient(135deg,#667eea,#764ba2);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.product-actions{flex-direction:column;gap:1.5rem}
.quantity-selector{padding:1rem;background:rgba(102,126,234,0.1);border-radius:15px}
.quantity-selector > div{gap:1rem}
.quantity-btn{width:40px;height:40px;font-size:1rem;background:linear-gradient(135deg,#667eea,#764ba2);box-shadow:0 4px 15px rgba(102,126,234,0.4)}
#quantity{width:70px;height:40px;padding:0.5rem;font-size:1rem;border:2px solid #667eea;border-radius:10px}
.btn-large{padding:1.2rem 1.5rem;font-size:1rem;background:linear-gradient(135deg,#28a745,#20c997);box-shadow:0 8px 25px rgba(40,167,69,0.4);border-radius:15px}
.product-description,.product-redemption,.product-instructions{padding:2rem 1.5rem;margin-bottom:1.5rem;border-radius:20px;background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);box-shadow:0 10px 30px rgba(0,0,0,0.1)}
.product-description h3,.product-redemption h3,.product-instructions h3{font-size:1.3rem;margin-bottom:1rem}
.related-products-section{padding:2rem 1rem;position:relative;z-index:2}
.related-products-section h3{font-size:2rem;margin-bottom:2rem;color:#fff;text-shadow:0 2px 4px rgba(0,0,0,0.3)}
.related-products-grid{grid-template-columns:1fr;gap:1.5rem;padding:0}
@media (max-width:480px){
.container{padding:0 0.5rem}
.checkout-container{padding:0.5rem;margin-top:80px}
.checkout-container h1{font-size:1.8rem;margin-bottom:1rem;padding:0 0.5rem}
.checkout-content{gap:1rem;margin-top:0.5rem}
.checkout-form{padding:1rem;border-radius:12px;margin-bottom:0.5rem}
.checkout-form h2{font-size:1.3rem;margin-bottom:0.75rem;text-align:center;flex-direction:column;gap:0.25rem}
.digital-products-notice{padding:0.5rem 0.75rem;margin-bottom:1rem;border-radius:8px}
.digital-products-notice p{font-size:0.9rem}
.checkout-summary{padding:1rem;border-radius:12px;margin-top:0.5rem}
.checkout-summary h3{font-size:1.2rem;margin-bottom:0.75rem}
.form-row{grid-template-columns:1fr;gap:1rem}
.form-group{margin-bottom:1rem}
.form-group label{font-size:0.9rem;margin-bottom:0.5rem}
.form-group input,.form-group select{padding:10px 12px;font-size:0.9rem;border-radius:8px}
.btn-full{padding:0.75rem;font-size:0.9rem;border-radius:10px}
.hero{min-height:70vh;padding:0.5rem 0}
.hero-content h1{font-size:clamp(1.8rem,7vw,2.2rem);margin-bottom:0.75rem}
.hero-content p{font-size:clamp(0.85rem,3.5vw,1rem);margin-bottom:1rem;padding:0 0.5rem}
.hero-stats{grid-template-columns:1fr 1fr;gap:0.75rem;max-width:280px}
.stat{padding:0.5rem}
.stat strong{font-size:1rem}
.stat span{font-size:0.75rem}
.feature-badge{padding:0.5rem 0.75rem;font-size:0.8rem}
.cta-button{padding:10px 20px;font-size:0.9rem;margin:0.5rem}
.categories,.features,.testimonials,.special-offers,.code-checker{padding:2rem 0}
.categories h2,.features h2,.testimonials h2,.special-offers h2,.code-checker h2{font-size:1.8rem;margin-bottom:1.5rem;padding:0 1rem}
.products-grid{grid-template-columns:1fr;gap:1rem;padding:0 0.5rem;justify-items:center}
.product-card{width:100%;max-width:300px;min-height:400px;margin:0 auto;display:flex;flex-direction:column}
.product-image{height:180px;width:100%;flex-shrink:0}
.product-info{padding:1rem;flex:1;display:flex;flex-direction:column;justify-content:space-between}
.product-title{font-size:1rem;line-height:1.3;margin-bottom:0.75rem;min-height:2.6rem;display:flex;align-items:center}
.product-price{font-size:1.2rem;margin-bottom:1rem}
.product-actions{margin-top:auto}
.add-to-cart-btn{padding:10px 14px;font-size:0.85rem;width:100%}
.products-grid-new{grid-template-columns:1fr;gap:1rem;padding:0 0.5rem;justify-items:center}
.product-card-new{width:100%;max-width:300px;min-height:420px;margin:0 auto;display:flex;flex-direction:column}
.product-detail{padding:0}
.product-container{margin:0.5rem;border-radius:15px}
.product-detail-image{min-height:250px;border-radius:15px 15px 0 0}
.product-detail-info{padding:1.5rem 1rem}
.product-title{font-size:1.5rem;margin:0.75rem 0}
.product-price{font-size:2rem;margin-bottom:1rem}
.quantity-selector{padding:0.75rem;margin-bottom:1rem}
.quantity-btn{width:35px;height:35px;font-size:0.9rem}
#quantity{width:60px;height:35px;font-size:0.9rem}
.btn-large{padding:1rem;font-size:0.9rem;border-radius:12px}
.product-description,.product-redemption,.product-instructions{padding:1.5rem 1rem;margin-bottom:1rem;border-radius:15px}
.product-description h3,.product-redemption h3,.product-instructions h3{font-size:1.1rem;margin-bottom:0.75rem;flex-direction:column;gap:0.5rem;text-align:center}
.product-additional-info{padding:1.5rem 0.5rem}
.related-products-section{padding:1.5rem 0.5rem}
.related-products-section h3{font-size:1.5rem;margin-bottom:1.5rem}
.instructions-content ol li{padding:1rem;margin-bottom:0.75rem}
.instructions-content ol li::before{width:25px;height:25px;font-size:0.8rem;left:-8px}
.redemption-item{padding:0.75rem;margin-bottom:0.75rem}
.product-image-new{height:200px;width:100%;flex-shrink:0}
.product-info-new{padding:1rem;flex:1;display:flex;flex-direction:column;justify-content:space-between}
.product-title-new{font-size:1rem;line-height:1.3}