/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0a0a0a;
    --black-2: #141414;
    --black-3: #1f1f1f;
    --black-4: #2a2a2a;
    --gray-dark: #d8cfc8;
    --gray-mid: #9a9090;
    --gray-light: #f0ebe3;
    --off-white: #faf8f5;
    --white: #ffffff;
    --accent: #c8a96e;
    --accent-dark: #9e7f48;
    --accent-glow: rgba(200, 169, 110, .12);
    --radius-sm: 3px;
    --radius: 6px;
    --radius-lg: 12px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--black-3);
    color: var(--black);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

.skip-link {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translate(-50%, -180%);
    background: var(--accent);
    color: var(--black);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    z-index: 1000;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translate(-50%, 0);
}

/* ── NAV ── */
nav {
    background: linear-gradient(135deg, #0a0a0a 0%, #dfd7d7 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

#logo {
    display: block;
    width: auto;
    height: clamp(38px, 4.5vw, 52px);
    max-width: 100%;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* barra de busca no nav */
.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    max-width: 300px;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.09);
}

.search-product {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 9px 14px;
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
}

.search-product::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

#search-btn {
    background: var(--accent);
    border: none;
    color: var(--black);
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: var(--font-body);
}

#search-btn:hover {
    background: var(--accent-dark);
}
/* select de categoria no nav */
#filtro-categoria {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-family: var(--font-body);
    padding: 9px 12px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

#filtro-categoria:focus {
    border-color: var(--accent);
}

#filtro-categoria option {
    background: #1a1a1a;
    color: var(--white);
}

/* ações do nav */
.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
}

.auth-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 14px;
    font-size: 12px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.auth-nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.auth-logout-nav {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 14px;
    font-size: 12px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.auth-logout-nav:hover {
    border-color: #e05555;
    color: #e05555;
}

.auth-logout-nav.hidden,
.hidden {
    display: none;
}

.nav-icon {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
}

.nav-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: var(--black);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hamburger {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    display: flex;
    padding: 6px;
}

/* ── RESULTADOS DA BUSCA ── */
#resultados {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #111;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#resultados:empty {
    display: none;
}

#resultados p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    grid-column: 1/-1;
    text-align: center;
    padding: 20px 0;
}

#resultados .card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

#resultados .card:hover {
    border-color: var(--accent);
    background: rgba(200, 169, 110, 0.06);
}

#resultados .badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    align-self: flex-start;
}

#resultados .card h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    padding: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#resultados .card p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    padding: 0;
}

#resultados .card strong {
    font-size: 14px;
    color: var(--accent);
    margin-top: 4px;
    font-family: var(--font-display);
}

/* ── HERO ── */
.hero {
    background-image: url('https://pub-535c459f690c48f2b9d94740a7eb8ad6.r2.dev/fundo-banner/fundo-imagem.png');
    background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 68% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 30% 50% at 20% 80%, rgba(200, 169, 110, .04) 0%, transparent 60%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
    opacity: .4;
}

.hero-content {
    max-width: 580px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e3e34971;
    font-weight: 400;
    margin-bottom: 28px;
    display: flex;
    font-weight: 900;
    align-items: center;
    gap: 14px;
 
}

.hero-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.02;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero h1 em {
    font-style: italic;
    color: white;
    font-weight: 800;
}

.hero p {
    color: rgb(250, 250, 250);
    font-size: 15px;
    line-height: 1.80;
    margin-bottom: 44px;
    max-width: 400px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 07px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 0 0 rgba(200, 169, 110, 0);
}
#review-login-btn {
 margin-block:1rem;
 margin-left: 3px;
 color: rgb(44, 41, 41);
}
#review-login-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(200, 169, 110, .25);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, .25);
}

.btn-outline {
    background: transparent;
    color: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    opacity: .8;
    animation: floatCoin 6s ease-in-out infinite;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, .08);
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: -56px;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, .04);
}

@keyframes floatCoin {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 12px));
    }
}

/* ── CARROSSEL ── */
.carrosel {
    margin: 0;
    display: flex;
    width: 100%;
    background: var(--black-2);
    border-top: 1px solid rgba(200, 169, 110, 0.1);
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    overflow-x: hidden;
}

