/* ============================================
   INFÂNCIA STORE — Stylesheet Principal
   Aesthetic: Loja infantil encantada
   Paleta: Azul bebê · Dourado · Navy · Pêssego
   Fonts: Fredoka (display) · Nunito (body)
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700;800&family=Baloo+2:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand — do header navy+gold */
    --navy-deep: #0D1B3E;
    --navy: #152249;
    --navy-light: #1C2D5A;
    --gold: #D4A017;
    --gold-light: #F5C518;
    --gold-pale: #FCEABB;
    --gold-shimmer: #E8B923;

    /* Primária — Azul Bebê */
    --primary: #5BA4D9;
    --primary-light: #8EC5EB;
    --primary-soft: #B8DCF5;
    --primary-pale: #E3F1FB;
    --primary-dark: #3A7CB8;

    /* Secundária — Pêssego / Coral suave */
    --peach: #F4A683;
    --peach-light: #FBCDB8;
    --peach-pale: #FFF0E8;

    /* Terciária — Menta suave */
    --mint: #7ECBA1;
    --mint-light: #B2E5CA;
    --mint-pale: #E4F7ED;

    /* Lavanda suave */
    --lavender: #B8A9D4;
    --lavender-pale: #EDE8F5;

    /* Amarelo bebê */
    --baby-yellow: #FFE27A;
    --baby-yellow-pale: #FFF8DC;

    /* Backgrounds */
    --bg-main: #F0F7FC;
    --bg-warm: #FFF9F5;
    --bg-card: #FFFFFF;
    --bg-soft-blue: #E8F2FB;
    --bg-cloud: #F5FAFF;
    --bg-linen: #FEF9F4;
    --bg-dark: var(--navy-deep);

    /* Text */
    --text-dark: #1A2744;
    --text-medium: #4A5A75;
    --text-light: #8B9AB5;
    --text-muted: #B5C0D3;

    /* Borders */
    --border: #D4E3F0;
    --border-light: #E8F0F7;
    --border-gold: rgba(212,160,23,0.2);

    /* Status */
    --success: #5CB88A;
    --danger: #E07070;
    --warning: #E5A84B;

    /* Shadows — tom azulado e suave */
    --shadow-sm: 0 2px 12px rgba(91,164,217,0.08);
    --shadow-md: 0 4px 24px rgba(91,164,217,0.1);
    --shadow-lg: 0 8px 40px rgba(91,164,217,0.12);
    --shadow-xl: 0 16px 56px rgba(91,164,217,0.15);
    --shadow-gold: 0 4px 20px rgba(212,160,23,0.15);

    /* Radius — bem arredondado, infantil */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-display: 'Fredoka', 'Baloo 2', cursive;
    --font-body: 'Nunito', 'Helvetica Neue', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Sutil padrão de nuvens/estrelinhas no fundo */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(91,164,217,0.03) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(244,166,131,0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(126,203,161,0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

/* ============================================
   TOP BAR — Herdado do header (navy + gold)
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--navy-deep), var(--navy), var(--navy-deep));
    color: var(--gold-pale);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
    border-bottom: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--gold-light);
    font-weight: 700;
}

.top-bar a:hover { color: #fff; }

.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* ============================================
   HEADER / NAVBAR — Navy + Gold (definido no header.php)
   Estilos base caso o header.php não traga tudo
   ============================================ */
.header {
    background: var(--navy-deep);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(13,27,62,0.35);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(13,27,62,0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
}

.logo-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    flex-shrink: 0;
}

.logo-text { min-width: 0; flex-shrink: 1; }

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-text span {
    font-size: 10px;
    color: var(--gold-pale);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: none;
}

/* Nav */
.nav-links {
    display: flex;
    list-style: none;
    gap: 3px;
    align-items: center;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-pale);
    border-radius: 10px;
    transition: var(--transition);
    letter-spacing: 0.2px;
    position: relative;
}

.nav-links a:hover {
    background: rgba(212,160,23,0.1);
    color: var(--gold-light);
}

.nav-links a.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-shimmer));
    color: var(--navy-deep);
    font-weight: 800;
    box-shadow: 0 3px 14px rgba(212,160,23,0.35);
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(212,160,23,0.2);
    transition: var(--transition);
    flex: 1;
    max-width: 360px;
    position: relative;
    background: rgba(255,255,255,0.06);
}

