/* =============================================================
   Domozi — Design System
   Tipografia: Outfit | Paleta: Black #1E1E1A · Warm White #F7F2E8 · Clay #C86F50
   ============================================================= */

/* ---- Variáveis ---- */
:root {
    --brand-clay:     #C86F50;
    --brand-clay-dk:  #B5633F;
    --brand-clay-lt:  #D4804D;
    --warm-white:     #F7F2E8;
    --brand-gray-product: #EDE8E0;
    --brand-dark:     #1E1E1A;
    --brand-mid:      rgba(30,30,26,0.52);
    --brand-light:    #F0EBE1;
    --brand-border:   rgba(30,30,26,0.08);
    --brand-cta:      #1E9455;
    --brand-cta-dk:   #187845;
    --transition:     .25s ease;
    --font-sans:      'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --container-max:  1280px;
    --radius-pill:    999px;
}

/* ---- Reset / Base ---- */
*,
*::before,
*::after { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--brand-dark);
    background: #f8f8f8;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a { transition: color var(--transition); text-decoration: none; color: inherit; }
a:hover { color: var(--brand-clay); }

/* =============================================================
   NAVBAR
   ============================================================= */
/* =============================================================
   TOPBAR — Barra superior promo/info
   ============================================================= */
.shipping-topbar {
    width: 100%;
    background: var(--warm-white);
    border-bottom: 1px solid var(--brand-border);
    color: var(--brand-dark);
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
}
.shipping-topbar span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
}
@media (max-width: 576px) {
    .shipping-topbar {
        padding: 8px 10px;
        font-size: 10px;
        letter-spacing: .04em;
        line-height: 1.4;
    }
}

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    border-bottom: 1px solid var(--brand-border);
    padding: 0;
}

.site-navbar__inner {
    display: flex;
    align-items: center;
    height: 80px;
    gap: 0;
}

/* Busca esquerda (desktop) */
.site-navbar__left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.site-navbar__search-form {
    display: flex;
    align-items: center;
    width: 300px;
    height: 42px;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-pill);
    overflow: hidden;
    background: #fff;
    transition: border-color var(--transition);
}
.site-navbar__search-form:focus-within {
    border-color: var(--brand-clay);
}
.site-navbar__search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 13px;
    font-family: var(--font-sans);
    color: var(--brand-dark);
    background: transparent;
}
.site-navbar__search-input::placeholder {
    color: #bbb;
}
.site-navbar__search-btn {
    background: none;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    color: var(--brand-mid);
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
.site-navbar__search-btn:hover { color: var(--brand-clay); }

.site-navbar__link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    white-space: nowrap;
    padding: 4px 0;
    border-bottom: 1.5px solid transparent;
    transition: border-color var(--transition), color var(--transition);
}
.site-navbar__link:hover,
.site-navbar__link.active {
    color: var(--brand-clay);
    border-bottom-color: var(--brand-clay);
}

/* Logo central */
.site-navbar__brand {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--brand-dark);
    text-transform: uppercase;
    white-space: nowrap;
}
.site-navbar__brand:hover { color: var(--brand-dark); }
.site-navbar__logo {
    height: 36px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Ações direita */
.site-navbar__right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    justify-content: flex-end;
}

.site-navbar__icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color var(--transition);
}
.site-navbar__icon i { font-size: 18px; }
.site-navbar__icon:hover { color: var(--brand-clay); }

/* Badge carrinho */
.cart-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--brand-clay);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    margin-left: 3px;
}
/* No mobile: badge flutua sobre o ícone da sacola */
@media (max-width: 991px) {
    .site-navbar__right { gap: 10px; }
    .site-navbar__icon { position: relative; }
    .cart-badge-pill {
        position: absolute;
        top: -6px;
        right: -6px;
        margin-left: 0;
        border: 2px solid #fff;
        width: 17px;
        height: 17px;
    }
}

/* Dropdown usuário */
.site-navbar .dropdown-menu {
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    min-width: 200px;
    padding: 8px 0;
}
.site-navbar .dropdown-item {
    font-size: 13px;
    letter-spacing: .02em;
    padding: 10px 18px;
    color: var(--brand-dark);
}
.site-navbar .dropdown-item:hover { background: var(--brand-light); color: var(--brand-clay); }

/* ============= MAIN NAV MENU ============= */
.wine-nav {
    background: var(--brand-clay);
    width: 100%;
}
.wine-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: 44px;
}
.wine-nav__link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition), opacity var(--transition);
}
.wine-nav__link:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.7);
    opacity: .85;
}
.wine-nav__link .bi { font-size: 10px; margin-left: 3px; }
@media (max-width: 991px) {
    .wine-nav { display: none; }
}

/* Painel de busca */
.search-panel {
    display: none;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0 14px;
    box-shadow: 0 6px 20px rgba(30,30,26,.07);
}
.search-panel.open { display: block; }
.search-panel .container { display: flex; align-items: center; gap: 10px; }
.search-panel__input {
    flex: 1;
    border: 1.5px solid var(--brand-border);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-family: var(--font-sans);
    padding: 10px 18px;
    width: 100%;
    outline: none;
    background: #f9f9f9;
    transition: border-color var(--transition), background var(--transition);
}
.search-panel__input:focus { border-color: var(--brand-clay); background: #fff; }

/* ---- Hamburguer animado ---- */
.navbar-toggler-minimal {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
    height: 22px;
}
.hamburger__bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--brand-dark);
    border-radius: 1px;
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                opacity .2s,
                width .3s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}
/* Terceira barra ligeiramente mais curta no estado normal */
.hamburger__bar:nth-child(3) { width: 70%; }
/* Estado aberto → vira X */
.hamburger.open .hamburger__bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open .hamburger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open .hamburger__bar:nth-child(3) {
    width: 100%;
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Overlay do menu mobile ---- */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1999;
    opacity: 0;
    transition: opacity .3s;
}
.mobile-menu-overlay.open {
    display: block;
    opacity: 1;
}

/* ---- Drawer lateral (esquerda) ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 88vw);
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 32px rgba(0,0,0,.10);
}
.mobile-menu.open { transform: translateX(0); }

/* Header do drawer */
.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0;
}
.mobile-menu__logo {
    height: 18px;
    width: auto;
    display: block;
}
.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

/* Área de navegação */
.mobile-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0;
}
.mobile-menu__link {
    display: block;
    padding: 13px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
                opacity .25s, transform .25s;
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-menu__link:hover { background: var(--brand-light); }
/* Stagger de entrada */
.mobile-menu.open .mobile-menu__link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 60ms; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 90ms; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 120ms; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 150ms; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 180ms; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 210ms; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 240ms; }
.mobile-menu.open .mobile-menu__link:nth-child(8) { transition-delay: 270ms; }

/* Rodapé do drawer (conta) */
.mobile-menu__foot {
    border-top: 1px solid #f3f4f6;
    padding: 14px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}
.mobile-menu__foot-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    transition: color var(--transition);
}
.mobile-menu__foot-link i { font-size: 15px; }
.mobile-menu__foot-link:hover { color: var(--brand-mid); }
.mobile-menu__foot-link--muted { color: var(--brand-mid); font-size: 12px; }
.mobile-menu__foot-link--muted:hover { color: var(--brand-dark); }
/* Botão "Entrar" como CTA */
.mobile-menu__foot-cta {
    display: block;
    text-align: center;
    padding: 11px;
    margin-bottom: 6px;
    background: var(--brand-dark);
    color: var(--warm-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: background var(--transition);
}
.mobile-menu__foot-cta:hover { background: var(--brand-clay); color: #fff; }

/* ---- Wrapper esquerdo mobile ---- */
.site-navbar__mobile-left {
    flex: 1;
    align-items: center;
    gap: 18px;
}

@media (max-width: 991px) {
    .site-navbar__left  { display: none; }
    .site-navbar__brand { text-align: center; }
}

/* =============================================================
   CONTEÚDO PRINCIPAL
   ============================================================= */
main { padding-top: 40px; padding-bottom: 60px; }
main.main-home { padding-top: 0; padding-bottom: 0; }

/* =============================================================
   SEÇÃO: COLEÇÃO EM DESTAQUE / GRID
   ============================================================= */
.collection-section {
    padding: 50px 0 60px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-clay);
    margin-bottom: 10px;
    display: block;
}

/* Section titles — Domozi */
.home-section-title {
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
    letter-spacing: .01em;
}
.home-section-subtitle {
    text-align: center;
    font-size: 14px;
    color: rgba(30,30,26,0.60);
    margin-bottom: 36px;
    font-weight: 400;
}
.home-section-divider {
    width: 36px;
    height: 2px;
    background: var(--brand-clay);
    margin: 0 auto 36px;
    border: none;
}

/* =============================================================
   CARDS DE PRODUTO — Estilo Boutique Premium
   ============================================================= */
.product-card {
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(30,30,26,0.06);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: 0 6px 28px rgba(30,30,26,0.09); transform: translateY(-2px); }
.product-card:hover .product-card__img { transform: scale(1.04); }

.product-card__img-wrap {
    overflow: hidden;
    background: var(--brand-gray-product);
    position: relative;
}

.product-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

/* Badges sobre imagem */
.product-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--brand-clay);
    color: #F7F2E8;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    line-height: 1.5;
    z-index: 2;
}
.product-card__badge--sale {
    background: var(--brand-clay);
}