@keyframes spin {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.banner-strip {
    width: max-content;
    display: flex;
    align-items: center;
    animation: spin 12s infinite linear;
}

.banner-item {
    flex: 0 0 auto;
    padding: 0.7rem 2rem;
    white-space: nowrap;
    font-size: 11px;
    align-items: center;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: yellow;
}

.banner-item span {
    font-size: 16px;
    opacity: .7;
}

/* ── SECTIONS ── */
.section {
    padding: 96px 5%;
    background-color: white;
}

.section-dark {
    background: var(--black);
}

.section-mid {
    background: var(--black-2);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    color: var(--black);
    line-height: 1.1;
    text-align: center;
    letter-spacing: -.5px;
}

.section-dark .section-head h2,
.section-mid .section-head h2 {
    color: var(--white);
}

.section-head h2 em {
    font-style: italic;
    color: var(--accent);
}

.section-link {
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid rgba(200, 169, 110, .4);
    padding-bottom: 2px;
    transition: border-color var(--transition), opacity var(--transition);
}

.section-link:hover {
    border-color: var(--accent);
    opacity: .8;
}

/* ── FILTERS ── */
.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .15);
    color: var(--gray-mid);
    padding: 8px 22px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 99px;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    font-weight: 600;
}

/* ── PRODUCT GRID ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-dark .product-card,
.section-mid .product-card {
    background: var(--black-3);
    border-color: rgba(255, 255, 255, .06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .11);
}

.section-dark .product-card:hover,
.section-mid .product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.product-img {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
    background: var(--off-white);
    position: relative;
    transition: background var(--transition);
    overflow: hidden;
    width: 100%;
    padding: 0;
}

.product-img img,
.modal-main-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-thumb img,
.cart-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-dark .product-img,
.section-mid .product-img {
    background: var(--black-2);
}

.product-card:hover .product-img {
    background: #f4f1eb;
}

.section-dark .product-card:hover .product-img,
.section-mid .product-card:hover .product-img {
    background: var(--black-4);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
}

.badge-sale {
    background: var(--black);
    color: var(--white);
}

.badge-new {
    background: var(--accent);
    color: var(--black);
}

.badge-rare {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.wish-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #bbb;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.wish-btn:hover,
.wish-btn.on {
    color: #c0392b;
    border-color: rgba(192, 57, 43, .3);
}

.product-info {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.45;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.9em;
}

.section-dark .product-info h3,
.section-mid .product-info h3 {
    color: var(--white);
}

.product-origin {
    font-size: 11px;
    color: var(--gray-mid);
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 8px 0 16px;
}
.price-now {
    font-size: 1.62rem;
    font-weight: 700;
    color: #111;
    line-height: .95;
    letter-spacing: -.03em;
    font-variant-numeric: lining-nums tabular-nums;
}

.section-dark .price-now,
.section-mid .price-now {
    color: var(--white);
}

.price-old {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
}

.buy-btn,
.add-cart-btn {
    flex: 1;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 4px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.buy-btn {
    background: linear-gradient(135deg, #d6b671, #b7904d);
    color: var(--black);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 18px rgba(200, 169, 110, .20);
}

.buy-btn:hover {
    background: linear-gradient(135deg, #dac27f, #c29d5d);
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(200, 169, 110, .28);
}

.add-cart-btn {
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .04);
    box-shadow: 0 10px 18px rgba(10, 10, 10, .16);
    font-size: 0.64rem;
    letter-spacing: .06em;
    padding: 0 10px;
}

.section-dark .add-cart-btn,
.section-mid .add-cart-btn {
    background: black;
    color: white;
    border-color: transparent;
}

.add-cart-btn:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, .08);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(10, 10, 10, .22);
}

.section-dark .add-cart-btn:hover,
.section-mid .add-cart-btn:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.buy-btn:active,
.add-cart-btn:active {
    transform: translateY(0);
}

.product-actions {
    display: flex;
    gap: 3px;
    margin-top: auto;
    justify-content: center;
}

/* ── FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-item {
    background: var(--black-2);
    padding: 44px 36px;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: height .4s cubic-bezier(.4, 0, .2, 1);
}

.feature-item:hover {
    background: var(--black-3);
}

.feature-item:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 26px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: .3px;
}

.feature-desc {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.75;
}

/* ── CART SIDEBAR ── */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(3px);
}

.cart-overlay.open {
    display: block;
}

.cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 201;
    width: min(420px, 100vw);
    background: var(--black);
    border-left: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cart-header h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 1px;
}

.close-cart {
    background: none;
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--gray-mid);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.close-cart:hover {
    border-color: rgba(255, 255, 255, .35);
    color: var(--white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--gray-mid);
    font-size: 14px;
}

.cart-empty p:first-child {
    font-size: 40px;
    margin-bottom: 14px;
    opacity: .5;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.cart-item-img {
    width: 56px;
    height: 56px;
    background: var(--black-2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 13px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

.cart-item-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    background: rgba(255, 255, 255, .03);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.cart-qty-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cart-item-remove {
    color: rgba(255, 255, 255, .25);
    font-size: 16px;
    transition: color var(--transition);
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #e05555;
}

.cart-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.cart-total-row span:first-child {
    font-size: 11px;
    color: var(--gray-mid);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cart-total-row span:last-child {
    font-size: 24px;
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 300;
}

.checkout-btn {
    width: 100%;
    background: var(--accent);
    color: var(--black);
    padding: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
}

.checkout-btn:hover {
    background: var(--accent-dark);
}

/* ── TOAST ── */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--black-3);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 13px;
    letter-spacing: .3px;
    border: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    white-space: normal;
    max-width: min(92vw, 440px);
    text-align: center;
    z-index: 400;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    border-color: rgba(51, 168, 83, .35);
}

.toast.error {
    border-color: rgba(224, 80, 80, .35);
}

.toast.warning {
    border-color: rgba(243, 156, 18, .35);
}

.toast.info {
    border-color: rgba(200, 169, 110, .35);
}

/* ── SKELETONS ── */
.product-skeleton {
    pointer-events: none;
}

.skeleton-block,
.skeleton-line {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, .06) 25%, rgba(0, 0, 0, .12) 37%, rgba(0, 0, 0, .06) 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

.section-dark .skeleton-block,
.section-dark .skeleton-line,
.section-mid .skeleton-block,
.section-mid .skeleton-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .1) 37%, rgba(255, 255, 255, .05) 63%);
    background-size: 400% 100%;
}

.skeleton-block {
    height: 230px;
}

.skeleton-line {
    height: 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.skeleton-line-lg {
    width: 78%;
}

.skeleton-line-md {
    width: 56%;
}

.skeleton-line-sm {
    width: 34%;
}

.product-empty-state {
    grid-column: 1/-1;
    padding: 28px;
    text-align: center;
}

.product-empty-state-message {
    margin-bottom: 16px;
    color: var(--black);
}

.section-dark .product-empty-state-message,
.section-mid .product-empty-state-message {
    color: var(--white);
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 72px 5% 32px;
}

.footer-brand .nav-logo {
    color: var(--white);
}

.footer-brand .nav-logo span {
    color: var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px;
}

.footer-brand .nav-logo {
    font-size: 26px;
    display: block;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.85;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 11px;
}

.footer-col a {
    font-size: 13px;
    color: var(--gray-mid);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .5px;
}

/* ── MOBILE MENU ── */
/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75%;
    max-width: 320px;
    gap: 36px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
}

.mobile-menu.open {
    display: flex;
    transform: translateX(0);
}

.mobile-menu a {
    color: var(--black-2);
    font-size: 22px;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 3px;
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* ── BOTÃO FECHAR ANIMADO ── */
.close-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--black-2);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1),
        border-color 0.2s,
        color 0.2s;
}

.close-mobile:hover {
    transform: rotate(90deg);
    border-color: var(--accent);
    color: var(--accent);
}