.search-bar:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,160,23,0.1);
    background: rgba(255,255,255,0.12);
}

.search-bar input {
    border: none;
    background: none;
    padding: 10px 14px 10px 18px;
    font-size: 13.5px;
    width: 100%;
    outline: none;
    color: var(--gold-pale);
    font-family: var(--font-body);
    font-weight: 600;
}

.search-bar input::placeholder { color: rgba(252,234,187,0.35); font-weight: 500; }

.search-bar button {
    background: linear-gradient(135deg, var(--gold), var(--gold-shimmer));
    color: var(--navy-deep);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-bounce);
    margin-right: 4px;
    box-shadow: 0 2px 10px rgba(212,160,23,0.35);
}

.search-bar button:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(212,160,23,0.5);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.header-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: var(--gold-pale);
    border: 2px solid rgba(36,53,102,0.8);
    font-size: 19px;
    transition: var(--transition);
    position: relative;
}

.header-btn:hover {
    border-color: var(--gold);
    background: rgba(212,160,23,0.1);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    background: linear-gradient(135deg, #E85D5D, #D14343);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--navy-deep);
    font-family: 'Baloo 2', cursive;
}

.cart-count:empty,
.cart-count[data-count="0"] { display: none; }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(36,53,102,0.8);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    width: 42px;
    height: 42px;
    justify-content: center;
}

.mobile-toggle span {
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(160deg, var(--bg-cloud) 0%, var(--primary-pale) 30%, var(--peach-pale) 60%, var(--mint-pale) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
}

/* Nuvens decorativas */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(ellipse 200px 80px at 10% 85%, rgba(255,255,255,0.7) 0%, transparent 70%),
        radial-gradient(ellipse 160px 60px at 30% 90%, rgba(255,255,255,0.5) 0%, transparent 70%),
        radial-gradient(ellipse 240px 90px at 75% 80%, rgba(255,255,255,0.6) 0%, transparent 70%),
        radial-gradient(ellipse 140px 50px at 90% 88%, rgba(255,255,255,0.4) 0%, transparent 70%);
    pointer-events: none;
}

/* Estrelinhas flutuantes */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-main), transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: white;
    border: 2px solid var(--primary-soft);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body);
}

.hero h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.hero h2 em {
    font-style: normal;
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 400;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 12px rgba(91,164,217,0.06);
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -18px;
    border: 2px dashed var(--primary-soft);
    border-radius: 50%;
    opacity: 0.4;
    animation: spin-slow 35s linear infinite;
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

.hero-visual-inner {
    text-align: center;
    color: var(--text-medium);
    z-index: 1;
}

.hero-visual-inner .big-icon {
    font-size: 88px;
    margin-bottom: 16px;
    display: block;
}

.hero-visual-inner p {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0;
}

/* Float Badges */
.hero-float-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
    border: 2px solid var(--border-light);
}

.hero-float-badge:nth-child(2) { bottom: 40px; left: -40px; animation-delay: 0.5s; }
.hero-float-badge:nth-child(3) { top: 40px; right: -40px; animation-delay: 1.5s; }

.hero-float-badge .badge-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-float-badge .badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-float-badge .badge-text small {
    display: block;
    font-weight: 400;
    color: var(--text-light);
    font-size: 11px;
    margin-top: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(91,164,217,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(91,164,217,0.45);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy-deep);
    border: 2px solid var(--navy-deep);
}

.btn-outline:hover {
    background: var(--navy-deep);
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.45);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
}

.btn-sm { padding: 9px 22px; font-size: 13px; }
.btn-lg { padding: 17px 44px; font-size: 16px; }

.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #c55050; }

.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #4a9e70; }

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
}

.btn-cart {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    letter-spacing: 0.2px;
    transition: var(--transition);
    box-shadow: 0 3px 14px rgba(91,164,217,0.3);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(91,164,217,0.4);
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
    background: white;
    padding: 36px 0;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.feature-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: var(--primary);
    border: 2px solid var(--primary-soft);
    box-shadow: var(--shadow-sm);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-family: var(--font-body);
}