/* Botão rápido (hover) */
.product-card__actions {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateY(0); }
.product-card__quick-btn {
    display: block;
    width: 100%;
    background: var(--brand-dark);
    border: none;
    color: var(--warm-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: none;
    padding: 10px;
    text-align: center;
    transition: background var(--transition);
    border-radius: var(--radius-pill);
}
.product-card__quick-btn:hover {
    background: var(--brand-clay);
    color: #fff;
}

/* Info textual */
.product-card__body { padding: 14px 16px 16px; text-align: left; }
.product-card__category {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-mid);
    margin-bottom: 4px;
    display: block;
}
.product-card__name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--brand-dark);
    line-height: 1.35;
    margin-bottom: 7px;
    display: block;
}
.product-card__name:hover { color: var(--brand-clay); }

.product-card__price {
    font-size: 15px;
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 14px;
}
.product-card__price-original {
    text-decoration: line-through;
    color: var(--brand-mid);
    margin-right: 6px;
    font-size: 12px;
    font-weight: 400;
}
.product-card__price-promo { color: var(--brand-dark); font-weight: 700; }

/* Botão comprar no card */
.product-card__buy-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--brand-cta);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: none;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition);
    text-decoration: none;
}
.product-card__buy-btn:hover { background: var(--brand-cta-dk); color: #fff; }

/* =============================================================
   BANNER HERO — Swiper Carousel
   ============================================================= */
.hero-swiper-wrap {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}
.hero-swiper-wrap .swiper-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 560px;
    max-height: 760px;
}
/* Nav arrows */
.hero-swiper-wrap .swiper-button-next,
.hero-swiper-wrap .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.88);
    border-radius: 50%;
    color: var(--brand-dark);
    box-shadow: 0 2px 10px rgba(30,30,26,.10);
    transition: background var(--transition), transform var(--transition);
}
.hero-swiper-wrap .swiper-button-next:hover,
.hero-swiper-wrap .swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.08);
}
.hero-swiper-wrap .swiper-button-next::after,
.hero-swiper-wrap .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}
/* Dots */
.hero-swiper-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.5);
    opacity: 1;
    transition: background var(--transition), transform var(--transition);
}
.hero-swiper-wrap .swiper-pagination-bullet-active {
    background: var(--brand-clay);
    transform: scale(1.2);
}
@media (max-width: 767px) {
    .hero-swiper-wrap {
        margin: 0 12px;
        width: calc(100% - 24px);
        border-radius: 0 0 12px 12px;
    }
    .hero-swiper-wrap .swiper-slide img {
        min-height: unset;
        aspect-ratio: 4 / 5;
    }
    .hero-swiper-wrap .swiper-button-next,
    .hero-swiper-wrap .swiper-button-prev { width: 34px; height: 34px; }
    .hero-swiper-wrap .swiper-button-next::after,
    .hero-swiper-wrap .swiper-button-prev::after { font-size: 13px; }
}

/* =============================================================
   HOMEPAGE — Benefícios
   ============================================================= */
.benefits-strip {
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}
.benefits-strip__inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 250px;
}
@media (max-width: 600px) {
    .benefits-strip__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    .benefit-item { max-width: none; }
}
.benefit-item__icon {
    font-size: 26px;
    color: var(--brand-clay);
    flex-shrink: 0;
    margin-top: 2px;
}
.benefit-item__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 2px;
}
.benefit-item__text {
    font-size: 12px;
    color: var(--brand-mid);
    line-height: 1.5;
    margin: 0;
}

/* =============================================================
   HOMEPAGE — Categorias Circulares
   ============================================================= */
.categories-section {
    padding: 50px 0;
    text-align: center;
}
.categories-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--transition);
}
.category-circle:hover { transform: translateY(-4px); }
.category-circle__img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--brand-clay);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--brand-clay);
}
.category-circle__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-circle__img i {
    font-size: 36px;
    color: #fff;
}
.category-circle__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* =============================================================
   HOMEPAGE — Vitrines / Carrosséis
   ============================================================= */
.product-carousel {
    padding: 50px 0;
}
.product-carousel__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991px) {
    .product-carousel__track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .product-carousel__track { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.carousel-dots__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30,30,26,0.18);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.carousel-dots__dot.active { background: var(--brand-clay); }

/* Botão outline "ver mais" */
.btn-outline-wine {
    display: inline-block;
    padding: 11px 32px;
    border: 1.5px solid var(--brand-dark);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: none;
    border-radius: var(--radius-pill);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-outline-wine:hover {
    background: var(--brand-dark);
    color: var(--warm-white);
}

/* =============================================================
   HOMEPAGE — Depoimentos
   ============================================================= */
.testimonials-section {
    padding: 60px 0 0;
    background: var(--warm-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(30,30,26,0.06);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}
.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-gray-product);
    color: var(--brand-dark);
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.testimonial-card__stars {
    color: var(--brand-clay);
    font-size: 14px;
    margin-bottom: 12px;
}
.testimonial-card__text {
    font-size: 13px;
    color: rgba(30,30,26,0.70);
    line-height: 1.65;
    margin-bottom: 12px;
}
.testimonial-card__name {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-dark);
}
@media (max-width: 991px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   HOMEPAGE — Newsletter
   ============================================================= */
.newsletter-section {
    padding: 36px 0 48px;
    background: var(--warm-white);
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.newsletter-inner p {
    font-size: 14px;
    color: var(--brand-dark);
    font-weight: 500;
    margin: 0;
}
.newsletter-input {
    flex: 1;
    min-width: 200px;
    height: 42px;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-pill);
    padding: 0 18px;
    font-size: 13px;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--brand-clay); }
.newsletter-btn {
    height: 42px;
    padding: 0 28px;
    background: var(--brand-clay);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background var(--transition);
}
.newsletter-btn:hover { background: var(--brand-clay-lt); }

/* =============================================================
   HOMEPAGE — Instagram Strip
   ============================================================= */
.instagram-strip {
    background: var(--brand-dark);
    padding: 40px 0;
}
.instagram-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.instagram-strip__label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.instagram-strip__label i { font-size: 32px; }
.instagram-strip__label span { font-size: 16px; font-weight: 600; }
.instagram-strip__images {
    display: flex;
    gap: 14px;
}
.instagram-strip__img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    opacity: .9;
    transition: opacity var(--transition);
}
.instagram-strip__img:hover { opacity: 1; }
@media (max-width: 767px) {
    .instagram-strip__images { gap: 8px; }
    .instagram-strip__img { width: 80px; height: 80px; }
}

/* =============================================================
   PAGINAÇÃO
   ============================================================= */
.pagination-minimal {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}
.pagination-minimal__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-dark);
    border: 1px solid var(--brand-border);
    background: #fff;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}
.pagination-minimal__item:hover { background: var(--brand-light); color: var(--brand-clay); }
.pagination-minimal__item.active {
    background: var(--brand-clay);
    color: #fff;
    border-color: var(--brand-clay);
}

/* =============================================================
   AUTENTICAÇÃO — Login & Cadastro
   ============================================================= */

.auth-wrap {
    max-width: 420px;
    margin: 20px auto 60px;
    text-align: center;
}

.auth-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 13px;
    color: #e8621a;
    letter-spacing: .02em;
    margin-bottom: 28px;
}

.auth-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 2px;
    padding: 10px 14px;
    margin-bottom: 20px;
    text-align: left;
}
.auth-errors p {
    font-size: 12px;
    color: #dc2626;
    margin: 0;
    line-height: 1.8;
}

.auth-form { text-align: left; }

.auth-field {
    position: relative;
    margin-bottom: 10px;
}

.auth-input {
    display: block;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 22px 16px 8px;
    font-size: 13px;
    color: var(--brand-dark);
    background: #fff;
    outline: none;
    transition: border-color var(--transition);
    font-family: var(--font-sans);
    line-height: 1.4;
}
.auth-input:focus { border-color: var(--brand-dark); }
.auth-input:disabled {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    -webkit-text-fill-color: #9ca3af; /* overrides Chrome autofill color */
}
.auth-input:disabled + .auth-label {
    color: #9ca3af;
}

/* Espaço extra à direita quando tem link "Esqueceu a senha?" */
.auth-field:has(.auth-field__link) .auth-input { padding-right: 130px; }

/* ---- Floating label ---- */
.auth-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #9ca3af;
    pointer-events: none;
    transition: top .18s ease, font-size .18s ease, color .18s ease, transform .18s ease;
    line-height: 1;
    background: transparent;
}

/* Sobe quando focado OU quando tem conteúdo */
.auth-input:focus   + .auth-label,
.auth-input:not(:placeholder-shown) + .auth-label {
    top: 10px;
    transform: none;
    font-size: 10px;
    letter-spacing: .06em;
    color: var(--brand-mid);
}
.auth-input:focus + .auth-label { color: var(--brand-dark); }