/* overlay escurece o fundo */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 149;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.open {
    display: block;
    opacity: 1;
}
/* ANIMAÇÃO DO ZAP */
/* .zap-logo img {
    border-radius: 50%;
    outline: 2px solid rgba(37, 211, 102, 0.5);
    outline-offset: 2px;
    animation: zapRing 3s ease-in-out infinite;
    transition: outline 0.4s ease;
}

.zap-logo:hover img {
    outline: 2px solid rgba(37, 211, 102, 0.8);
    outline-offset: 2px;
}

@keyframes zapRing {

    0%,
    100% {
        outline-offset: 2px;
        opacity: 0.6;
    }

    50% {
        outline-offset: 4px;
        opacity: 0;
    }
} */
/* ── ZAP ── */
.zap-logo {
    position: fixed;
    bottom: 2px;
     width:70px;
     height:80px;
    right: -9px;
    z-index: 999;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* ── MODAL ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 400;
    margin-inline: auto;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.modal-overlay.visible {
    display: flex;
    opacity: 1;
    width: 100%;
}

.modal-box {
    background: #fdfcfa;
    border-radius: 20px;
    width: 100%;
    max-width: 840px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 100px rgba(0, 0, 0, .3);
    position: relative;
    transform: scale(.96) translateY(16px);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.modal-overlay.visible .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #1a1a1a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 10;
    cursor: pointer;
}

.modal-close:hover {
    background: #f0ebe0;
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
}

.modal-left {
    background: linear-gradient(145deg, #f8f6f2, #f0ece3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 1rem;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, .06);
    border-radius: 20px 1px 1px 20px;
}

.modal-main-img {
    font-size: 6.5rem;
    transition: opacity .2s, transform .25s cubic-bezier(.4, 0, .2, 1);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .12));
}

.modal-main-img.switching {
    opacity: 0;
    transform: scale(.88);
}

.modal-thumbs {
    display: flex;
    gap: .5rem;
    margin-top: 1.4rem;
}

.modal-thumb {
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1.5px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .2s;
}

.modal-thumb:hover,
.modal-thumb.active {
    border-color: var(--accent);
    background: #fdf6e8;
    transform: scale(1.06);
}

.modal-right {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .1rem;
}

#modal-badges {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.modal-badge-mat {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .8rem;
    border-radius: 99px;
    font-weight: 600;
    font-family: var(--font-body);
}

.modal-badge-mat.ouro {
    background: #fdf6e3;
    color: #9e7f2c;
}

.modal-badge-mat.prata {
    background: #f2f2f2;
    color: #5a5a5a;
}

.modal-badge-mat.bronze {
    background: #fdf0e4;
    color: #8b5e3c;
}

.modal-badge-mat.colecao {
    background: #eae4f2;
    color: #5b3e7d;
}

#modal-name {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: .3rem;
    line-height: 1.15;
    letter-spacing: -.3px;
}

#modal-origin {
    font-size: .8rem;
    color: var(--gray-mid);
    margin-bottom: .9rem;
    letter-spacing: .8px;
    text-transform: uppercase;
}

#modal-desc {
    white-space: pre-line;
    font-size: 1rem;
    color: #181818;
    line-height: 1;
    margin-bottom: 1.4rem;
}

.modal-price {
    margin-bottom: .5rem;
}

.modal-price-old {
    font-size: .82rem;
    text-decoration: line-through;
    color: #bbb;
    margin-right: .4rem;
}

.modal-price-now {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
    font-family: sans-serif;
}
/* ANIMAÇÃO DO LOGO ZAP */
.zap-logo {
    animation: zapFloat 2s ease-in-out infinite;
}

@keyframes zapFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}
.modal-qty {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 1rem 0;
}

.modal-qty button {
    background: #f8f6f2;
    border: 1.5px solid rgba(0, 0, 0, .1);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    color: #1a1a1a;
}

.modal-qty button:hover {
    background: #f0ebe0;
    border-color: var(--accent);
}

.modal-qty span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 40px;
    border: 1.5px solid rgba(0, 0, 0, .1);
    border-radius: var(--radius);
    background: #f8f6f2;
    font-family: var(--font-display);
    font-size: 1.1rem;
    user-select: none;
}

.modal-total {
    font-size: .85rem;
    color: var(--gray-mid);
    margin-bottom: 1.2rem;
    letter-spacing: .3px;
}

.modal-total strong {
    color: #1a1a1a;
    font-size: 1.05rem;
    /* font-family: var(--font-display); */
}
.span-descricao {
    font-weight: 500;
        font-size: 1.15rem;
        text-shadow: 0 1px 2px rgba(97, 96, 96, 0.058);
        display: inline-block;
        padding-bottom: 4px;
        color: #000000c4;
}
/* PAGINAÇÃO */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.pagination button {
    padding: 0.65rem 1.6rem;
    border: 1.5px solid #c8a96e;
    background: #1a1a1a;
    color: #e8c98a;
    cursor: pointer;
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}
.pagination button:hover:not(:disabled) {
    background: #c8a96e;
    color: #0a0a0a;
    box-shadow: 0 4px 14px rgba(200, 169, 110, 0.5);
    transform: translateY(-1px);
}
.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.pagination span {
    color: #aaa;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.top-comentarios {
    overflow: hidden;
}

