ï»¿/* ============================================================
   CIBELE PERFUMARIA â CatÃ¡logo E-commerce
   Design: Branco Premium Â· Produto Principal
   ============================================================ */

/* ââ Logo da empresa âââââââââââââââââââââââââââââââââââââââ */
.header-logo-img {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.header-logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    /* Logo Ã© preta â deixamos visÃ­vel no fundo escuro */
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
    opacity: 0.9;
}

/* ââ Header logo link ââââââââââââââââââââââââââââââââââââââ */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}



/* ââ Google Fonts jÃ¡ carregadas no HTML ââ */

:root {
    --pink: #C2185B;
    --pink-light: #E91E8C;
    --pink-pale: #FCE4EC;
    --pink-dim: rgba(194, 24, 91, 0.08);
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --text: #1a1a2e;
    --text-2: #4a4a6a;
    --text-muted: #9999bb;
    --white: #ffffff;
    --off-white: #f8f7ff;
    --gray-100: #f3f2f9;
    --gray-200: #e8e7f4;
    --border: #ece9f6;
    --shadow-sm: 0 2px 12px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 6px 30px rgba(26, 26, 46, 0.10);
    --shadow-lg: 0 16px 60px rgba(26, 26, 46, 0.14);
    --shadow-pink: 0 8px 32px rgba(194, 24, 91, 0.22);
    --grad-brand: linear-gradient(135deg, #6B2FA0 0%, #C2185B 100%);
    --grad-light: linear-gradient(135deg, #f3e7ff 0%, #fce4ec 100%);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 90px;
    --max-w: 1320px;
}

/* ââ Reset âââââââââââââââââââââââââââââââââââââââââââââââââ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ââ Container âââââââââââââââââââââââââââââââââââââââââââââ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 56px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--grad-brand);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-pink);
    flex-shrink: 0;
}

.logo-mark.small {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 8px;
}

.logo-brand {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.logo-sub {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Search â centraliza dinamicamente entre logo e actions */
.header-search {
    flex: 1;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.header-search input {
    width: 100%;
    height: 46px;
    padding: 0 20px 0 46px;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
}

.header-search input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.08);
}

.header-search input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Autocomplete */
.autocomplete-drop {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    z-index: 99;
}

.ac-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background var(--transition);
}

.ac-row:hover {
    background: var(--gray-100);
}

.ac-row+.ac-row {
    border-top: 1px solid var(--border);
}

.ac-thumb {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ac-info-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.ac-info-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 16px 6px 6px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
}

.user-chip:hover {
    border-color: var(--pink);
    background: var(--pink-dim);
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.user-role {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    overflow: hidden;
    z-index: 99;
}

.user-chip:focus-within .user-dropdown,
.user-dropdown.open {
    display: block;
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 13px;
    color: var(--text-2);
    transition: background var(--transition);
}

.drop-item:hover {
    background: var(--gray-100);
    color: var(--text);
}

.drop-item-danger:hover {
    background: #fff0f3;
    color: #e53e3e;
}

/* Cart button */
.cart-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px 10px 16px;
    background: var(--dark);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    position: relative;
}

.cart-trigger:hover {
    background: var(--pink);
    transform: translateY(-1px);
    box-shadow: var(--shadow-pink);
}

.cart-label {
    display: block;
}

.cart-count {
    background: var(--pink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    min-width: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.cart-trigger:hover .cart-count {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   CATEGORY NAV BAR
   ============================================================ */
.cat-nav {
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: var(--header-h);
    z-index: 800;
}

.cat-nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-nav-inner::-webkit-scrollbar {
    display: none;
}

.cat-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    font-size: 15px;
    /* Aumentado */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
}

/* Underline animado */
.cat-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    /* Mais perto do texto */
    left: 4px;
    right: 4px;
    height: 2px;
    background: var(--pink-light);
    /* Cor do hover/active */
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-nav-link:hover {
    color: #fff;
}

.cat-nav-link:hover::after {
    transform: scaleX(1);
}

.cat-nav-link.active {
    color: #fff;
    font-weight: 600;
}

.cat-nav-link.active::after {
    transform: scaleX(1);
    background: var(--pink-light);
}

.cat-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    /* Amarelo da logo Cibele */
    opacity: 0.9;
}

.cat-nav-icon svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 450px;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0018;
    isolation: isolate;       /* Isola contexto: orbs/particles ficam contidos em todos os browsers */
    will-change: transform;  /* Força compositing layer: overflow:hidden clipa filter:blur corretamente */
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0018 0%, #1a0535 40%, #2d0d50 70%, #180828 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbPulse 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 47, 160, 0.5) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: 100px;
    animation-delay: 2s;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180, 136, 11, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    33% {
        transform: scale(1.08) translate(20px, -15px);
    }

    66% {
        transform: scale(0.95) translate(-10px, 20px);
    }
}

/* Particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: particleDrift linear infinite;
}

.hero-particle.pink {
    background: rgba(233, 30, 140, 0.6);
}

@keyframes particleDrift {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-500px) scale(1);
        opacity: 0;
    }
}

/* Hero inner */
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    width: 100%;
}


.hero-content {
    color: #fff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink-light);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    /* TÃ­tulo menor */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, #D4AF37, #E91E8C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 14px;
    /* Menor */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 420px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    /* BotÃ£o menor */
    background: linear-gradient(135deg, #C2185B, #E91E8C);
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: var(--shadow-pink);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 24, 91, 0.4);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    /* BotÃ£o menor */
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    /* Stat menor */
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 3px;
}

.stat-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero visual — removido do HTML, oculto via CSS como proteção nuclear */
.hero img,
.hero-visual,
.hero-model-img {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    z-index: -999 !important;
}


/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 20px;
    /* Centralizado via left+margin para não conflitar com a animação */
    left: 50%;
    margin-left: -20px; /* metade de 40px — substitui o translateX(-50%) */
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    animation: scrollBounce 2.5s ease-in-out infinite;
    transition: border-color var(--transition), color var(--transition);
}

.hero-scroll:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ============================================================
   CATALOG SECTION
   ============================================================ */
.catalog-section {
    background: var(--off-white);
    padding: 60px 0 100px;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
}


/* Catalog toolbar */
.catalog-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.catalog-count {
    font-size: 14px;
    color: var(--text-muted);
}

.catalog-count strong {
    color: var(--text);
}

.sort-box {
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-2);
    font-size: 13px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: border-color var(--transition);
}

.sort-box:focus {
    outline: none;
    border-color: var(--pink);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 840px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.grid-loading {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px;
    gap: 16px;
    color: var(--text-muted);
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ââ Product card âââââââââââââââââââââââââââââââââââââââââââ */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    animation: cardIn 0.4s ease-out both;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card image */
.card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.card-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image-inner {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.card-badge-promo {
    background: var(--pink);
    color: #fff;
}

.card-badge-esgotado {
    background: #374151;
    color: #fff;
    top: 12px;
    right: 12px;
    left: auto;
}

.card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition);
}

.product-card:hover .card-wishlist {
    opacity: 1;
    transform: scale(1);
}

/* Card body */
.card-body {
    padding: 16px 18px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pink);
    margin-bottom: 5px;
}

.card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 4px;
    flex: 1;
}

.card-brand {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-price-original {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.card-price-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.card-price-reseller {
    font-size: 12px;
    color: #059669;
    font-weight: 500;
}

/* Card footer */
.card-footer {
    padding: 0 14px 14px;
}

.btn-add-card {
    width: 100%;
    padding: 10px;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all var(--transition);
    transform: translateY(4px);
    opacity: 0;
}

.product-card:hover .btn-add-card {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover .btn-add-card:hover {
    background: var(--pink);
    box-shadow: var(--shadow-pink);
}

/* ââ Empty state âââââââââââââââââââââââââââââââââââââââââââ */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 52px;
    margin-bottom: 16px;
}

.empty-state-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 8px;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 0, 24, 0.5);
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 95vw;
    height: 100vh;
    background: var(--white);
    z-index: 801;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 60px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-head {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.cart-drawer-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-drawer-items {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.cart-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    transition: all var(--transition);
}

.cart-drawer-close:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: var(--pink-dim);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.cart-drawer-foot {
    border-top: 1px solid var(--border);
    padding: 20px 24px 24px;
    flex-shrink: 0;
    background: var(--gray-100);
}

/* Cart item */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 24px;
    align-items: flex-start;
    transition: background var(--transition);
}

.cart-item:hover {
    background: var(--gray-100);
}

.cart-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.cart-item-info {
    flex: 1;
}

.cart-item-sku {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cart-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cq-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-2);
    transition: all var(--transition);
}