.auth-field__link {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--brand-mid);
    white-space: nowrap;
    transition: color var(--transition);
}
.auth-field__link:hover { color: var(--brand-dark); }

.auth-btn {
    display: block;
    width: 100%;
    background: var(--brand-dark);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    margin-top: 6px;
    transition: background var(--transition);
    font-family: var(--font-sans);
}
.auth-btn:hover { background: #333; }

.auth-footer {
    font-size: 12px;
    color: var(--brand-mid);
    margin-top: 20px;
    letter-spacing: .02em;
}
.auth-footer a {
    color: var(--brand-dark);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.auth-footer a:hover { color: var(--brand-mid); }

/* =============================================================
   PÁGINA DE CATEGORIA
   ============================================================= */

.cat-header {
    margin-bottom: 28px;
}
.cat-header .pd-breadcrumb {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    margin: 0;
}

.cat-title {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin: 10px 0 0;
    line-height: 1.1;
}

/* Barra de filtro */
.cat-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cat-count {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-mid);
}

.cat-sort-form {
    position: relative;
    display: flex;
    align-items: center;
}

.cat-sort-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--brand-dark);
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-dark);
    padding: 4px 24px 4px 0;
    cursor: pointer;
    outline: none;
}

.cat-sort-arrow {
    position: absolute;
    right: 2px;
    font-size: 11px;
    color: var(--brand-dark);
    pointer-events: none;
}

.cat-divider {
    border-color: #e5e7eb;
    margin: 0 0 28px;
}

/* Estado vazio */
.cat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 80px 0;
    text-align: center;
}
.cat-empty i {
    font-size: 40px;
    color: #d1d5db;
}
.cat-empty p {
    font-size: 13px;
    color: var(--brand-mid);
    letter-spacing: .04em;
    margin: 0;
}
.cat-empty a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    border-bottom: 1.5px solid var(--brand-dark);
    padding-bottom: 1px;
}

/* =============================================================
   FOOTER — Domozi Black
   ============================================================= */
.site-footer {
    background: var(--brand-dark);
    color: var(--warm-white);
    overflow-x: hidden;
    padding: 56px 0 32px;
    margin-top: 0;
}
.site-footer__brand {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    color: var(--warm-white);
}
.site-footer__logo { height: 36px; width: auto; margin-bottom: 12px; display: block; filter: brightness(0) invert(1); }
.site-footer__text { font-size: 12px; color: rgba(247,242,232,.65); line-height: 1.7; }
.site-footer__heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--warm-white);
    margin-bottom: 16px;
    display: block;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: 10px; }
.site-footer__list a { font-size: 12px; color: rgba(247,242,232,.60); transition: color var(--transition); }
.site-footer__list a:hover { color: var(--brand-clay); }
.site-footer__divider { border-color: rgba(247,242,232,.12); margin: 32px 0 20px; }
.site-footer__copy { font-size: 11px; color: rgba(247,242,232,.42); text-align: center; }

/* Bandeiras de pagamento no footer */
.list-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-payment__item {
    display: flex;
    align-items: center;
}
.list-payment__item svg {
    display: block;
    border-radius: 3px;
    opacity: .85;
    transition: opacity var(--transition);
}
.list-payment__item svg:hover { opacity: 1; }

/* =============================================================
   PÁGINA DE PRODUTO — Layout completo
   ============================================================= */

/* Wrapper principal: galeria + info lado a lado */
.pd-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 72px;
}

/* ---- Galeria ---- */
.pd-gallery {
    display: flex;
    gap: 12px;
    position: sticky;
    top: 80px;
}

/* Thumbnails verticais */
.pd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 72px;
    flex-shrink: 0;
}
.pd-thumb {
    width: 72px;
    height: 88px;
    border: 1.5px solid rgba(30,30,26,0.10);
    border-radius: 8px;
    background: var(--brand-gray-product);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: border-color var(--transition);
    flex-shrink: 0;
}
.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pd-thumb:hover   { border-color: rgba(30,30,26,0.40); }
.pd-thumb.is-active { border-color: var(--brand-dark); }

/* Imagem principal */
.pd-main-img-wrap {
    flex: 1;
    background: var(--brand-gray-product);
    border-radius: 12px;
    overflow: hidden;
}
.pd-main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.pd-main-img-wrap:hover .pd-main-img { transform: scale(1.03); }

/* ---- Info ---- */
.pd-info { padding-top: 4px; }

/* Reset para breadcrumb dentro do produto (sobrescreve a versão da página de pedido) */
.pd-info .pd-breadcrumb {
    padding: 0;
    margin: 0 0 20px;
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--brand-mid);
    margin-bottom: 16px;
}
.pd-breadcrumb a { color: var(--brand-mid); }
.pd-breadcrumb a:hover { color: var(--brand-dark); }
.pd-breadcrumb span:not(:last-child) { color: #d1d5db; }

.pd-brand {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand-mid);
    margin-bottom: 6px;
}

.pd-name {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.pd-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
}

.pd-price-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-price-original {
    font-size: 13px;
    color: var(--brand-mid);
    text-decoration: line-through;
}

.pd-price-badge {
    display: inline-flex;
    align-items: center;
    background: var(--brand-clay);
    color: #F7F2E8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.pd-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -.01em;
    line-height: 1.1;
    padding-top: 5px;
}

.pd-review-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -4px 0 14px;
    font-size: 13px;
}

.pd-review-summary__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

.pd-review-summary__score {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
}

.pd-review-summary__sep {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1;
}

.pd-review-summary__count {
    font-size: 12px;
    color: var(--brand-mid);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.pd-review-summary__count:hover { border-bottom-color: var(--brand-mid); }

.pd-review-summary__empty {
    font-size: 12px;
    color: var(--brand-mid);
}

.pd-live-viewers {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--brand-mid);
}

.pd-live-viewers .bi { font-size: 13px; }

.pd-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pd-pulse 2s ease-in-out infinite;
}

@keyframes pd-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.8); }
}

/* ---- Barra sticky ---- */
/* Desktop: flutuante, centralizado */
.pd-sticky-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    z-index: 900;
    background: #fff;
    border: 1px solid rgba(30,30,26,0.08);
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(30,30,26,.12);
    padding: 10px 14px 10px 10px;
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
    width: 800px;
    max-width: calc(100vw - 32px);
}

.pd-sticky-bar.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.pd-sticky-bar__inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pd-sticky-bar__img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.pd-sticky-bar__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.pd-sticky-bar__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-sticky-bar__price {
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-mid);
    white-space: nowrap;
}

.pd-sticky-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    height: 40px;
    background: var(--brand-cta);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
}

.pd-sticky-bar__btn:hover:not(:disabled) { background: var(--brand-cta-dk); }
.pd-sticky-bar__btn:disabled { opacity: .6; cursor: default; }
.pd-sticky-bar__btn .bi { font-size: 15px; }

/* Mobile: barra full-width colada embaixo */
@media (max-width: 575px) {
    .pd-sticky-bar {
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 10px 16px;
        transform: translateX(0) translateY(12px);
    }
    .pd-sticky-bar.is-visible {
        transform: translateX(0) translateY(0);
    }
    .pd-sticky-bar__inner { gap: 10px; }
    .pd-sticky-bar__info { flex-direction: column; gap: 1px; align-items: flex-start; }
    .pd-sticky-bar__name { font-size: 12px; max-width: none; }
    .pd-sticky-bar__btn-label { display: none; }
    .pd-sticky-bar__btn { padding: 0 16px; margin-left: auto; }
}

.pd-review-stars {
    display: inline-flex;
    gap: 1px;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}

.pd-review-stars .is-filled { color: var(--brand-clay); }

.pd-short-desc {
    font-size: 13px;
    color: var(--brand-mid);
    line-height: 1.7;
    margin-bottom: 0;
}

.pd-divider { border-color: #e5e7eb; margin: 20px 0; }

/* Campos de seleção */
.pd-field { margin-bottom: 20px; }
.pd-field__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: 10px;
}
.pd-field__value { font-weight: 400; color: var(--brand-mid); }

.pd-colors { display: flex; flex-wrap: wrap; gap: 8px; }

.pd-sizes  { display: flex; flex-wrap: wrap; gap: 8px; }

.pd-hint {
    font-size: 11px;
    color: var(--brand-mid);
    letter-spacing: .04em;
}

.pd-stock-warn {
    font-size: 11px;
    color: #ef4444;
    margin-top: 6px;
    display: block;
}

.pd-no-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* Controle de quantidade */
.pd-qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}
.pd-qty__btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.pd-qty__btn:hover { background: var(--brand-light); }
.pd-qty__input {
    width: 48px;
    height: 40px;
    border: none;
    border-left: 1.5px solid #e5e7eb;
    border-right: 1.5px solid #e5e7eb;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    background: #fff;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}
.pd-qty__input::-webkit-inner-spin-button,
.pd-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; appearance: none; }