.feature-text p {
    font-size: 12.5px;
    color: var(--text-light);
    font-weight: 400;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header .label {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    font-family: var(--font-body);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.section-header h2 em {
    font-style: normal;
    color: var(--primary);
    font-weight: 500;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.75;
}

/* Ornamento — estrela infantil */
.section-header::after {
    content: '⭐';
    display: block;
    margin-top: 14px;
    font-size: 16px;
    opacity: 0.5;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-header-flex .section-header {
    text-align: left;
    margin-bottom: 0;
}

.section-header-flex .section-header::after { display: none; }

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-pale), var(--peach-pale));
    opacity: 0;
    transition: var(--transition);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: var(--transition);
    border-radius: 3px;
}

.category-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before { opacity: 1; }
.category-card:hover::after { transform: translateX(-50%) scaleX(1); }

.category-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition-bounce);
    border: 2px solid var(--primary-soft);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    transform: scale(1.12) rotate(-5deg);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(91,164,217,0.35);
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.category-card p {
    font-size: 12.5px;
    color: var(--text-light);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--border-light);
    position: relative;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-soft);
}

.product-image {
    display: block;
    position: relative;
    padding-top: 105%;
    overflow: hidden;
    background: var(--bg-cloud);
}

.product-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-image .no-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: var(--border);
}

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.badge-sale { background: var(--danger); color: white; }
.badge-new { background: var(--mint); color: white; }
.badge-featured { background: var(--gold); color: var(--navy-deep); font-weight: 800; }

.product-actions-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(13,27,62,0.55), transparent);
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.product-card:hover .product-actions-overlay {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a:hover { color: var(--primary); }

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-display);
}

.price-original {
    font-size: 13.5px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.price-discount {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: var(--mint-pale);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.product-card .btn-cart {
    font-size: 13px;
    padding: 10px 18px;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */
.product-detail {
    padding: 40px 0 88px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 108px;
}

.gallery-main {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-cloud);
    margin-bottom: 16px;
    border: 2px solid var(--border-light);
}

.gallery-main img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    padding-top: 100%;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    background: var(--bg-cloud);
    transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91,164,217,0.18);
}

.gallery-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 8px;
    line-height: 1.25;
}

.product-detail-info .product-category {
    margin-bottom: 22px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--border-light);
}

.product-detail-price .price-current {
    font-size: 36px;
}

.product-detail-price .price-original {
    font-size: 17px;
}

.product-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 34px;
    font-weight: 400;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.product-quantity label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    overflow: hidden;
    background: white;
}

.qty-selector button {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
}

.qty-selector button:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

.qty-selector input {
    width: 56px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 2px solid var(--border);
    border-right: 2px solid var(--border);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
    background: transparent;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
}

.product-detail-actions .btn-cart {
    width: auto;
    flex: 1;
    padding: 16px 32px;
    font-size: 15.5px;
}

.product-meta {
    padding: 24px;
    background: var(--bg-cloud);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
}

.product-meta-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    align-items: center;
    color: var(--text-medium);
}

.product-meta-item:last-child { border-bottom: none; }

.product-meta-item .icon {
    font-size: 17px;
    width: 24px;
    text-align: center;
    color: var(--primary);
}

.product-meta-item strong { color: var(--text-dark); }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,62,0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 430px;
    max-width: 92vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 48px rgba(13,27,62,0.15);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    padding: 24px 28px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: var(--bg-cloud);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-deep);
}

.cart-header .close-cart,
.mobile-sidebar-header .close-cart {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-medium);
}

.cart-header .close-cart:hover,
.mobile-sidebar-header .close-cart:hover {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}

.cart-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-light);
}

.cart-empty .empty-icon {
    font-size: 68px;
    margin-bottom: 18px;
    display: block;
    opacity: 0.3;
}

.cart-empty h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.cart-empty p { font-size: 14px; font-weight: 400; }

.cart-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    animation: slideIn 0.35s ease;
}

@keyframes slideIn {
    from { transform: translateX(24px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-cloud);
    border: 2px solid var(--border-light);
}

.cart-item-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-display);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-qty button:hover {
    background: var(--primary-pale);
    border-color: var(--primary-light);
}

.cart-item-qty span {
    font-size: 14px;
    font-weight: 700;
    width: 32px;
    text-align: center;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--text-light);
    font-size: 17px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: rgba(224,112,112,0.1);
    color: var(--danger);
}

.cart-footer {
    padding: 24px 28px;
    border-top: 2px solid var(--border-light);
    flex-shrink: 0;
    background: var(--bg-cloud);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-medium);
}