.cq-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.cq-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    min-width: 24px;
    text-align: center;
}

.cq-rm {
    margin-left: 4px;
    font-size: 12px;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
    transition: color var(--transition);
}

.cq-rm:hover {
    color: #e53e3e;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

/* Cart footer */
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cart-summary-label {
    font-size: 14px;
    color: var(--text-2);
}

.cart-summary-value {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: var(--grad-brand);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all var(--transition);
    box-shadow: var(--shadow-pink);
}

.btn-checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(194, 24, 91, 0.35);
}

.btn-continue {
    width: 100%;
    padding: 11px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-2);
    text-align: center;
    display: block;
    transition: all var(--transition);
}

.btn-continue:hover {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-clear-cart {
    width: 100%;
    padding: 8px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #e53e3e;
    text-align: center;
    display: block;
    margin-top: 5px;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-clear-cart:hover {
    color: #c53030;
    text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0 0;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 340px 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-logo {
    max-width: 280px;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-heading {
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition);
}

.footer-links li a:hover {
    color: var(--pink);
    padding-left: 4px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--pink);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================================
   TOASTS
   ============================================================ */
.toast-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) both;
    border-left: 3px solid var(--pink);
    max-width: 320px;
}

.toast.error {
    border-left-color: #e53e3e;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ============================================================
   PDP (PÃ¡gina de Detalhe do Produto)
   ============================================================ */
.pdp-section {
    background: var(--off-white);
    padding: 48px 0 80px;
}

.pdp-inner {
    max-width: 1060px;
    margin: 0 auto;
    /* Caixa mestra centralizada alinhando todos os eixos perfeitamente */
}

.pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.pdp-breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.pdp-breadcrumb a:hover {
    color: var(--pink);
}

.pdp-breadcrumb span {
    color: var(--text);
    font-weight: 500;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 1fr e 1fr sÃ£o vitais para que a imagem nÃ£o despenque o texto pro lado! Dividi 100% precisamente */
    gap: 60px;
    align-items: start;
}

.pdp-img-main {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-width: 100%;
}

.pdp-img-main img {
    cursor: zoom-in;
    transition: transform 0.1s ease-out, opacity 0.15s ease;
    will-change: transform;
}

.pdp-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.pdp-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition);
}

.pdp-thumb.active {
    border-color: var(--pink);
    box-shadow: var(--shadow-pink);
}

.pdp-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 8px;
}

.pdp-name {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    /* Nome maior, padrÃ£o editorial */
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.pdp-brand {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 40px;
    /* Maior respiro na marca */
}

.pdp-prices {
    padding: 24px 0;
    margin-bottom: 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    /* Linhas elegantes no lugar de caixas fechadas */
}

.pdp-price-original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pdp-price-main {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.pdp-price-reseller {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    display: inline-block;
    margin-top: 8px;
}

.pdp-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #059669;
    margin-bottom: 32px;
    font-weight: 500;
}

.pdp-qty {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.pdp-qty-label {
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
}

.pdp-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.pdp-qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-2);
    transition: all var(--transition);
}

.pdp-qty-btn:hover {
    background: var(--gray-100);
    color: var(--pink);
}

.pdp-qty-val {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-add-btn {
    width: 100%;
    padding: 18px;
    /* Botao maior e contundente */
    background: var(--grad-brand);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(194, 24, 91, 0.2);
    margin-bottom: 12px;
}

.pdp-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(194, 24, 91, 0.35);
}

.pdp-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    /* Linha fina e chic */
    margin-top: 56px;
    margin-bottom: 32px;
}

.pdp-tab {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--transition);
}

.pdp-tab.active {
    color: var(--dark);
    border-bottom-color: var(--dark);
    /* Marcas de luxo usam borda prestes/escuras nas tabs, e nÃ£o cores primÃ¡rias */
}