/* Botões CTA */
.pd-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.pd-btn {
    display: block;
    width: 100%;
    padding: 15px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: none;
    text-align: center;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    border: 1.5px solid var(--brand-dark);
}
.pd-btn--dark {
    background: var(--brand-cta);
    border-color: var(--brand-cta);
    color: #fff;
}
.pd-btn--dark:hover { background: var(--brand-cta-dk); border-color: var(--brand-cta-dk); }
.pd-btn--outline {
    background: transparent;
    color: var(--brand-dark);
}
.pd-btn--outline:hover { background: var(--brand-dark); color: var(--warm-white); }

/* Erro */
.pd-error {
    font-size: 12px;
    color: #ef4444;
    border: 1px solid #fecaca;
    background: #fef2f2;
    padding: 8px 12px;
    border-radius: 2px;
    margin-bottom: 12px;
}

/* Features */
.pd-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 0;
}
.pd-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pd-feature i {
    font-size: 18px;
    color: var(--brand-dark);
    width: 22px;
    flex-shrink: 0;
}
.pd-feature div { display: flex; flex-direction: column; }
.pd-feature strong {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--brand-dark);
}
.pd-feature span { font-size: 11px; color: var(--brand-mid); }

/* Seção de descrição (aberta por padrão) */
.pd-desc-section {
    border-top: 1px solid #e5e7eb;
    margin-top: 4px;
    padding: 20px 0 4px;
}
.pd-desc-section__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin: 0 0 14px;
}
.pd-description {
    font-size: 14px;
    color: var(--brand-mid);
    line-height: 1.85;
}
.pd-description h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 20px 0 8px;
    letter-spacing: -.01em;
}
.pd-description h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 16px 0 6px;
}
.pd-description p { margin: 0 0 10px; }
.pd-description ul, .pd-description ol { padding-left: 20px; margin: 0 0 10px; }
.pd-description li { margin-bottom: 4px; }
.pd-description strong { color: var(--brand-dark); }
.pd-description hr { border: none; border-top: 1px solid #b0b0b0; margin: 20px 0; }

/* ---- Produtos Relacionados ---- */
.pd-related {
    padding: 48px 0 0;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.pd-reviews {
    margin: 58px 0 64px;
    padding: 0;
}

.pd-reviews__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
}

.pd-reviews__title {
    margin: 4px 0 0;
    color: var(--brand-dark);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
}

.pd-reviews__score {
    min-width: 96px;
    text-align: right;
}

.pd-reviews__score span {
    display: block;
    color: var(--brand-dark);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.pd-reviews__score small {
    color: var(--brand-mid);
    font-size: 11px;
}

.pd-review-form {
    margin-top: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pd-review-form__grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
}

.pd-review-form__label {
    display: block;
    margin-bottom: 7px;
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pd-review-form__select,
.pd-review-form__textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    background: #fff;
    color: var(--brand-dark);
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
}

.pd-review-form__select {
    height: 42px;
    padding: 0 10px;
}

.pd-review-form__textarea {
    min-height: 96px;
    padding: 10px 12px;
    resize: vertical;
}

.pd-review-form__select:focus,
.pd-review-form__textarea:focus {
    border-color: var(--brand-dark);
}

.pd-review-form__btn {
    margin-top: 12px;
    min-height: 40px;
    padding: 0 18px;
    border: 1.5px solid var(--brand-dark);
    border-radius: 2px;
    background: var(--brand-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
}

.pd-review-form__help {
    margin: 8px 0 0;
    color: var(--brand-mid);
    font-size: 12px;
}

.pd-review-list {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.pd-review {
    padding: 20px 22px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fafafa;
}

.pd-review__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.pd-review__avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--brand-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.pd-review__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-review__name {
    display: block;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 700;
}

.pd-review__stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-review__stars-row .pd-review-stars { font-size: 13px; }

.pd-review__date {
    color: var(--brand-mid);
    font-size: 11px;
}

.pd-review__text {
    max-width: 760px;
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.75;
    padding-left: 52px;
}

.pd-reviews__empty {
    padding: 22px 0;
    color: var(--brand-mid);
    font-size: 13px;
}

.pd-review-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0 0;
}

.pd-review-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid #e5e7eb;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    color: var(--brand-dark);
    font-size: 15px;
    transition: background var(--transition), border-color var(--transition);
}

.pd-review-pagination__btn:hover:not(:disabled) {
    background: var(--brand-light);
    border-color: var(--brand-dark);
}

.pd-review-pagination__btn:disabled {
    opacity: .3;
    cursor: default;
}

.pd-review-pagination__info {
    font-size: 12px;
    color: var(--brand-mid);
    min-width: 40px;
    text-align: center;
}

/* ---- Responsivo ---- */
@media (max-width: 991px) {
    .pd-wrap { grid-template-columns: 1fr; gap: 32px; }
    .pd-gallery { position: static; }
}
@media (max-width: 575px) {
    .pd-reviews__head { align-items: flex-start; flex-direction: column; }
    .pd-reviews__score { text-align: left; }
    .pd-review-form__grid { grid-template-columns: 1fr; }
    .pd-review__text { padding-left: 0; }
    .pd-thumbs { width: 56px; }
    .pd-thumb  { width: 56px; height: 68px; }
    .pd-main-img { aspect-ratio: 4/5; }
    .pd-wrap { gap: 20px; }
}

/* =============================================================
   SELEÇÃO DE COR / TAMANHO
   ============================================================= */
.btn-color {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition);
}
.btn-color:hover,
.btn-color.selected {
    transform: scale(1.15);
    border-color: var(--brand-dark) !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--brand-dark);
}
.btn-size {
    min-width: 44px;
    padding: .3rem .75rem;
    border: 1.5px solid rgba(30,30,26,0.18);
    background: #fff;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .03em;
    color: var(--brand-dark);
}
.btn-size:hover { border-color: var(--brand-dark); background: var(--warm-white); }
.btn-size.selected { background: var(--brand-dark); color: var(--warm-white); border-color: var(--brand-dark); }
.btn-size.out-of-stock { opacity: .4; text-decoration: line-through; cursor: not-allowed; }

/* =============================================================
   CARRINHO — página /carrinho.php
   ============================================================= */

/* Layout */
.cart-pg {
    padding: 40px 0 80px;
}
.cart-pg__header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 32px;
}
.cart-pg__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--brand-dark);
    margin: 0;
}
.cart-pg__count {
    font-size: 13px;
    color: #9ca3af;
}
.cart-pg__body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Lista de itens */
.cart-pg__list {
    display: flex;
    flex-direction: column;
}
.cart-pg__item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cart-pg__item:first-child { border-top: 1px solid #f0f0f0; }
.cart-pg__item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--brand-light);
    display: block;
}
.cart-pg__item-img-placeholder {
    width: 80px;
    height: 100px;
    background: var(--brand-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 22px;
}
.cart-pg__item-info { min-width: 0; }
.cart-pg__item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
}
.cart-pg__item-name:hover { opacity: .75; }
.cart-pg__item-variant {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 10px;
}
.cart-pg__item-stock-warn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 6px;
}
.cart-pg__item-stock-warn--danger { color: #dc2626; }
.cart-pg__item-stock-warn--warn   { color: #d97706; }
.cart-pg__item-stock-warn--low    { color: #9ca3af; }

/* Controle de quantidade inline */
.cart-pg__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    width: fit-content;
    overflow: hidden;
}
.cart-pg__qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--brand-dark);
    transition: background var(--transition);
}
.cart-pg__qty-btn:hover  { background: var(--brand-light); }
.cart-pg__qty-btn:disabled { opacity: .3; cursor: not-allowed; }
.cart-pg__qty-val {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    padding: 0;
    height: 28px;
    -moz-appearance: textfield;
    appearance: textfield;
    background: transparent;
}
.cart-pg__qty-val::-webkit-inner-spin-button,
.cart-pg__qty-val::-webkit-outer-spin-button { -webkit-appearance: none; appearance: none; }

/* Coluna direita do item (preço + remover) */
.cart-pg__item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.cart-pg__item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
}
.cart-pg__item-remove {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #d1d5db;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}
.cart-pg__item-remove:hover { color: #dc2626; }
.cart-pg__item--unavailable .cart-pg__item-img,
.cart-pg__item--unavailable .cart-pg__item-img-placeholder { opacity: .45; }

/* Rodapé da lista */
.cart-pg__list-footer {
    padding-top: 14px;
    display: flex;
    justify-content: flex-start;
}
.cart-pg__clear-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #9ca3af;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}
.cart-pg__clear-btn:hover { color: #dc2626; }

/* Painel de resumo */
.cart-pg__summary {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 88px;
}
.cart-pg__summary-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin: 0 0 20px;
}
.cart-pg__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: var(--brand-mid);
    margin-bottom: 10px;
}
.cart-pg__summary-row--total {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 0;
}
.cart-pg__summary-shipping {
    font-size: 11px;
    color: #9ca3af;
}
.free-shipping-meter--cart {
    margin: 14px 0 4px;
    padding: 0;
}
.free-shipping-meter--cart .free-shipping-meter__message {
    color: #374151;
}
.cart-pg__checkout-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 13px 0;
    background: var(--brand-cta);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.cart-pg__checkout-btn:hover:not(:disabled) { background: var(--brand-cta-dk); color: #fff; }
.cart-pg__checkout-btn:disabled { opacity: .4; cursor: not-allowed; }
.cart-pg__keep-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    color: var(--brand-mid);
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    transition: border-color var(--transition), color var(--transition);
}
.cart-pg__keep-btn:hover { border-color: var(--brand-dark); color: var(--brand-dark); }

/* Estado vazio */
.cart-pg__empty {
    text-align: center;
    padding: 80px 0;
}
.cart-pg__empty-icon {
    font-size: 52px;
    color: #e5e7eb;
    display: block;
    margin-bottom: 16px;
}
.cart-pg__empty-text {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 24px;
}
.cart-pg__empty-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background var(--transition);
}
.cart-pg__empty-btn:hover { background: var(--brand-clay); color: #fff; }

/* Responsivo */
@media (max-width: 900px) {
    .cart-pg__body { grid-template-columns: 1fr; }
    .cart-pg__summary { position: static; }
}
@media (max-width: 540px) {
    .cart-pg__item { grid-template-columns: 64px 1fr auto; gap: 12px; }
    .cart-pg__item-img,
    .cart-pg__item-img-placeholder { width: 64px; height: 80px; }
}

/* =============================================================
   ADMIN
   ============================================================= */
.table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--brand-mid); }