.cart-total strong {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--primary-dark);
    font-weight: 700;
}

.cart-footer .btn {
    width: 100%;
    padding: 16px;
    font-size: 15.5px;
}

.cart-footer .continue-shopping {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    padding: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.cart-footer .continue-shopping:hover { color: var(--primary); }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
    padding: 44px 0 88px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
    border: 2px solid var(--border-light);
}

.checkout-section h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--navy-deep);
}

.checkout-section h3 .step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.form-group label .required { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14.5px;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-cloud);
    outline: none;
    font-family: var(--font-body);
}

.form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(91,164,217,0.12);
}

.form-control::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

textarea.form-control { resize: vertical; min-height: 84px; }

/* Order Summary */
.order-summary {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--border-light);
    position: sticky;
    top: 108px;
}

.order-summary h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--navy-deep);
}

.order-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.order-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-cloud);
    flex-shrink: 0;
    border: 2px solid var(--border-light);
}

.order-item-img img { width: 100%; height: 100%; object-fit: cover; }

.order-item-details { flex: 1; min-width: 0; }

.order-item-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-item-qty {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.order-item-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    flex-shrink: 0;
    font-family: var(--font-display);
}

.order-totals { padding-top: 20px; margin-top: 8px; }

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 400;
}

.order-total-row.total {
    padding-top: 16px;
    margin-top: 10px;
    border-top: 2px solid var(--border);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.order-total-row.total span:last-child {
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
}

.pix-info {
    background: var(--mint-pale);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-top: 24px;
    text-align: center;
    border: 2px solid rgba(92,184,138,0.2);
}

.pix-info .pix-icon { font-size: 40px; margin-bottom: 12px; display: block; }

.pix-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.pix-info p { font-size: 13px; color: var(--text-light); font-weight: 400; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

.breadcrumb a { color: var(--text-medium); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--border); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 52px;
}

.pagination a, .pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border);
    transition: var(--transition);
    color: var(--text-medium);
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
}

.pagination .active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(91,164,217,0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.6);
    padding: 68px 0 0;
    position: relative;
}

/* Ondas suaves no topo */
.footer::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-main);
    border-radius: 0 0 50% 50%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-brand .logo-text span {
    font-size: 10px;
    color: var(--primary-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.footer-brand p {
    margin-top: 18px;
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-pale);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }

.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 13.5px;
    margin-bottom: 13px;
    font-weight: 400;
}

.footer-contact .icon {
    color: var(--gold-light);
    font-size: 15px;
    margin-top: 2px;
}

.footer-bottom {
    padding: 26px 0;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.25);
    font-weight: 400;
}

/* ============================================
   CATALOG PAGE
   ============================================ */
.catalog-page { padding: 44px 0 88px; }

.catalog-layout {
    display: grid;
    grid-template-columns: 268px 1fr;
    gap: 36px;
}

.catalog-sidebar {
    position: sticky;
    top: 108px;
    align-self: start;
}

.sidebar-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    border: 2px solid var(--border-light);
}

.sidebar-section h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-filter { list-style: none; }
.category-filter li { margin-bottom: 2px; }

.category-filter a {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    color: var(--text-medium);
    transition: var(--transition);
    font-weight: 400;
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--primary-pale);
    color: var(--primary-dark);
    font-weight: 600;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.catalog-header h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--navy-deep);
}

.catalog-sort select {
    padding: 10px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    color: var(--text-dark);
    outline: none;
    background: white;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
}

.catalog-sort select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91,164,217,0.12);
}

