/* ============================================
   ZENOPLENAR — Premium Dog Toy Brand
   Apple-Style Glossy eCommerce
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0F0B1F;
    --bg-light: #1a1433;
    --primary: #6C2BFF;
    --primary-dark: #5520cc;
    --accent: #FFD93D;
    --accent-dark: #e6c235;
    --highlight: #FFF3B0;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-strong: rgba(255, 255, 255, 0.15);
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --radius: 24px;
    --radius-sm: 16px;
    --radius-xs: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(108, 43, 255, 0.3);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* === ANIMATED BACKGROUND === */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(108, 43, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 217, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(108, 43, 255, 0.1) 0%, transparent 50%),
        var(--bg);
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* === CONTAINER === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.accent {
    background: linear-gradient(135deg, var(--accent), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === GLASS PANEL === */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.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-primary {
    background: linear-gradient(135deg, var(--primary), #8B5CF6);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 43, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 43, 255, 0.6);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #FFA500);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 217, 61, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 217, 61, 0.6);
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-glass:hover {
    background: var(--glass-strong);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* Add-to-cart bounce */
.btn-bounce {
    animation: cartBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(0.9); }
    50% { transform: scale(1.15); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* === HEADER / NAVBAR === */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 11, 31, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.glass-header.scrolled {
    background: rgba(15, 11, 31, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    z-index: 10;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.cart-btn:hover {
    background: var(--glass-strong);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent);
    color: #1a1a2e;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-count.bump {
    animation: countBump 0.4s ease;
}

@keyframes countBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === CART DRAWER === */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: rgba(15, 11, 31, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--glass-border);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.cart-drawer-header h3 {
    font-size: 1.3rem;
}

.cart-close {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-close:hover {
    background: rgba(255, 60, 60, 0.3);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-drawer-item img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xs);
    object-fit: cover;
}

.cart-drawer-item-info {
    flex: 1;
}

.cart-drawer-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cart-drawer-item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-drawer-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-drawer-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.cart-drawer-item-qty button:hover {
    background: var(--primary);
}

.cart-drawer-item-qty span {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-drawer-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    transition: var(--transition);
    align-self: flex-start;
}

.cart-drawer-item-remove:hover {
    color: #ff4444;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* === NOTIFICATION === */
.notification {
    position: fixed;
    top: 90px;
    right: 24px;
    background: rgba(108, 43, 255, 0.9);
    backdrop-filter: blur(20px);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 3000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(108, 43, 255, 0.4);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* === HERO SECTION — ENHANCED === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(108, 43, 255, 0.25) 0%, transparent 65%);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-glow-secondary {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.12) 0%, transparent 65%);
    animation: glowPulse2 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes glowPulse2 {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Subtle grid overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(108, 43, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 43, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Floating particles container */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration) var(--delay) ease-in-out infinite;
}

.hero-particle:nth-child(even) {
    background: var(--accent);
    width: 3px;
    height: 3px;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
}

/* Enhanced badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 43, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 43, 255, 0.25);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.2s both;
    width: fit-content;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

.hero-title {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.hero-line {
    display: block;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--accent), #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: fadeInUp 0.8s ease 0.4s both, gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-btn-primary {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #8B5CF6, var(--primary));
    background-size: 200% 200%;
    animation: fadeInUp 0.8s ease 0.8s both;
    box-shadow: 0 4px 25px rgba(108, 43, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

.hero-btn-primary:hover {
    box-shadow: 0 8px 40px rgba(108, 43, 255, 0.7), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.hero-btn-secondary {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}

.hero-btn-secondary:hover {
    border-color: rgba(108, 43, 255, 0.5);
    background: rgba(108, 43, 255, 0.1);
}

/* Enhanced stats */
.hero-stats {
    display: flex;
    gap: 0;
    align-items: center;
    animation: fadeInUp 0.8s ease 1s both;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 20px 32px;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-bottom: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    padding-right: 0;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Trust strip */
.hero-trust-strip {
    animation: fadeInUp 0.8s ease 1.2s both;
}

.trust-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge-item {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Hero Visual — Enhanced === */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-product-showcase {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main image with glow ring */
.hero-main-image-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float1 6s ease-in-out infinite;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(108, 43, 255, 0.2) 0%, rgba(255, 217, 61, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: imageGlowPulse 4s ease-in-out infinite;
}

@keyframes imageGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-image-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    border-radius: 50%;
    border: 2px solid rgba(108, 43, 255, 0.15);
    animation: ringRotate 20s linear infinite;
}

.hero-image-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 217, 61, 0.6);
}

.hero-image-ring::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(108, 43, 255, 0.6);
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-dog-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(108, 43, 255, 0.15),
        inset 0 0 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.1);
}

.floating-card {
    position: absolute;
    transition: transform 0.3s ease;
    z-index: 2;
}

.floating-card-2 {
    bottom: 50px;
    left: -30px;
    animation: float2 5s ease-in-out infinite;
}

.mini-product-card {
    background: rgba(15, 11, 31, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.mini-product-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 43, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mini-product-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.mini-product-text {
    display: flex;
    flex-direction: column;
}

.mini-product-name {
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
}

.mini-product-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.floating-card-3 {
    top: 60px;
    right: -20px;
    animation: float3 7s ease-in-out infinite;
}

.review-bubble {
    background: rgba(15, 11, 31, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.review-stars {
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.review-bubble p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.review-author {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-card-4 {
    bottom: 120px;
    right: -10px;
    animation: float4 8s ease-in-out infinite;
}

.stat-bubble {
    background: rgba(15, 11, 31, 0.92);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 16px 22px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.stat-bubble-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-bubble-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 1.5s both;
    cursor: pointer;
    z-index: 2;
}

.scroll-text {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.scroll-dot {
    width: 3px;
    height: 12px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    left: -1px;
    top: -12px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: -12px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 48px; opacity: 0; }
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 43, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(108, 43, 255, 0.2), rgba(255, 217, 61, 0.1));
    border: 1px solid rgba(108, 43, 255, 0.3);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === PRODUCT CARDS === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 43, 255, 0.05) 0%, transparent 50%);
    border-radius: var(--radius);
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 43, 255, 0.3);
    box-shadow: 0 20px 60px rgba(108, 43, 255, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(108, 43, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}

.product-card:hover .product-card-glow {
    opacity: 1;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1433, #0f0b1f);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge.new {
    background: linear-gradient(135deg, #00C851, #007E33);
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--accent), #FFA500);
    color: #1a1a2e;
}

.product-info {
    padding: 24px;
}

.product-rating {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.product-rating span {
    color: var(--text-muted);
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
}

/* === FEATURES / WHY === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 43, 255, 0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 43, 255, 0.3);
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(108, 43, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* === PAGE HERO === */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* === SHOP PAGE === */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.shop-filters {
    padding: 32px;
    position: sticky;
    top: 96px;
    height: fit-content;
}

.filter-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.price-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    outline: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(108, 43, 255, 0.4);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid white;
}

.filter-select {
    width: 100%;
    padding: 10px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.filter-select option {
    background: var(--bg);
    color: white;
}

.no-results {
    text-align: center;
    padding: 80px 0;
    color: var(--text-muted);
}

.no-results-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

/* === PRODUCT DETAIL === */
.product-detail-section {
    padding-top: 120px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-main-image {
    padding: 24px;
    overflow: hidden;
}

.detail-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    object-fit: cover;
    transition: transform 0.5s;
}

.detail-main-img:hover {
    transform: scale(1.03);
}

.product-detail-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    padding: 0;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active,
.thumb:hover {
    border-color: var(--primary);
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.detail-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.detail-rating {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
}

.detail-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.detail-features h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.detail-features ul {
    list-style: none;
    margin-bottom: 32px;
}

.detail-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    gap: 10px;
    align-items: center;
}

.feature-check {
    color: var(--accent);
    font-weight: 700;
}

.detail-quantity {
    margin-bottom: 24px;
}

.detail-quantity label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs);
    padding: 8px 16px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.qty-value {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.detail-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === CART PAGE === */
.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-page-item {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
}

.cart-page-item:hover {
    border-color: rgba(108, 43, 255, 0.3);
}

.cart-page-item img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-page-item-info {
    flex: 1;
}

.cart-page-item-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-page-item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-page-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-page-item-qty button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: white;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-page-item-qty button:hover {
    background: var(--primary);
}

.cart-page-item-qty span {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.cart-page-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 8px;
}

.cart-page-item-remove:hover {
    color: #ff4444;
}

.cart-summary {
    padding: 32px;
    position: sticky;
    top: 96px;
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    border-bottom: none;
    margin-bottom: 24px;
    padding-top: 16px;
}

.cart-empty-page {
    text-align: center;
    padding: 80px 0;
}

.cart-empty-page .cart-empty-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

/* === CHECKOUT === */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.checkout-form {
    padding: 40px;
}

.checkout-section {
    margin-bottom: 36px;
}

.checkout-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 43, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.2);
}

.form-error {
    font-size: 0.8rem;
    color: #ff4444;
    margin-top: 4px;
    display: block;
    min-height: 18px;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-icon {
    font-size: 1.2rem;
}

.checkout-summary {
    padding: 32px;
    position: sticky;
    top: 96px;
}

.checkout-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.checkout-items {
    margin-bottom: 16px;
}

.checkout-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.checkout-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-item-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-overlay.active {
    display: flex;
}

.success-popup {
    text-align: center;
    padding: 48px;
    max-width: 480px;
    width: 90%;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-popup h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.success-popup p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5001;
}

/* === PRODUCT SHOWCASE (Products Page) === */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--glass-border);
}

.product-showcase:last-child {
    border-bottom: none;
}

.product-showcase.reverse .product-showcase-image {
    order: 2;
}

.product-showcase.reverse .product-showcase-content {
    order: 1;
}

.showcase-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s;
}

.showcase-img:hover {
    transform: scale(1.02);
}

.product-showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.showcase-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.showcase-rating {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-showcase-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-features {
    list-style: none;
    margin-bottom: 32px;
}

.showcase-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.showcase-actions {
    display: flex;
    gap: 12px;
}

/* === ABOUT PAGE === */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-story {
    overflow: hidden;
}

.about-image-wrap {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.about-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-hero-img:hover {
    transform: scale(1.02);
}

.about-text {
    padding: 40px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-values {
    text-align: center;
}

.about-values .section-title {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.value-card {
    padding: 36px;
    text-align: center;
    transition: all 0.4s;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 43, 255, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px;
    text-align: center;
}

.stat-large {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-large-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-large-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === CONTACT PAGE === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 28px;
    text-align: center;
    transition: all 0.4s;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 43, 255, 0.3);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === LEGAL CONTENT === */
.legal-content {
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--accent);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xs);
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* === MOBILE STICKY CTA === */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(15, 11, 31, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: 999;
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === LIGHT SWEEP EFFECT === */
.light-sweep {
    position: relative;
    overflow: hidden;
}

.light-sweep::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    animation: lightSweep 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-col {
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto 24px;
    }

    .hero-trust-strip {
        display: flex;
        justify-content: center;
    }

    .trust-logos {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: static;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .product-showcase.reverse .product-showcase-image {
        order: unset;
    }

    .product-showcase.reverse .product-showcase-content {
        order: unset;
    }

    .showcase-actions {
        justify-content: center;
    }

    .cart-page-layout,
    .checkout-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 11, 31, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 5;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-actions {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .hero-stats {
        padding: 16px 20px;
        gap: 0;
        flex-wrap: nowrap;
    }

    .stat {
        padding: 0 16px;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .page-hero {
        padding: 120px 0 40px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .cart-page-item {
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .detail-trust {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .stat {
        padding: 0;
        align-items: center;
    }

    .trust-logos {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .stat-large-num {
        font-size: 2rem;
    }
}