/* Bootstrap page-link override */
.page-link { color: var(--brand-dark); }
.page-item.active .page-link { background: var(--brand-dark); border-color: var(--brand-dark); }

/* =============================================================
   TOAST NOTIFICATIONS
   ============================================================= */

.toast-stack {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,.13), 0 1px 4px rgba(0,0,0,.06);
    padding: 14px 14px 14px 16px;
    min-width: 300px;
    max-width: 380px;
    pointer-events: all;
    position: relative;
    overflow: hidden;
    border-left: 3.5px solid transparent;
    /* Entrada: slide da direita */
    transform: translateX(calc(100% + 32px));
    opacity: 0;
    transition: transform .38s cubic-bezier(.22,1,.36,1), opacity .28s ease;
}
.toast-item.is-visible {
    transform: translateX(0);
    opacity: 1;
}
.toast-item.is-hiding {
    transform: translateX(calc(100% + 32px));
    opacity: 0;
}

/* Cores por tipo */
.toast-item--success { border-left-color: #22c55e; }
.toast-item--error   { border-left-color: #ef4444; }
.toast-item--warning { border-left-color: #f59e0b; }
.toast-item--info    { border-left-color: #3b82f6; }
.toast-item--clay    { border-left-color: var(--brand-clay); }

/* Ícone */
.toast-item__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
}
.toast-item--success .toast-item__icon { background: #dcfce7; color: #16a34a; }
.toast-item--error   .toast-item__icon { background: #fee2e2; color: #dc2626; }
.toast-item--warning .toast-item__icon { background: #fef3c7; color: #d97706; }
.toast-item--info    .toast-item__icon { background: #dbeafe; color: #2563eb; }
.toast-item--clay    .toast-item__icon { background: #f5e6df; color: var(--brand-clay); }

/* Texto */
.toast-item__body  { flex: 1; min-width: 0; }
.toast-item__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 3px;
    line-height: 1.3;
}
.toast-item__message {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Botão fechar */
.toast-item__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #d1d5db;
    font-size: 16px;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
    transition: color var(--transition);
}
.toast-item__close:hover { color: #374151; }

/* Barra de progresso */
.toast-item__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2.5px;
    width: 100%;
    border-radius: 0 0 0 6px;
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}
.toast-item--success .toast-item__progress { background: #22c55e; }
.toast-item--error   .toast-item__progress { background: #ef4444; }
.toast-item--warning .toast-item__progress { background: #f59e0b; }
.toast-item--info    .toast-item__progress { background: #3b82f6; }

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

@media (max-width: 480px) {
    .toast-stack {
        bottom: 16px;
        right: 12px;
        left: 12px;
    }
    .toast-item {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}

/* =============================================================
   CART DRAWER
   ============================================================= */

/* Overlay escuro */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1040;
    opacity: 0;
    transition: opacity .3s ease;
}
.cart-overlay.open {
    display: block;
    opacity: 1;
}

/* Painel lateral */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: #fff;
    border-radius: 20px 0 0 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(30,30,26,.12);
    overflow: hidden;
}
.cart-drawer.open {
    transform: translateX(0);
}

/* Header */
.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(30,30,26,0.07);
    flex-shrink: 0;
}
.cart-drawer__title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-dark);
}
.cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-dark);
    font-size: 18px;
    padding: 2px;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
.cart-drawer__close:hover { color: var(--brand-mid); }

/* Área de scroll dos itens */
.cart-drawer__scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Estado vazio */
.cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 24px;
    text-align: center;
}
.cart-drawer__empty p {
    font-size: 13px;
    color: var(--brand-mid);
    letter-spacing: .04em;
    margin: 0;
}
.cart-drawer__keep-shopping {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-dark);
    border-bottom: 1.5px solid var(--brand-dark);
    padding-bottom: 1px;
}

/* Item individual */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(30,30,26,0.06);
}
.cart-item__img-wrap {
    display: block;
    flex-shrink: 0;
}
.cart-item__img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background: var(--brand-gray-product);
    display: block;
    border-radius: 10px;
}
.cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.cart-item__name {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item__name:hover { color: var(--brand-mid); }

.cart-item__variant {
    font-size: 11px;
    color: #9ca3af;
}
.cart-item__price {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
}

/* Controles de quantidade + preço */
.cart-item__controls {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
}
.cart-item__controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(30,30,26,0.12);
    border-radius: var(--radius-pill);
    overflow: hidden;
}
.cart-item__qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.cart-item__qty-btn:hover { background: var(--brand-light); }
.cart-item__qty-val {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    border-left: 1px solid rgba(30,30,26,0.10);
    border-right: 1px solid rgba(30,30,26,0.10);
    line-height: 30px;
}
.cart-item__remove {
    font-size: 11px;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color var(--transition);
    text-align: left;
}
.cart-item__remove:hover { color: var(--brand-dark); }

/* Rodapé */
.free-shipping-meter--drawer {
    flex-shrink: 0;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
}
.free-shipping-meter--drawer .free-shipping-meter__message {
    text-align: center;
}

.cart-drawer__footer {
    border-top: 1px solid #e5e7eb;
    padding: 16px 20px 24px;
    flex-shrink: 0;
    background: #fff;
}

/* Cupom */
.cart-drawer__coupon {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}
.cart-drawer__coupon-row {
    display: flex;
    gap: 8px;
}
.cart-drawer__coupon-input {
    flex: 1;
    min-width: 0;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(30,30,26,0.14);
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--brand-dark);
    outline: none;
    transition: border-color var(--transition);
    background: #f9f9f9;
}
.cart-drawer__coupon-input:focus { border-color: var(--brand-dark); background: #fff; }
.cart-drawer__coupon-input::placeholder { color: #9ca3af; text-transform: none; }
.cart-drawer__coupon-input:disabled { background: #f9fafb; color: #6b7280; }
.cart-drawer__coupon-btn {
    flex-shrink: 0;
    height: 38px;
    padding: 0 16px;
    border: 1.5px solid var(--brand-dark);
    border-radius: var(--radius-pill);
    background: #fff;
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}
.cart-drawer__coupon-btn:hover:not(:disabled) { background: var(--brand-dark); color: #fff; }
.cart-drawer__coupon-btn:disabled { opacity: .5; cursor: default; }

/* Subtotal */
.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
}
.cart-drawer__shipping-note {
    font-size: 11px;
    color: #9ca3af;
    margin: 0 0 14px;
}
.cart-drawer__checkout-btn {
    display: block;
    width: 100%;
    background: var(--brand-cta);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 15px;
    border-radius: var(--radius-pill);
    transition: background var(--transition);
    text-decoration: none;
}
.cart-drawer__checkout-btn:hover { background: var(--brand-cta-dk); color: #fff; }

@media (max-width: 480px) {
    .cart-drawer { width: 100vw; }
}

/* =============================================================
   MINHA CONTA
   ============================================================= */
.acct-wrap {
    position: relative;
    padding: 0 0 80px;
}
.acct-top {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}
.acct-logout {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-mid);
    text-decoration: none;
    transition: color var(--transition);
}
.acct-logout:hover { color: #e8621a; }

.acct-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--brand-dark);
    margin-bottom: 4px;
}
.acct-welcome {
    font-size: 14px;
    color: var(--brand-mid);
    margin-bottom: 36px;
}

/* Two-column grid */
.acct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 640px) {
    .acct-grid { grid-template-columns: 1fr; }
}

/* Panel */
.acct-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#meus-pedidos {
    scroll-margin-top: 72px;
}
.acct-panel__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin: 0 0 4px;
}
.acct-panel__empty {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}
.acct-panel__link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-dark);
    text-decoration: none;
    margin-top: auto;
    transition: color var(--transition);
}
.acct-panel__link:hover { color: #e8621a; }

/* Order rows */
.acct-orders { display: flex; flex-direction: column; gap: 8px; }
.acct-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    background: #fafafa;
    transition: border-color var(--transition), background var(--transition);
}
.acct-order-row:hover { border-color: var(--brand-dark); background: #fff; }
.acct-order-row__info { display: flex; flex-direction: column; gap: 2px; }
.acct-order-row__num {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
}
.acct-order-row__date {
    font-size: 11px;
    color: #9ca3af;
}
.acct-order-row__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.acct-order-row__total {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
}

/* Status badges */
.acct-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
}
.acct-status--pendente  { background: #fef3c7; color: #92400e; }
.acct-status--pago      { background: #d1fae5; color: #065f46; }
.acct-status--separado  { background: #dbeafe; color: #1e40af; }
.acct-status--enviado   { background: #ede9fe; color: #5b21b6; }
.acct-status--entregue  { background: #d1fae5; color: #065f46; }
.acct-status--cancelado { background: #fee2e2; color: #991b1b; }
.acct-status--return-requested { background: #fef3c7; color: #92400e; }
.acct-status--return-approved,
.acct-status--return-received { background: #dbeafe; color: #1e40af; }
.acct-status--return-refunded { background: #e5e7eb; color: #374151; }
.acct-status--return-rejected,
.acct-status--return-cancelled { background: #fee2e2; color: #991b1b; }

/* Address preview */
.acct-address {
    font-size: 13px;
    line-height: 1.7;
    color: var(--brand-mid);
    font-style: normal;
    margin: 0;
}

/* Generic account button */
.acct-btn {
    display: inline-block;
    background: var(--brand-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: background var(--transition);
    text-align: center;
    text-decoration: none;
    margin-top: auto;
}
.acct-btn:hover { background: var(--brand-clay); color: #fff; }
.acct-btn.mt-3 { margin-top: 16px; }
.acct-btn.mt-4 { margin-top: 24px; }

/* ---- Modal overlay ---- */
.acct-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.acct-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* ---- Modal panel ---- */
.acct-modal {
    background: #fff;
    border-radius: 6px;
    padding: 36px 32px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px);
    transition: transform .25s ease;
}
.acct-modal-overlay.is-open .acct-modal {
    transform: translateY(0);
}
@media (max-width: 560px) {
    .acct-modal { padding: 28px 20px; border-radius: 0; max-height: 100vh; }
}

.acct-modal__title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--brand-dark);
    margin: 0 0 6px;
}
.acct-modal__sub {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 24px;
}
.acct-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--brand-mid);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}
.acct-modal__close:hover { color: var(--brand-dark); }
.acct-modal__back {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--brand-mid);
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.acct-modal__back:hover { color: var(--brand-dark); }

/* ---- Address card list ---- */
.acct-addr-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.acct-addr-card {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 16px 18px;
    position: relative;
    transition: border-color var(--transition);
}
.acct-addr-card.is-default { border-color: var(--brand-dark); }
.acct-addr-card__badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--brand-dark);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.acct-addr-card__text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--brand-mid);
    font-style: normal;
    margin: 0 0 12px;
}
.acct-addr-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.acct-addr-card__btn {
    background: none;
    border: 1px solid #e5e7eb;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--brand-dark);
    padding: 6px 12px;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.acct-addr-card__btn:hover { border-color: var(--brand-dark); background: #f9f9f9; }
.acct-addr-card__btn--danger { color: #dc2626; border-color: #fecaca; }
.acct-addr-card__btn--danger:hover { background: #fee2e2; border-color: #dc2626; }

/* ---- Checkbox row ---- */
.acct-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--brand-mid);
    cursor: pointer;
    margin-top: 4px;
}
.acct-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-dark);
    cursor: pointer;
}

/* ---- Select as floating label ---- */
.auth-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.auth-label--select {
    pointer-events: none;
}
/* Keep select label floated when a value is chosen */
select.auth-input:valid ~ .auth-label--select,
select.auth-input:focus  ~ .auth-label--select {
    top: 6px;
    font-size: 10px;
    color: var(--brand-mid);
}

/* =============================================================
   CHECKOUT
   ============================================================= */

/* ---- Breadcrumb de etapas ---- */
.ckout-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 0 0;
    margin-bottom: 0;
}
.ckout-stepper__sep {
    font-size: 11px;
    color: #d1d5db;
}
.ckout-step-item {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    color: #9ca3af;
    cursor: default;
    transition: color var(--transition);
}
.ckout-step-item.active {
    color: var(--brand-dark);
    font-weight: 700;
}
.ckout-step-item.done {
    color: var(--brand-mid);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ckout-step-item.done:hover { color: var(--brand-dark); }

/* ---- Layout ---- */
.ckout-wrap { padding: 24px 0 80px; }

/* Grid principal */
.ckout-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    gap: 0;
}
.ckout-left  { padding-right: 48px; }
.ckout-right {
    background: #f7f7f7;
    padding: 32px 28px 40px;
    position: sticky;
    top: 80px;
}

/* Seções do lado esquerdo */
.ckout-section {
    padding: 28px 0;
    border-bottom: 1px solid #e5e7eb;
}
.ckout-section--last { border-bottom: none; }
.ckout-section__hd {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin: 0 0 14px;
}
.ckout-section__hd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.ckout-section__opt {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #9ca3af;
}

/* Link "Fazer login" */
.ckout-login-link {
    font-size: 12px;
    color: var(--brand-mid);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity var(--transition);
}
.ckout-login-link:hover { opacity: .65; color: var(--brand-mid); }

/* Contato */
.ckout-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--brand-mid);
}
.ckout-contact a {
    font-size: 12px;
    color: var(--brand-dark);
    text-decoration: underline;
    transition: opacity var(--transition);
}
.ckout-contact a:hover { opacity: .7; }

/* Cards de endereço salvo */
.ckout-addr-list { display: flex; flex-direction: column; gap: 8px; }
.ckout-addr-opt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color var(--transition);
}
.ckout-addr-opt.is-selected { border-color: var(--brand-dark); }
.ckout-addr-opt input[type="radio"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--brand-dark);
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.ckout-addr-opt__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 2px;
}
.ckout-addr-opt__sub {
    display: block;
    font-size: 12px;
    color: #9ca3af;
}

