/* ═══════════════════════════════════════════════════════════════
   PrintHype — Premium D2C Apparel | Main Stylesheet
   Redesigned for maximum conversions, performance & SEO
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    --primary: #f43f5e;
    --primary-hover: #e11d48;
    --primary-light: #fff1f2;
    --secondary: #0ea5e9;
    --secondary-hover: #0284c7;
    --accent: #f59e0b;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light-bg: #fdf2f8;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
    /* Legacy aliases for backward compatibility */
    --primary-color: #f43f5e;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
    background: linear-gradient(90deg, var(--dark) 0%, #1e1b4b 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}
.announcement-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}
.announcement-bar:hover .announcement-inner { animation-play-state: paused; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    background: var(--dark);
    color: var(--white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.navbar-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color var(--transition);
    position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.cart-icon {
    position: relative;
    color: var(--white);
    font-size: 1.15rem;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.cart-icon:hover { background: rgba(255,255,255,0.1); }
.badge {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    border: 2px solid var(--dark);
}
.nav-btn {
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition);
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
.nav-btn.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
}
.nav-btn.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.mobile-menu-icon { display: none; font-size: 1.4rem; cursor: pointer; color: var(--white); padding: 8px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--primary);
    color: white;
    text-decoration: none;
    line-height: 1;
}
.btn:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(244,63,94,0.3); }
.btn:active { transform: translateY(0); }
.btn-secondary { background: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-hover); box-shadow: 0 8px 25px rgba(14,165,233,0.3); }
.btn-outline-dark { background: transparent; border: 2px solid var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 50%, #312e81 100%);
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244,63,94,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,63,94,0.15);
    border: 1px solid rgba(244,63,94,0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: #fda4af;
    margin-bottom: 20px;
}
.hero-content { animation: fadeInUp 0.6s ease-out both; }
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    font-weight: 800;
}
.hero h1 span { color: var(--primary); }
.hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero {
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    text-decoration: none;
    border: none;
}
.btn-hero:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(244,63,94,0.4); }
.btn-hero-outline {
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: left; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.78rem; color: #94a3b8; font-weight: 500; }

.hero-mockup-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}
.hero-mockup {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── Trust Section ─────────────────────────────────────────── */
.trust-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 12px 8px;
}
.trust-item i {
    font-size: 1.4rem;
    color: var(--primary);
    background: var(--primary-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}
.trust-item span { font-size: 0.72rem; font-weight: 600; color: var(--text-main); line-height: 1.3; }

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}
.section-header h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; }

/* ── Product Grid & Cards ──────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-image-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8fafc;
    display: block;
    position: relative;
}
.product-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    pointer-events: none;
}
.product-image-wrap.img-loaded::after { display: none; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image { transform: scale(1.06); }

.product-info { padding: 20px; }
.product-category {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

/* ── Why Choose Section ────────────────────────────────────── */
.why-section {
    padding: 80px 0;
    background: var(--white);
    margin-top: 70px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--light-bg);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border); }
.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.3rem;
}
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
    color: var(--white);
    padding: 70px 0;
    margin-top: 70px;
    text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── Promo Carousel ────────────────────────────────────────── */
.promo-carousel {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.promo-track { display: flex; transition: transform 0.5s ease; will-change: transform; }
.promo-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.promo-deco { position: absolute; border-radius: 50%; opacity: 0.1; }
.promo-deco-1 { width: 200px; height: 200px; background: white; top: -50px; right: -30px; }
.promo-deco-2 { width: 120px; height: 120px; background: white; bottom: -30px; left: 20%; }
.promo-content { position: relative; z-index: 2; }
.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.promo-title { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 6px; }
.promo-sub { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--dark);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all var(--transition);
}
.promo-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.promo-icon-wrap {
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}
.promo-img {
    max-height: 140px;
    object-fit: contain;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}
@media(max-width:600px) {
    .promo-img { max-height: 80px; }
    .promo-slide { padding: 28px 20px; flex-wrap: wrap; }
}