.catalog-count {
    font-size: 13.5px;
    color: var(--text-light);
    font-weight: 400;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(150deg, var(--primary) 0%, var(--primary-dark) 40%, var(--navy-deep) 100%);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(245,197,24,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 40px;
    color: white;
    margin-bottom: 18px;
    position: relative;
    font-weight: 600;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    position: relative;
    font-weight: 400;
}

.cta-section .btn { position: relative; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-bounce);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: var(--mint-pale); color: #3a7a5a; border: 2px solid rgba(92,184,138,0.25); }
.alert-error { background: rgba(224,112,112,0.1); color: #b04040; border: 2px solid rgba(224,112,112,0.2); }
.alert-warning { background: var(--baby-yellow-pale); color: #8a6b20; border: 2px solid rgba(229,168,75,0.25); }
.alert-info { background: var(--primary-pale); color: var(--primary-dark); border: 2px solid rgba(91,164,217,0.2); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 300px;
    max-width: 420px;
    animation: toastIn 0.45s cubic-bezier(0.16,1,0.3,1);
    border-left: 4px solid var(--primary);
}

.toast.toast-out { animation: toastOut 0.3s ease forwards; }

.toast-icon { font-size: 22px; }
.toast-message { font-size: 14px; font-weight: 600; flex: 1; color: var(--text-dark); }

@keyframes toastIn {
    from { transform: translateX(110%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(110%); opacity: 0; }
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   EMPTY STATES
   ============================================ */
.empty-state {
    text-align: center;
    padding: 88px 20px;
}

.empty-state .icon { font-size: 80px; margin-bottom: 22px; opacity: 0.3; }
.empty-state h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-medium);
}
.empty-state p { color: var(--text-light); margin-bottom: 28px; font-weight: 400; }

/* ============================================
   MOBILE MENU SIDEBAR
   ============================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,62,0.4);
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-deep);
    z-index: 9997;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 48px rgba(13,27,62,0.25);
    overflow-y: auto;
}

.mobile-sidebar.active { transform: translateX(0); }

@media (max-width: 768px) {
    .mobile-sidebar { width: 100%; max-width: 100vw; }
}

.mobile-sidebar-header {
    padding: 22px 24px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
}

.mobile-sidebar-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--gold-light);
}

.mobile-sidebar-header .close-cart {
    color: var(--gold-pale);
    background: rgba(212,160,23,0.12);
    border: 1.5px solid rgba(212,160,23,0.25);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 16px;
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 14px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: var(--gold-pale);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    border-radius: 12px;
    font-family: var(--font-body);
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a:active {
    background: rgba(212,160,23,0.1);
    color: var(--gold-light);
    transform: translateX(4px);
}

.mobile-sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.mobile-sidebar-footer .btn {
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-shimmer));
    color: var(--navy-deep);
    border: none;
    padding: 14px;
    font-size: 15px;
    text-align: center;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}

/* ============================================
   FOOTER BADGES
   ============================================ */
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 26px 0;
    margin-bottom: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-badges-group { text-align: center; }

.footer-badges .badge-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-badges .badge-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-badges .badge-icons img {
    height: 30px;
    width: auto;
    background: white;
    border-radius: 8px;
    padding: 4px 10px;
    object-fit: contain;
    transition: var(--transition);
    opacity: 0.85;
}

.footer-badges .badge-icons img:hover {
    transform: translateY(-3px);
    opacity: 1;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* ============================================
   FOOTER ACCORDION (MOBILE)
   ============================================ */
.footer-accordion-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.accordion-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
    color: rgba(255,255,255,0.3);
}

.footer-accordion.active .accordion-arrow { transform: rotate(90deg); }

.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.footer-accordion.active .footer-accordion-content {
    max-height: 500px;
    opacity: 1;
}

@media (min-width: 769px) {
    .footer-accordion-content {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
    .accordion-arrow { display: none; }
    .footer-accordion-toggle { cursor: default; }
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--navy), var(--navy-deep));
    padding: 20px;
}

.admin-login-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 52px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}

.admin-login-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
    color: var(--navy-deep);
}

.admin-login-card p {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 36px;
    font-weight: 400;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--bg-main);
}

.admin-sidebar {
    width: 260px;
    background: var(--navy-deep);
    color: white;
    padding: 24px 0;
    flex-shrink: 0;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar .logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.admin-sidebar .logo-text h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-light);
    font-weight: 600;
}

.admin-sidebar .logo-text span {
    font-size: 10px;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-nav { list-style: none; padding: 0 12px; }
.admin-nav li { margin-bottom: 2px; }

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(91,164,217,0.15);
    color: var(--primary-light);
}

.admin-nav a .nav-icon {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.admin-main { margin-left: 260px; flex: 1; padding: 36px; min-width: 0; }

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.admin-header h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-deep);
}

.admin-header p {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

.admin-table-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    overflow: hidden;
}

.admin-table-header {
    padding: 22px 28px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-cloud);
}

.admin-table-header h3 {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--navy-deep);
}

.admin-table { width: 100%; border-collapse: collapse; }

.admin-table th {
    padding: 14px 22px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    background: var(--bg-main);
    border-bottom: 2px solid var(--border-light);
}