/* Formulário de novo endereço */
.ckout-fields { display: flex; flex-direction: column; gap: 12px; }
.ckout-fields--indent { margin-top: 16px; }
.ckout-row {
    display: grid;
    gap: 12px;
}
.ckout-field { display: flex; flex-direction: column; gap: 5px; }
.ckout-field__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--brand-mid);
}
.ckout-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--brand-dark);
    background: #fff;
    outline: none;
    transition: border-color var(--transition);
    font-family: inherit;
}
.ckout-input:focus { border-color: var(--brand-dark); }
.ckout-input:disabled {
    background: #f9fafb;
    color: #6b7280;
    cursor: default;
}
.ckout-coupon {
    padding: 14px 0 16px;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}
.ckout-coupon__row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.ckout-coupon__input {
    min-width: 0;
    height: 38px;
    padding: 0 11px;
    border-color: #e5e7eb;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.ckout-coupon__input::placeholder {
    color: #9ca3af;
    text-transform: none;
}
.ckout-coupon__btn {
    flex-shrink: 0;
    height: 38px;
    min-width: 82px;
    padding: 0 14px;
    border: 1.5px solid var(--brand-dark);
    border-radius: 2px;
    background: #fff;
    color: var(--brand-dark);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}
.ckout-coupon__btn:hover:not(:disabled),
.ckout-coupon__btn:focus-visible {
    background: var(--brand-dark);
    color: #fff;
}
.ckout-coupon__btn:disabled {
    opacity: .5;
    cursor: default;
}
.ckout-coupon__msg {
    min-height: 18px;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: #6b7280;
}
.ckout-coupon__msg--success { color: #16a34a; }
.ckout-coupon__msg--error { color: #dc2626; }
.ckout-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}
.ckout-textarea { resize: vertical; min-height: 80px; }
.ckout-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--brand-mid);
    cursor: pointer;
    margin-top: 4px;
}
.ckout-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--brand-dark);
    flex-shrink: 0;
    cursor: pointer;
}

/* Utilitário de espaçamento interno */
.mt-20 { margin-top: 20px; }

/* Botão de avanço de etapa / submit */
.ckout-next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--brand-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: none;
    padding: 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity var(--transition);
}
.ckout-next-btn:hover:not(:disabled) { opacity: .85; }
.ckout-next-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Card de resumo de etapa concluída */
.ckout-done {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}
.ckout-done__row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}
.ckout-done__row:last-child { border-bottom: none; }
.ckout-done__key {
    width: 72px;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9ca3af;
}
.ckout-done__val {
    flex: 1;
    color: var(--brand-mid);
    line-height: 1.4;
    min-width: 0;
}
.ckout-done__edit {
    background: none;
    border: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--brand-dark);
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity var(--transition);
}
.ckout-done__edit:hover { opacity: .6; }