.promo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 5;
}
.promo-arrow:hover { background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.promo-prev { left: 16px; }
.promo-next { right: 16px; }
.promo-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.promo-dot.dot-active { background: white; width: 24px; border-radius: 4px; }

/* ── Category Filters ──────────────────────────────────────── */
.filters { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.filter-btn {
    padding: 9px 20px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ── Auth Pages ────────────────────────────────────────────── */
.auth-container {
    max-width: 440px;
    margin: 60px auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h1 { font-size: 1.6rem; margin-bottom: 8px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    font-size: 0.92rem;
    background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244,63,94,0.1);
}
.password-wrapper { position: relative; }
.password-wrapper i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition);
}
.password-wrapper i:hover { color: var(--primary); }
.auth-footer { text-align: center; margin-top: 24px; color: var(--text-muted); font-size: 0.9rem; }
.auth-footer a { color: var(--primary); font-weight: 600; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 24px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-brand p { color: #94a3b8; font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all var(--transition);
    font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 18px; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #94a3b8; font-size: 0.88rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--white); }
.footer-newsletter p { color: #94a3b8; font-size: 0.85rem; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form .btn { padding: 11px 20px; font-size: 0.85rem; white-space: nowrap; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-badge i { color: var(--success); }
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #64748b;
    font-size: 0.82rem;
}
.footer-bottom-links { display: flex; justify-content: center; gap: 24px; margin-top: 10px; }
.footer-bottom-links a { color: #64748b; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Product Detail ────────────────────────────────────────── */
.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.active { border-color: var(--primary); box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary); }
.size-btn {
    padding: 11px 22px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    background: var(--white);
    color: var(--text-main);
}
.size-btn:hover { border-color: var(--primary); color: var(--primary); }
.size-btn.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 15px rgba(244,63,94,0.3); }

/* ── Sticky Add to Cart (Mobile) ───────────────────────────── */
.sticky-atc {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    border-top: 1px solid var(--border);
}
.sticky-atc-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: var(--container);
    margin: 0 auto;
}
.sticky-atc-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.sticky-atc .btn { flex: 1; max-width: 200px; }

/* ── Free Shipping Progress Bar ────────────────────────────── */
.shipping-progress {
    background: var(--primary-light);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}
.shipping-progress p { font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.shipping-progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
}
.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

/* ── Toast Notifications ───────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--secondary);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.toast-error { background: var(--danger); }
.toast.show { opacity: 1; transform: translateY(0); }

/* ── Reviews Section ───────────────────────────────────────── */
.reviews-section { padding: 70px 0; background: var(--light-bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.review-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-location { font-size: 0.75rem; color: var(--text-muted); }

/* ── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumbs {
    padding: 14px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 8px; }

/* ── Exit Intent Popup ─────────────────────────────────────── */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.popup-overlay.active { display: flex; }
.popup-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupIn 0.3s ease;
}
@keyframes popupIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.popup-close:hover { background: var(--danger); color: white; }
.popup-content h2 { font-size: 1.5rem; margin-bottom: 10px; }
.popup-content p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.92rem; }
.popup-content .form-group input { text-align: center; }

/* ── Recently Viewed / Related ─────────────────────────────── */
.recently-viewed { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }

/* ── Our Process Section ───────────────────────────────────── */
.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.process-step {
    text-align: center;
    padding: 24px 20px;
    flex: 1;
    position: relative;
}
.process-num {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
}
.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(244,63,94,0.25);
}
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.process-connector {
    color: var(--border);
    font-size: 1.2rem;
    flex-shrink: 0;
    padding: 0 4px;
}
@media(max-width:768px) {
    .process-grid { flex-direction: column; gap: 8px; }
    .process-connector { transform: rotate(90deg); }
    .process-step { padding: 16px; }
}