.container-comentarios {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-comentarios 40s linear infinite;
}

.container-comentarios:hover {
    animation-play-state: paused;
}

.container-comentarios .cliente-avaliacao {
    flex: 0 0 280px;
}

@keyframes scroll-comentarios {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
    /* ===== SELOS DO MODAL (PRODUTO) ===== */
    .selos-produto {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 360px;
    }

    .selo-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border: 1px solid rgba(200, 169, 110, 0.2);
      border-radius: 8px;
      background: rgba(200, 169, 110, 0.04);
      transition: border-color 0.2s;
    }

    .selo-item:hover {
      border-color: rgba(200, 169, 110, 0.45);
    }

    .selo-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
    }

    .selo-text {
      display: flex;
      flex-direction: column;
    }

    .selo-title {
      color: #c8a96e;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .selo-desc {
      color: #888;
      font-size: 11px;
      margin-top: 1px;
    }

    /* ===== SELOS DO RODAPÉ ===== */
    .selos-footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 24px 0;
      border-top: 1px solid #1e1e1e;
      border-bottom: 1px solid #1e1e1e;
      width: 100%;
      max-width: 700px;
    }

    .selo-pagamento {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .selo-pagamento svg {
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .selo-pagamento:hover svg {
      opacity: 1;
    }

    .selo-pagamento span {
      color: #555;
      font-size: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .divider {
      width: 1px;
      height: 40px;
      background: #1e1e1e;
      align-self: center;
    }

/* ─── PREÇO PROMOCIONAL ─── */

.price-de,
.modal-price-de {
    font-size: 14px;
    color: #8a1111;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-size:200;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-now,
.modal-price-now {
    font-size: 22px;
    font-weight: 700;
}

.price-pix,
.modal-price-pix {
    font-size: 13px;
    font-weight: 600;
    color: #00a650;
}
.product-price {
    display: flex !important;
    flex-direction: column !important;
    gap: 0;
    margin: 8px 0 16px;
}

.price-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
/* Empilha preço e desconto Pix em telas estreitas */
@media (max-width: 480px) {
  .price-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px;
  }
}

/* ===== SELOS DE COMPRA SEGURA (FOOTER) ===== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    margin-bottom: 2rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #c8a96e;
    letter-spacing: 0.03em;
}
.trust-badge span {
    color: #ddd;
}

/* ===== SELO DE FORMAS DE PAGAMENTO (FOOTER) ===== */
.payment-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem 1.5rem;
    margin-bottom: 1rem;
}
.payment-badges img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.payment-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #c8a96e;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* COMENTÁRIOS PESSOAS */
.comentarios h3{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    font-weight: 200;
    font-size: 2rem;
    margin-left:1rem;
}
.container-comentarios .cliente-avaliacao {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

/* Barra de rolagem discreta */
.container-comentarios::-webkit-scrollbar {
    height: 6px;
}

.container-comentarios::-webkit-scrollbar-thumb {
    background: #c9a961;
    border-radius: 3px;
}
.coments {
    width: 100%;
    background: #f8f6f2a6;
    border-block: 1px solid rgba(76, 73, 73, 0.376);
    align-items: center;
    border-radius: 8px;
    padding-inline: 12px;
}
.profile {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-direction: column;
    padding-block: -3px;
    margin-top: 1px;
}
.profile .classificacao {
    display: flex;
    align-items: center;
    gap: 1px;
    
}
.profile .nome {
    color: #1a1a1a;
    font-weight: 200;
}
.profile span{
   padding-block:-3px;
   margin-block:-3px;
}
.opnioes-produto {
    margin-block:1rem;
 }
 .opnioes-produto h3 {
    font-size: 1.2rem;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
 }
 .face-cliente {
    display: flex;
    justify-content: center;
    align-items: center;
 }
.face-cliente img {
    width: 100px;
    border: 1px solid rgba(76, 73, 73, 0.376);
    border-radius: 10px;
    object-fit: cover;
}
.nome-cliente {
    display:flex;
    align-items: flex-start;
    flex-direction: column;
    align-items: center;
}
.nome-cliente span {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1a1a1a;
}
.comentario-cliente {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
}
.clintes {
    display: flex;
    flex-direction: column;
    padding-block: 9px;
    margin-left: 12px;
    margin-bottom: 10px;
    border-block: 2px solid rgba(76, 73, 73, 0.097);
}

/* ===== Avaliações — adicionar ao final do style.css ===== */

.reviews-empty,
.reviews-loading {
    color: #777;
    font-size: 0.95rem;
    padding: 8px 0;
}

.review-form-box {
    margin-top: 24px;
    padding-top: 16px;
    border-radius: 15px;
    border: 1px solid rgb(125, 117, 117);
}
#review-comentario {
    max-height: 2.5rem;
}
.review-form-row {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-form-row label {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-form-row input[type="text"],
.review-form-row input[type="email"],
.review-form-row textarea {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
}

.review-form-hint {
    font-size: 0.78rem;
    color: #999;
}

.review-stars-input {
    display: flex;
    gap: 4px;
}

.review-star {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: #ccc;
    cursor: pointer;
    padding: 2px;
    transition: color 0.15s ease;
}

.review-star.active,
.review-star:hover {
    color: #0a0a0a;
}

.review-form-msg {
    min-height: 1.2em;
    font-size: 0.85rem;
    color: #c0392b;
    margin-top: 6px;
}

/* CONFIGURAÇÕES COMENTARIOS PRINCIPAIS */
.top-comentarios {
width: 100%;
    margin-top: 1rem;
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: #d6cccc3d;}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
}

.section-head h2 em {
    font-style: italic;
    color: #b8860b;
}

.container-comentarios {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 12px 1.5rem;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

.cliente-avaliacao {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 380px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.cliente-avaliacao:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.foto img {
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.avaliacao-conteudo {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.estrelas {
    color: #d4a017;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.avaliacao-conteudo h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.avaliacao-conteudo p {
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #5a5a5a;
}

comentarios h3 {
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0;
}

.coments {
    background: #fdfbf7;
    border: 1px solid #e5ddc8;
    border-radius: 14px;
    padding: 20px;
    margin-top: 12px;
}

.opnioes-produto h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e5ddc8;
}

/* Estado vazio: "Ainda não há avaliações" */
.reviews-empty {
    text-align: center;
    color: #8a8478;
    font-style: italic;
    padding: 24px 12px;
}

/* Card de cada avaliação existente */
.face-cliente {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #efe9db;
}

.face-cliente:last-child {
    border-bottom: none;
}

.face-cliente img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #c9a961;
    flex-shrink: 0;
}

.nome-cliente {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile .classificacao {
    color: #c9a961;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.profile .nome {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.comentario-cliente p {
    color: #4a4a4a;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ─── Aviso de login (destaque) ─────────────────────────── */
.review-login-notice {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #2b2620);
    border-radius: 12px;
    padding: 24px 20px;
    margin-top: 18px;
}

.review-login-notice p {
    color: #f0e9d8;
    font-size: 0.95rem;
    margin: 0 0 16px;
}

.review-login-notice .btn-primary {
    background: #c9a961;
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.review-login-notice .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.35);
}

/* ─── Formulário de nova avaliação ──────────────────────── */
.review-form-box {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e5ddc8;
}

.review-form-box h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 14px;
}

.review-form-row {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-form-row label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #4a4a4a;
}

.review-form-row textarea {
    padding: 10px 12px;
    border: 1px solid #d9d0ba;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
}

.review-form-row textarea:focus {
    outline: none;
    border-color: #c9a961;
}

.review-stars-input {
    display: flex;
    gap: 6px;
}

.review-star {
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #ddd3ba;
    cursor: pointer;
    padding: 2px;
    transition: color 0.15s ease, transform 0.1s ease;
}

.review-star.active,
.review-star:hover {
    color: #c9a961;
    transform: scale(1.1);
}

#review-submit {
    background: #1a1a1a;
    color: #f0e9d8;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

#review-submit:hover {
    background: #333;
}

.review-form-msg {
    min-height: 1.2em;
    font-size: 0.85rem;
    color: #c0392b;
    margin-top: 8px;
}