.pdp-tab-pane {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
}

.pdp-desc-container {
    max-width: 800px;
}

.pdp-desc-paragraph {
    margin-bottom: 16px;
    color: var(--text-2);
}

.pdp-desc-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.pdp-desc-link:hover {
    border-bottom-color: var(--pink);
    opacity: 0.8;
}

.pdp-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.pdp-spec-table tr:nth-child(odd) {
    background: var(--gray-100);
}

.pdp-spec-table td {
    padding: 10px 14px;
    font-size: 13px;
}

.pdp-spec-table td:first-child {
    font-weight: 600;
    color: var(--text);
    width: 40%;
}

.pdp-spec-table td:last-child {
    color: var(--text-2);
}

.related-section {
    padding: 60px 0 0;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE â Ajustes complementares
   (Os media queries de produto e footer jÃ¡ existem acima)
   ============================================================ */

/* ââ 900px: Tablet âââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 900px) {
    :root {
        --header-h: 72px;
    }

    .header-inner {
        padding: 0 24px;
        gap: 12px;
    }

    .header-search {
        max-width: 320px;
    }

    .cat-nav-inner {
        padding: 11px 24px;
        gap: 22px;
        justify-content: flex-start;
    }

    .cat-nav-link {
        font-size: 13px;
    }

    .hero {
        height: auto;
        min-height: 340px;
    }

    .hero-inner {
        padding: 52px 32px;
    }

    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pdp-thumbnails {
        grid-template-columns: repeat(5, 1fr);
    }

    .catalog-section {
        padding: 48px 0 80px;
    }
}

/* ââ 640px: Mobile âââââââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 640px) {
    :root {
        --header-h: 68px;
    }

    /* Header: EquilÃ­brio de Elementos */
    .header-inner {
        padding: 0 12px;
        gap: 8px;
    }

    .header-logo-img {
        height: 52px;
        width: auto;
    }

    .header-search {
        flex: 1;
        margin: 0 4px;
    }

    .header-search input {
        height: 38px;
        font-size: 12px;
        padding-left: 36px;
    }

    .search-icon {
        left: 12px;
        width: 14px;
    }

    .user-info,
    .cart-label {
        display: none;
    }

    .user-chip {
        padding: 6px;
        border: 1px solid var(--border);
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .cart-trigger {
        padding: 8px 10px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
    }

    .cart-count {
        position: absolute;
        top: -4px;
        right: -4px;
        border: 2px solid var(--white);
    }

    /* Nav categorias: Mobile Flow */
    .cat-nav-inner {
        padding: 12px 16px;
        gap: 20px;
    }

    .cat-nav-link {
        font-size: 12px;
    }

    /* Hero: Tipografia e Layout */
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 50px 16px 40px;
    }

    .hero-eyebrow {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
        color: rgba(255, 255, 255, 0.7);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 32px;
    }

    .btn-hero-primary,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        gap: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .stat {
        text-align: center;
        padding: 0 10px;
    }

    .stat-num {
        font-size: 19px;
    }

    .stat-div {
        height: 20px;
        align-self: center;
        margin: 0;
    }

    /* CatÃ¡logo e Grid */
    .catalog-section {
        padding: 32px 0;
    }

    .section-header {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .catalog-bar {
        padding: 0 16px;
    }

    .product-grid {
        gap: 10px;
        padding: 0 10px;
    }

    /* Cart drawer full-width */
    .cart-drawer {
        width: 100%;
    }
}

/* ââ 480px: Small Phone ââââââââââââââââââââââââââââââââââââââ */
@media (max-width: 480px) {
    :root {
        --header-h: 62px;
    }

    .header-inner {
        padding: 0 10px;
        gap: 4px;
    }

    .header-logo-img {
        height: 44px;
    }

    .header-search {
        margin: 0;
    }

    .header-search input {
        height: 34px;
        font-size: 11px;
        padding-left: 32px;
    }

    .user-chip {
        width: 34px;
        height: 34px;
    }

    .cart-trigger {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .hero-inner {
        padding: 32px 16px 24px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px 0;
    }

    .stat:last-child {
        grid-column: span 2;
    }

    .stat-div {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 8px;
    }

    .product-name {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