/* ── Instagram Gallery ─────────────────────────────────────── */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.insta-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
}
.insta-placeholder i { font-size: 1.8rem; color: var(--primary); }
.insta-placeholder span { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); }
.insta-item:hover .insta-placeholder { background: var(--primary-light); transform: scale(1.05); }
@media(max-width:600px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Purchase Notifications ────────────────────────────────── */
.purchase-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 997;
    max-width: 320px;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.purchase-notification img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--border-light);
}
.purchase-notification .pn-text { font-size: 0.8rem; line-height: 1.4; }
.purchase-notification .pn-name { font-weight: 700; }
.purchase-notification .pn-time { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.purchase-notification .pn-close {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
}
@media(max-width:768px) { .purchase-notification { bottom: 80px; left: 12px; max-width: 280px; } }

/* ── Product Card Enhancements ─────────────────────────────── */
.product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}
.product-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.product-badge-sale { background: var(--danger); color: white; }
.product-badge-new { background: var(--success); color: white; }
.product-badge-hot { background: var(--accent); color: white; }
.product-card .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
    opacity: 0;
    transform: translateX(8px);
    transition: all var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.product-action-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ── Fade-in Animation ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Payment Logos ─────────────────────────────────────────── */
.payment-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.payment-logos img, .payment-logos i {
    height: 24px;
    opacity: 0.6;
    transition: opacity var(--transition);
}
.payment-logos img:hover, .payment-logos i:hover { opacity: 1; }

/* ── Scarcity & Urgency ────────────────────────────────────── */
.stock-urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef2f2;
    color: var(--danger);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.countdown-timer {
    display: flex;
    gap: 8px;
    margin: 12px 0;
}
.countdown-unit {
    background: var(--dark);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    min-width: 50px;
}
.countdown-unit strong { display: block; font-size: 1.2rem; }
.countdown-unit span { font-size: 0.65rem; color: #94a3b8; text-transform: uppercase; }

/* ── WhatsApp Button ───────────────────────────────────────── */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    z-index: 998;
    transition: all var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--border-light); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 992px) {
    .hero { padding: 60px 0 70px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-mockup-wrapper { margin: 0 auto; }
    .hero-mockup { max-width: 380px; margin: 0 auto; }
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-icon { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.06);
        z-index: 999;
        gap: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .announcement-inner { gap: 20px; font-size: 0.75rem; }
    .sticky-atc { display: block; }
}

/* Mobile: 600px */
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .navbar { padding: 10px 0; }
    .logo img { height: 36px !important; }
    .nav-actions { gap: 8px; }
    .nav-btn { padding: 7px 14px; font-size: 0.8rem; }
    .hero { padding: 40px 0 50px; }
    .hero h1 { font-size: 2rem; letter-spacing: -1px; }
    .hero p { font-size: 0.95rem; }
    .hero-badge { font-size: 0.72rem; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat strong { font-size: 1.2rem; }
    .hero-mockup { max-width: 280px; }
    .btn-hero, .btn-hero-outline { padding: 14px 24px; font-size: 0.92rem; }
    .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .trust-item i { width: 40px; height: 40px; font-size: 1.1rem; }
    .trust-item span { font-size: 0.65rem; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-image-wrap, .product-image { height: 180px; }
    .product-info { padding: 14px; }
    .product-title { font-size: 0.88rem; }
    .product-price { font-size: 1rem; }
    .product-footer { flex-direction: column; align-items: stretch; gap: 8px; }
    .product-footer .btn-sm { width: 100%; text-align: center; justify-content: center; }
    .section-header h2 { font-size: 1.4rem !important; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 24px 20px; display: flex; align-items: flex-start; gap: 16px; text-align: left; }
    .why-card .why-icon { margin: 0; flex-shrink: 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer { padding: 40px 0 20px; }
    .newsletter-form { flex-direction: column; }
    .promo-slide { padding: 30px 24px; min-height: 160px; }
    .promo-title { font-size: 1.2rem; }
    .cta-banner { padding: 50px 0; }
    .cta-banner h2 { font-size: 1.6rem; }
    .auth-container { margin: 30px auto; padding: 28px 20px; }
    .filters { gap: 6px; }
    .filter-btn { padding: 7px 14px; font-size: 0.78rem; }
    .footer { padding: 50px 0 20px; margin-top: 50px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 14px; }
}

/* Very small: 380px */
@media (max-width: 380px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.7rem; }
    .hero-ctas { flex-direction: column; }
    .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
    .nav-btn { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Print Styles ──────────────────────────────────────────── */
@media print {
    .navbar, .footer, .announcement-bar, .whatsapp-btn, #chatbot-widget, .sticky-atc { display: none !important; }
    body { background: white; color: black; }
}