.admin-table td {
    padding: 16px 22px;
    font-size: 13.5px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.admin-table tr:hover td { background: var(--primary-pale); }

.admin-table .product-thumb {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-cloud);
}

.admin-table .product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.status-badge {
    display: inline-flex;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    font-weight: 600;
}

.status-active { background: var(--mint-pale); color: #3a7a5a; }
.status-inactive { background: rgba(224,112,112,0.1); color: #b04040; }
.status-pending { background: var(--baby-yellow-pale); color: #8a6b20; }

.table-actions { display: flex; gap: 6px; }

.table-actions button,
.table-actions a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
}

.table-actions button:hover,
.table-actions a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
}

.table-actions .btn-delete:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(224,112,112,0.08);
}

.admin-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 2px solid var(--border-light);
}

.admin-form-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--navy-deep);
}

.image-upload {
    border: 2.5px dashed var(--primary-soft);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--bg-cloud);
}

.image-upload:hover {
    border-color: var(--primary);
    background: var(--primary-pale);
}

.image-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.image-upload .upload-icon {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary);
}

.image-upload p {
    font-size: 13.5px;
    color: var(--text-light);
    font-weight: 400;
}

.image-preview {
    width: 100%;
    max-width: 200px;
    margin: 12px auto 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.image-preview img { width: 100%; height: auto; }

.images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .hero h2 { font-size: 42px; }
    .hero-visual { width: 340px; height: 340px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .header .container {
        flex-wrap: nowrap;
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .mobile-toggle { display: flex; }

    .nav-links,
    .nav-links.active,
    .header nav {
        display: none !important;
    }

    .search-bar { display: none; }

    .logo { gap: 10px; }
    .logo-icon img { height: 50px !important; }
    .logo-text h1 { font-size: 18px; }

    .hero { padding: 52px 0; min-height: auto; }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .hero h2 { font-size: 34px; }
    .hero p { font-size: 15.5px; }
    .hero-buttons { justify-content: center; }

    .hero-visual { width: 100%; max-width: 280px; height: 280px; }
    .hero-float-badge { display: none; }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .category-card { padding: 22px 16px; }
    .category-icon { width: 52px; height: 52px; font-size: 22px; }

    .section { padding: 52px 0; }
    .section-header h2 { font-size: 28px; }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .product-gallery { position: static; }

    .checkout-grid { grid-template-columns: 1fr; }
    .order-summary { position: static; }

    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { position: static; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-badges { gap: 24px; }
    .footer-badges .badge-icons img { height: 26px; }

    .cart-sidebar { width: 100%; max-width: 100vw; }

    .form-row { grid-template-columns: 1fr; }
    .product-detail-price .price-current { font-size: 30px; }

    .toast-container {
        top: auto;
        bottom: 18px;
        right: 16px;
        left: 16px;
    }
    .toast { min-width: 0; max-width: 100%; }

    .admin-sidebar {
        transform: translateX(-100%);
        transition: var(--transition);
    }
    .admin-sidebar.active { transform: translateX(0); }
    .admin-main { margin-left: 0; padding: 18px; }
    .admin-table { font-size: 12px; }
    .admin-table th, .admin-table td { padding: 10px 14px; }
    .images-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .product-info { padding: 14px; }
    .product-name { font-size: 14px; margin-bottom: 8px; }
    .price-current { font-size: 17px; }
    .price-original { font-size: 12px; }
    .product-card .btn-cart { font-size: 12px; padding: 9px 12px; }

    .features-grid { grid-template-columns: 1fr; }
    .hero h2 { font-size: 28px; }

    .container { padding: 0 18px; }

    .logo-icon img { height: 42px !important; }
    .logo-text h1 { font-size: 16px; }
    .logo { gap: 8px; }
}

@media (max-width: 380px) {
    .header .container {
        padding-left: 12px;
        padding-right: 12px;
        gap: 6px;
    }
    .logo-icon img { height: 36px !important; }
    .logo-text h1 { font-size: 14px; }
    .logo { gap: 7px; }
    .header-btn { width: 38px; height: 38px; font-size: 18px; }
    .mobile-toggle { padding: 6px; }
    .mobile-toggle span { width: 20px; }
}

@media (max-width: 320px) {
    .logo-icon img { height: 30px !important; }
    .logo-text h1 { font-size: 12.5px; }
}