/* Botão "Calcular frete" / "Recalcular" */
.ckout-outline-btn {
    background: none;
    border: 1px solid var(--brand-dark);
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.ckout-outline-btn:hover { background: var(--brand-dark); color: #fff; }
.ckout-outline-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Textos auxiliares e erros */
.ckout-help {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 12px;
}
.ckout-alert { padding: 10px 14px; border-radius: 3px; font-size: 13px; margin-bottom: 10px; }
.ckout-alert--danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Cards de opção de frete */
.ckout-ship-list { display: flex; flex-direction: column; gap: 8px; }
.ckout-ship-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color var(--transition);
}
.ckout-ship-opt.is-selected { border-color: var(--brand-dark); }
.ckout-radio {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--brand-dark);
    cursor: pointer;
}
.ckout-ship-opt__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ckout-ship-opt__name { font-size: 13px; font-weight: 600; color: var(--brand-dark); }
.ckout-ship-opt__days { font-size: 12px; color: #9ca3af; }
.ckout-ship-opt__price { font-size: 13px; font-weight: 700; color: var(--brand-dark); white-space: nowrap; }

/* Cards de forma de pagamento */
.ckout-pay-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.ckout-pay-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color var(--transition);
}
.ckout-pay-opt:has(input:checked) { border-color: var(--brand-dark); }
.ckout-pay-opt__label { font-size: 14px; color: var(--brand-dark); }
.ckout-pix-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--brand-mid);
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    padding: 12px 14px;
    margin-top: 4px;
}
.ckout-pix-info i { margin-top: 1px; flex-shrink: 0; }
.ckout-payment-panels { margin-top: 14px; }
.ckout-card-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}
.ckout-mp-field {
    width: 100%;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    padding: 0 12px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.ckout-mp-field:focus-within { border-color: var(--brand-dark); }
.ckout-mp-field iframe {
    width: 100% !important;
    height: 42px !important;
    max-height: 42px !important;
    border: 0 !important;
    display: block;
}
.ckout-hidden-input {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.ckout-card-fields .ckout-row {
    gap: 12px;
}

/* ---- Coluna direita: Resumo ---- */
.ckout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}
.ckout-summary-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ckout-summary-item__img-wrap {
    position: relative;
    width: 64px;
    flex-shrink: 0;
}
.ckout-summary-item__img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    display: block;
}
.ckout-summary-item__no-img {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 22px;
}
.ckout-summary-item__qty {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #6b7280;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.ckout-summary-item__info { flex: 1; min-width: 0; }
.ckout-summary-item__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ckout-summary-item__variant { font-size: 12px; color: #9ca3af; }
.ckout-summary-item__price { font-size: 13px; font-weight: 600; color: var(--brand-dark); white-space: nowrap; }

/* Totais */
.ckout-totals {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.ckout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    color: var(--brand-dark);
}
.ckout-totals__muted { color: #9ca3af; }
.ckout-totals__meta { font-size: 12px; color: #9ca3af; margin-top: -6px; }
.ckout-totals__row--total {
    font-size: 16px;
    font-weight: 700;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

/* Texto de ajuda abaixo do botão confirmar */
.ckout-submit-help {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin: 8px 0 0;
}

/* Responsivo */
@media (max-width: 991px) {
    .ckout-layout {
        grid-template-columns: 1fr;
        grid-template-areas: "right" "left";
    }
    .ckout-left  { grid-area: left; padding-right: 0; }
    .ckout-right { grid-area: right; border-left: none; border-bottom: 1px solid #e5e7eb; padding: 24px 0 20px; position: static; background: transparent; margin-bottom: 8px; }
}

/* =============================================================
   PEDIDO — detalhe
   ============================================================= */

/* Breadcrumb */
.pd-breadcrumb {
    padding-top: 18px;
}
.pd-breadcrumb a { color: var(--brand-mid); }
.pd-breadcrumb a:hover { color: var(--brand-dark); }
.pd-breadcrumb span { color: var(--brand-mid); }

/* Wrapper principal */
.order-wrap {
    padding: 24px 0 80px;
}

/* Cabeçalho */
.order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 28px;
}
.order-header__left { display: flex; flex-direction: column; gap: 2px; }
.order-header__num {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -.5px;
}
.order-header__num span { font-weight: 400; color: var(--brand-mid); }
.order-header__date { font-size: 13px; color: var(--brand-mid); margin: 0; }

/* Timeline de status */
.order-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 36px;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 8px;
}
.order-track__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    min-width: 72px;
}
.order-track__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    z-index: 1;
    transition: background var(--transition), border-color var(--transition);
}
.order-track__step.done .order-track__dot {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}
.order-track__step.active .order-track__dot {
    background: #fff;
    border-color: var(--brand-dark);
    box-shadow: 0 0 0 4px rgba(17,17,17,.1);
}
.order-track__line {
    position: absolute;
    top: 13px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}
.order-track__step.done .order-track__line { background: var(--brand-dark); }
.order-track__label {
    font-size: 11px;
    color: var(--brand-mid);
    margin-top: 8px;
    text-align: center;
    letter-spacing: .3px;
    white-space: nowrap;
}
.order-track__step.done .order-track__label,
.order-track__step.active .order-track__label {
    color: var(--brand-dark);
    font-weight: 600;
}

/* Layout de duas colunas */
.order-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* Painéis */
.order-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    padding: 20px 24px;
    margin-bottom: 20px;
}
.order-panel:last-child { margin-bottom: 0; }
.order-panel__hd {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--brand-mid);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

/* Lista de itens */
.order-items { display: flex; flex-direction: column; gap: 16px; }
.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.order-item__img-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: visible;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}
.order-item__img-wrap > img,
.order-item__img-wrap > .order-item__no-img {
    border-radius: 2px;
    overflow: hidden;
}
.order-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.order-item__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #d1d5db;
}
.order-item__qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--brand-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.order-item__info { flex: 1; min-width: 0; }
.order-item__name {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.order-item__variant { font-size: 12px; color: var(--brand-mid); margin-top: 2px; }
.order-item__sku { font-size: 11px; color: #9ca3af; margin-top: 1px; }
.order-item__price {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Totais financeiros */
.order-totals { display: flex; flex-direction: column; gap: 10px; }
.order-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
}
.order-totals__meta {
    font-size: 12px;
    color: #9ca3af;
    margin-top: -6px;
}
.order-totals__row--discount { color: #16a34a; }
.order-totals__row--total {
    font-size: 16px;
    font-weight: 700;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    margin-top: 4px;
}

/* Endereço */
.order-address {
    font-size: 14px;
    line-height: 1.7;
    color: var(--brand-dark);
    font-style: normal;
    margin: 0;
}

/* Pagamento */
.order-payment { display: flex; flex-direction: column; gap: 8px; }
.order-payment__method {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}
.order-payment__method i { font-size: 18px; }
.order-payment__status { font-size: 13px; color: var(--brand-mid); }

/* Box PIX */
.order-pix {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    padding: 12px 14px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
}
.order-pix i { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.order-payment-qr {
    display: block;
    width: 168px;
    max-width: 100%;
    margin: 10px 0;
    border: 1px solid #e5e7eb;
    border-radius: 2px;
}
.order-payment-code {
    width: 100%;
    min-height: 86px;
    margin: 10px 0;
    border: 1px solid #d1d5db;
    border-radius: 2px;
    padding: 8px;
    font-size: 12px;
    line-height: 1.4;
    resize: vertical;
}
.order-copy-btn {
    border: 1px solid var(--brand-dark);
    background: var(--brand-dark);
    color: #fff;
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.order-payment-cta {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    background: #f9fafb;
}
.order-payment-cta p {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--brand-mid);
    line-height: 1.5;
}
.order-payment-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 3px;
    background: var(--brand-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
}
.order-payment-cta__btn:hover { color: #fff; background: #111827; }

.order-return-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.free-shipping-meter {
    --free-ship-progress: var(--brand-dark);
    background: #fff;
}
.free-shipping-meter__track {
    position: relative;
    height: 4px;
    overflow: hidden;
    background: #e5e7eb;
    border-radius: 999px;
}
.free-shipping-meter__fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--free-ship-progress);
    border-radius: inherit;
    transition: width .25s ease;
}
.free-shipping-meter__message {
    margin: 8px 0 0;
    color: var(--brand-dark);
    font-size: 12px;
    line-height: 1.4;
}
.free-shipping-meter.is-complete {
    --free-ship-progress: #16a34a;
}

.order-return-card {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
}

.order-return-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.order-return-card p,
.order-return-note {
    margin: 0;
    color: var(--brand-mid);
    font-size: 13px;
    line-height: 1.5;
}

.return-wrap {
    padding: 32px 0 64px;
}

.return-form {
    margin-top: 20px;
}

.return-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.return-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

.return-item strong,
.return-item span,
.return-item small {
    display: block;
}

.return-item span,
.return-item small {
    color: var(--brand-mid);
    font-size: 12px;
    line-height: 1.5;
}

.return-item label {
    margin: 0;
    color: var(--brand-mid);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.return-qty {
    width: 100%;
    min-height: 38px;
    margin-top: 4px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px;
}

.return-textarea {
    min-height: 130px;
    resize: vertical;
    padding-top: 22px;
}

/* =============================================================
   PÁGINA LEGAL (privacidade, termos, etc.)
   ============================================================= */
.legal-pg {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 0 80px;
}
.legal-pg__header {
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.legal-pg__title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -.01em;
    margin: 0 0 8px;
}
.legal-pg__updated {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}
.legal-pg__body {
    color: var(--brand-dark);
    font-size: 15px;
    line-height: 1.8;
}
.legal-pg__body p    { margin: 0 0 16px; }
.legal-pg__body ul,
.legal-pg__body ol   { padding-left: 20px; margin: 0 0 16px; }
.legal-pg__body li   { margin-bottom: 6px; }
.legal-pg__body h2   { font-size: 17px; font-weight: 700; margin: 28px 0 10px; }
.legal-pg__body h3   { font-size: 15px; font-weight: 700; margin: 20px 0 8px; }
.legal-pg__back {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}
.legal-pg__back-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-mid);
    text-decoration: none;
}
.legal-pg__back-link:hover { color: var(--brand-dark); }

/* =============================================================
   PAGAMENTO — layout guiado (Pix, boleto, cartão)
   ============================================================= */

/* Variável da cor Pix (teal oficial) */
:root { --pix: #32bcad; --pix-dark: #20a99a; }

.pay-wrap {
    margin: 28px 0 72px;
}

/* ---- Shell: main + sidebar ---- */
.pay-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 20px;
    align-items: start;
}

/* ---- Cartão principal ---- */
.pay-main {
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
    padding: clamp(24px, 5vw, 44px);
}

/* ---- Badge de método ---- */
.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.pay-badge--pix    { background: #e6f9f7; color: var(--pix-dark); }
.pay-badge--boleto { background: #fef9ec; color: #92400e; }
.pay-badge--credit_card,
.pay-badge--debit_card { background: #f0f0f0; color: #374151; }

/* ---- Heading + lead ---- */
.pay-main h1 {
    margin: 16px 0 6px;
    color: var(--brand-dark);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.01em;
}
.pay-lead {
    margin: 0 0 20px;
    color: var(--brand-mid);
    font-size: 15px;
    line-height: 1.5;
}
.pay-lead strong { color: var(--brand-dark); }

/* ---- QR Code (hero) ---- */
.pay-qr {
    margin: 0 auto 4px;
    width: min(300px, 100%);
    text-align: center;
}
.pay-qr img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    padding: 10px;
    background: #fff;
}
.pay-qr p {
    margin: 8px 0 0;
    color: var(--brand-mid);
    font-size: 12px;
}

/* ---- Divisor "ou" ---- */
.pay-or {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 14px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.pay-or::before,
.pay-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* ---- Bloco de cópia ---- */
.pay-copy-block { margin-bottom: 4px; }
.pay-copy-input {
    display: block;
    width: 100%;
    min-height: 80px;
    padding: 11px 13px;
    border: 1px solid #d1d5db;
    border-radius: 2px;
    background: #f9fafb;
    color: var(--brand-dark);
    font-size: 12px;
    line-height: 1.5;
    resize: none;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}
.pay-copy-input--short { min-height: 56px; }

/* ---- Botão Pix (CTA principal) ---- */
.pay-pix-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    margin-top: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 3px;
    background: #00a650;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background var(--transition), transform .1s;
}
.pay-pix-btn:hover  { background: #009141; color: #fff; }
.pay-pix-btn:active { transform: scale(.98); }

/* ---- Botão boleto ---- */
.pay-boleto-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    margin-bottom: 4px;
    padding: 14px 20px;
    border: none;
    border-radius: 3px;
    background: #00a650;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    text-decoration: none;
    transition: background var(--transition);
}
.pay-boleto-btn:hover { background: #009141; color: #fff; }

/* ---- Botão outline (copiar linha digitável etc.) ---- */
.pay-outline-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
    padding: 11px 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 3px;
    background: #fff;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.pay-outline-btn:hover { border-color: var(--brand-dark); background: #f9fafb; }

/* ---- Steps ---- */
.pay-steps {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: ps;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}
.pay-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    background: #f9fafb;
    color: var(--brand-dark);
    font-size: 13px;
    line-height: 1.4;
    counter-increment: ps;
}
.pay-steps li + li { border-top: 1px solid #e5e7eb; }
.pay-steps li::before {
    content: counter(ps);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Timer ---- */
.pay-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 11px 14px;
    border-radius: 3px;
    background: #f0fdf9;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 13px;
}
.pay-timer i { font-size: 15px; flex-shrink: 0; }
.pay-timer strong { font-weight: 700; }
.pay-timer--urgent {
    background: #fff5f5;
    border-color: #fca5a5;
    color: #b91c1c;
    animation: pulse-timer 1s ease infinite;
}
@keyframes pulse-timer {
    0%, 100% { opacity: 1; }
    50%       { opacity: .7; }
}

/* ---- Rodapé de ações ---- */
.pay-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

/* "Já paguei" — botão verify */
.pay-verify-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1.5px solid var(--brand-dark);
    border-radius: 3px;
    background: #fff;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.pay-verify-btn:hover    { background: var(--brand-dark); color: #fff; }
.pay-verify-btn:disabled { opacity: .55; cursor: wait; }

/* link "Ver detalhes" */
.pay-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    color: var(--brand-mid);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.pay-link:hover { color: var(--brand-dark); }

.pay-status-note {
    min-height: 18px;
    margin: 8px 0 0;
    color: var(--brand-mid);
    font-size: 12px;
    text-align: center;
}

/* ---- Waiting (cartão/outros) ---- */
.pay-waiting {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 16px 0 8px;
    padding: 16px;
    border-radius: 3px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}
.pay-waiting strong { display: block; color: var(--brand-dark); font-size: 14px; }
.pay-waiting span   { color: var(--brand-mid); font-size: 13px; }
.pay-waiting__dots  { display: flex; gap: 5px; padding-top: 4px; flex-shrink: 0; }
.pay-waiting__dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-dark);
    animation: dot-pulse 1.2s ease infinite;
}
.pay-waiting__dots span:nth-child(2) { animation-delay: .2s; }
.pay-waiting__dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dot-pulse {
    0%, 80%, 100% { opacity: .2; transform: scale(.8); }
    40%            { opacity: 1;  transform: scale(1);   }
}

/* ---- Sidebar ---- */
.pay-sidebar { position: sticky; top: 88px; }
.pay-summary {
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    padding: 20px;
}
.pay-summary__eyebrow {
    margin: 0 0 4px;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.pay-summary__num {
    margin: 0 0 16px;
    color: var(--brand-dark);
    font-size: 17px;
    font-weight: 700;
}
.pay-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid #f3f4f6;
    color: var(--brand-mid);
    font-size: 13px;
}
.pay-summary__row b { color: var(--brand-dark); text-align: right; }
.pay-summary__row--total { border-top: 2px solid #e5e7eb; }
.pay-summary__row--total span,
.pay-summary__row--total b { font-weight: 700; font-size: 15px; color: var(--brand-dark); }
.pay-summary__secure {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 14px 0 0;
    color: #6b7280;
    font-size: 12px;
}
.pay-summary__secure i { color: #10b981; font-size: 14px; }

/* ---- Resultados (sucesso / expirado) ---- */
.pay-result {
    max-width: 560px;
    margin: 0 auto;
    padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 48px);
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
    text-align: center;
}
.pay-result h1 {
    margin: 20px 0 8px;
    color: var(--brand-dark);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    letter-spacing: -.01em;
}
.pay-result p {
    margin: 0 0 28px;
    color: var(--brand-mid);
    font-size: 15px;
    line-height: 1.55;
}
.pay-result__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 36px;
}
.pay-result__icon--ok   { background: #dcfce7; color: #15803d; }
.pay-result__icon--warn { background: #fff7ed; color: #c2410c; }
.pay-result__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.pay-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 3px;
    border: 1.5px solid #00a650;
    background: #00a650;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition);
}
.pay-cta:hover { background: #009141; border-color: #009141; color: #fff; }
.pay-cta--outline {
    background: #fff;
    color: var(--brand-dark);
    border-color: var(--brand-dark);
}
.pay-cta--outline:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }

/* ---- Responsivo ---- */
@media (max-width: 768px) {
    .order-layout        { grid-template-columns: 1fr; }
    .order-header__num   { font-size: 18px; }
    .return-item         { grid-template-columns: 1fr; }
    .pay-shell           { grid-template-columns: 1fr; }
    .pay-sidebar         { position: static; order: -1; }

    .pay-wrap            { margin: 16px 0 48px; }
}

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (max-width: 576px) {
    .product-card__img { aspect-ratio: 2/3; }
    .product-main-image { height: 300px; }
    .collection-section { padding: 24px 0 40px; }
    .acct-top {
        position: static;
        margin-bottom: 12px;
    }
}

/* =============================================================
   SCROLLBAR — minimalista global
   ============================================================= */
::-webkit-scrollbar              { width: 4px; height: 4px; }
::-webkit-scrollbar-track        { background: transparent; }
::-webkit-scrollbar-thumb        { background: rgba(0,0,0,.18); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover  { background: rgba(0,0,0,.32); }

/* Firefox */
* { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.18) transparent; }
