@charset "UTF-8";

:root {
    --container-max: 1440px;
    --gutter-mobile: 20px;
    --gutter-desktop: 100px;
    --black-foreground: #212121;
    --brand-primary: #6a1b36;
    --brand-primary-dark: #100007;
    --brand-accent: #ffc745;
    --brand-primary-rgb: 106, 27, 54;
    --brand-primary-dark-rgb: 16, 0, 7;
    --brand-accent-rgb: 255, 199, 69;
    --header-bg: #212121;
    --footer-bg: #212121;
    --footer-bottom-bg: #212121;
    --white: #fff;
    --black: #000;
    --gray-900: #212121;
    --gray-800: #424242;
    --gray-700: #616161;
    --gray-600: #757575;
    --gray-500: #9e9e9e;
    --gray-400: #bdbdbd;
    --gray-300: #e0e0e0;
    --gray-200: #eeeeee;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;

    --success: #16a34a;
    --success-bg: #f0fdf4;
    --success-border: #86efac;
    --success-dark: #166534;

    --danger: #dc2626;
    --danger-bg: #fde8e8;
    --danger-dark: #c0392b;
    --danger-rgb: 220, 38, 38;

    --warning: #f59e0b;
    --warning-bg: #fff3cd;
    --warning-dark: #856404;

    --info: #1565c0;
    --info-bg: #e8f4fd;

    --surface-50: #fffffc;
    --surface-100: #f9f9f6;
    --surface-200: #f7f7f2;
    --surface-300: #fafaf5;
    --surface-400: #f5f5f0;

    --overlay-light-soft: rgba(255, 255, 255, 0.1);
    --overlay-light: rgba(255, 255, 255, 0.3);
    --overlay-light-strong: rgba(255, 255, 255, 0.6);
    --overlay-light-max: rgba(255, 255, 255, 0.9);
    --overlay-dark-soft: rgba(0, 0, 0, 0.1);
    --overlay-dark: rgba(0, 0, 0, 0.25);
    --overlay-dark-strong: rgba(0, 0, 0, 0.45);
    --overlay-dark-max: rgba(0, 0, 0, 0.75);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container-large {
    width: 100%;
    padding-left: var(--gutter-mobile) !important;
    padding-right: var(--gutter-mobile) !important;
}

@media (min-width: 992px) {
    .container-large {
        padding-left: max(
            var(--gutter-desktop),
            calc((100vw - var(--container-max)) / 2)
        ) !important;
        padding-right: max(
            var(--gutter-desktop),
            calc((100vw - var(--container-max)) / 2)
        ) !important;
    }
}

p,
small,
span,
strong,
b,
a,
input,
input::placeholder {
    font-family: var(--font-body);
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.35px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-family: var(--font-heading);
    font-style: normal;
    line-height: normal;
    letter-spacing: -1px;
}

header {
    width: 100%;
    background-color: var(--header-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

body {
    padding-top: var(--header-height, 0px);
}

@media (max-width: 764px) {
    .brand-logo img {
        max-width: 235px !important;
    }
}

/* ── Barra de promoção ── */
.top-header {
    text-align: center;
    font-size: 14px;
    background-color: var(--brand-primary);
    color: var(--white);
    padding-block: 11px;
}

/* ── Barra de navegação ── */
.header-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-block: 16px;
    background-color: var(--header-bg);
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo img {
    max-width: 300px;
    height: auto;
}

@media (min-width: 1280px) {
}

/* Links de navegação (desktop) */
.nav-links {
    display: none;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-links li a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: var(--brand-accent);
}

/* Botão hamburger (mobile) */
.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger-btn i {
    color: var(--white);
    font-size: 22px;
    transition: color 0.2s ease;
}

.hamburger-btn:hover i {
    color: var(--brand-accent);
}

/* Ações do usuário */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── Busca expansível ── */
.header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    flex-shrink: 0;
    z-index: 2;
}

.search-toggle-btn i {
    color: var(--white);
    font-size: 15px;
}

.header-search-form {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--black-foreground);
    border-radius: 6px;
    z-index: 1;
}

.header-search-wrapper.is-open {
    .search-toggle-btn {
        border-left: none;
    }

    .header-search-form {
        width: 200px;
        opacity: 1;
    }

    .search-toggle-btn {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
}

.header-search-form input {
    flex: 1;
    border: 1px solid var(--gray-700);
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: var(--gray-900);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 12px;
    outline: none;
    min-width: 0;
}

.header-search-form input::placeholder {
    color: var(--gray-500);
    font-size: 13px;
}

.header-search-form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background-color: var(--brand-accent);
    border: 1px solid var(--brand-accent);
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    flex-shrink: 0;
}

.header-search-form button[type="submit"] i {
    color: var(--gray-900);
    font-size: 13px;
}

/* ── Conta ── */
.header-account {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: color 0.2s ease;
}

.header-account:hover {
    color: var(--brand-accent);
}

.header-account i {
    font-size: 28px;
    color: inherit;
}

.account-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.account-label span {
    font-family: var(--font-body);
    font-size: 12px;
    color: inherit;
}

.account-label span:first-child {
    font-weight: 400;
}

.account-label span:last-child {
    font-weight: 700;
}

/* ── User dropdown ── */
.header-user-dropdown {
    position: relative;
}

.header-user-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-user-chevron {
    font-size: 11px;
    color: inherit;
    transition: transform 0.2s ease;
}

.header-user-dropdown.is-open .header-user-chevron {
    transform: rotate(180deg);
}

.header-user-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--overlay-dark-soft);
    min-width: 210px;
    padding: 8px 0;
    z-index: 200;
    flex-direction: column;

    &::before {
        content: "";
        position: absolute;
        top: -7px;
        right: 18px;
        width: 14px;
        height: 14px;
        background: var(--white);
        transform: rotate(45deg);
        border-radius: 2px;
        box-shadow: -2px -2px 5px var(--overlay-dark-soft);
    }
}

.header-user-dropdown.is-open .header-user-menu {
    display: flex;
}

.header-user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    transition:
        background 0.15s,
        color 0.15s;

    i {
        font-size: 14px;
        width: 16px;
        color: var(--gray-500);
    }

    &:hover {
        background: var(--surface-400);
        color: var(--black);

        i {
            color: var(--black);
        }
    }
}

.header-user-menu-logout {
    color: var(--danger);

    i {
        color: var(--danger);
    }

    &:hover {
        background: var(--danger-bg);
        color: var(--danger-dark);

        i {
            color: var(--danger-dark);
        }
    }
}

.header-user-menu-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 6px 0;
}

/* ── Carrinho ── */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: color 0.2s ease;
}

.header-cart:hover {
    color: var(--brand-accent);
}

.header-cart i {
    font-size: 28px;
    color: inherit;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--brand-accent);
    color: var(--gray-900);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* ── Mobile ── */
.account-label {
    display: none;
}

.header-search-desktop {
    display: none;
}

.header-search-mobile {
    display: flex;
    align-items: center;
    gap: 0;
    padding-bottom: 16px;
}

.header-search-mobile input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--gray-600);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: var(--gray-900);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}

.header-search-mobile input::placeholder {
    color: var(--gray-500);
}

.header-search-mobile button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    background: var(--brand-accent);
    border: 1px solid var(--brand-accent);
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    flex-shrink: 0;
}

.header-search-mobile button[type="submit"] i {
    color: var(--white);
    font-size: 16px;
}

/* ── Mobile: esconder conta (vai pro offcanvas) ── */
.header-account-desktop {
    display: none;
}

/* ── Desktop ── */
@media (min-width: 992px) {
    .hamburger-btn {
        display: none;
    }

    .header-search-form input {
        padding: 10px 12px;
    }

    .nav-links {
        display: flex;
    }

    .account-label {
        display: flex;
    }

    .header-search-desktop {
        display: flex;
        flex-direction: row-reverse;
    }

    .header-search-form button[type="submit"] {
        display: none !important;
    }

    .header-search-mobile {
        display: none;
    }

    .header-search-mobile button[type="submit"] {
        display: none;
    }

    .header-account-desktop {
        display: flex;
        align-items: center;
    }
}

/* Banner Carousel */
.banner-carousel {
    width: 100%;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 503px;
    aspect-ratio: 819/430;
    object-fit: cover;
    object-fit: cover;
    display: block;
}

@media (min-width: 1280px) {
    .banner-swiper .swiper-slide img {
        height: 450px;
    }
}

.banner-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--white);
    opacity: 0.6;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: var(--brand-accent);
    opacity: 1;
}

/* Featured Carousel */

.featured-carousel {
    padding-bottom: 40px !important;
}

.featured-carousel .item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
}

@media (min-width: 1280px) {
    .featured-carousel .item {
        height: 560px;
    }
}

.featured-carousel .item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--overlay-dark-max) 0%,
        var(--overlay-dark-soft) 60%,
        transparent 100%
    );
    border-radius: 8px;
}

.featured-carousel .item-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    gap: 12px;
}

.featured-carousel .item-body h3 {
    color: var(--white);
    font-size: 25px;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.featured-carousel .item-body p {
    color: var(--gray-300);
    font-size: 13px;
}

.featured-carousel .item-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 2px solid var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 10px;
    transition: all 0.3s ease-in-out;
}

.featured-carousel .item:hover .item-arrow {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--black);
}

.featured-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-400);
    opacity: 1;
}

.featured-carousel .swiper-pagination-bullet-active {
    background: var(--brand-primary);
}

/* Products Swiper */
.products-swiper-section {
    padding: 40px 20px;
}

.products-swiper-wrapper .swiper-button-next::after,
.products-swiper-wrapper .swiper-button-prev::after {
    display: none !important;
}

.products-swiper-wrapper .swiper-button-next,
.products-swiper-wrapper .swiper-button-prev {
    background-color: var(--gray-800);
    border-radius: 5px;
    padding: 0px 21px;
    color: var(--white);
}

.products-swiper-title {
    font-size: 32px;
    margin-bottom: 60px;
    color: var(--gray-900);
}

@media (min-width: 1280px) {
    .products-swiper-title {
        font-size: 48px;
        margin-bottom: 30px;
    }
}

.products-swiper-wrapper {
    padding-inline: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.products-swiper {
    flex: 1;
    min-width: 0;
}

.products-swiper .swiper-wrapper {
    align-items: stretch;
}

.products-swiper .swiper-slide {
    height: auto;
    /* display: flex; */
}

/* Product Card */
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 16px 16px;
    background-color: var(--white);
}

.product-card-image img {
    width: 100%;
    max-width: 180px;
    height: 260px;
    object-fit: contain;
    display: block;
}

.product-card-tags {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
}

.product-card-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    border-radius: 4px;
    padding: 3px 8px;
    background: var(--white);
    font-family: var(--font-body);
}

.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.product-card-body h3 {
    font-size: 1rem;
    color: var(--gray-900);
    line-height: 1.3;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1rem * 1.3 * 2);
}

.product-card-body strong {
    font-size: 1.1rem;
    color: var(--gray-900);
    font-family: var(--font-body);
    font-weight: 700;
}

.product-card-body p {
    font-size: 11px;
    color: var(--gray-600);
}

.product-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card-btn {
    font-weight: 700;
    margin-top: 8px;
    padding: 12px;
}

/* Promo Banners */
.promo-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-banner {
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.promo-banner-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-dark-strong);
}

.promo-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;

    span {
        width: fit-content;
        padding-inline: 60px;
        font-size: 14px;
    }
}

.promo-banner-content p {
    color: var(--white);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: -1px;
    line-height: 1.2;
    font-weight: 400;
    font-size: 24px;
}

.promo-banner-content h2 strong {
    font-family: var(--font-heading);
    font-weight: 700;
}

@media (min-width: 1280px) {
    .promo-banner-content p {
        font-size: 40px;
    }

    .promo-banner {
        padding: 50px;
    }
}

.promo-banner-img {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Line Carousel */
.premium-line-section {
    padding-block: 40px;
    margin-top: 50px;
}

.premium-line-carousel-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.premium-line-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-line-carousel {
    flex: 1;
    min-width: 0;
}

.premium-line-carousel-wrapper .swiper-button-next::after,
.premium-line-carousel-wrapper .swiper-button-prev::after {
    display: none !important;
}

.premium-line-carousel-wrapper .swiper-button-next,
.premium-line-carousel-wrapper .swiper-button-prev {
    color: var(--gray-600);
}

.premium-line-carousel-wrapper .swiper-button-next:hover,
.premium-line-carousel-wrapper .swiper-button-prev:hover {
    color: var(--gray-900);
}

.premium-line-carousel-item {
    display: flex;
    justify-content: center;
}

.premium-line-carousel-item img {
    width: 500px;
    /* height: 500px; */
    object-fit: cover;
    display: block;
}

.premium-line-info {
    border-radius: 5px;
    background-color: var(--black-foreground);
}

.premium-line-info-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.premium-line-info-text.is-expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.premium-line-info-readmore {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0;
    margin-top: 4px;
    text-decoration: underline;
}

.premium-line-info h3 {
    color: var(--brand-accent);
    font-size: 30px;
    margin-bottom: 10px;
}

.premium-line-info p {
    color: var(--white);
}

.premium-line-info {
    margin-top: 60px;
    padding-block: 50px;
}

@media (min-width: 1280px) {
    .premium-line-info {
        padding: 80px 60px;
    }
}

.premium-line-info small {
    display: block;
    color: var(--white);
    margin-top: 15px;
    margin-bottom: 30px;
}

.premium-line-info-btn {
    font-size: 15px;
    padding: 15px 60px;
}

.premium-line-info-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.premium-line-info-price-current {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
}

.premium-line-info-price-old {
    color: var(--gray-400);
    font-size: 16px;
    text-decoration: line-through;
}

.premium-line-info-price small {
    display: block;
    width: 100%;
    color: var(--gray-400);
    font-size: 13px;
    margin: 0;
}

/* Combos Section */
.combos-section {
    padding: 20px;
    position: relative;
    min-height: 720px;
    display: flex;
    border-radius: 5px;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding-bottom: 20px;
}

.combos-card {
    position: relative;
    width: 100%;
    background-color: var(--black-foreground);
    padding: 32px 24px;
    display: flex;
    border-radius: 5px;
    flex-direction: column;
    gap: 20px;
}

.combos-card h2 {
    color: var(--brand-accent);
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.combos-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

@media (min-width: 1280px) {
    .combos-list {
        gap: 24px;
    }
}

.combos-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.combos-list strong {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.combos-list span {
    color: var(--gray-500);
    font-size: 11px;
}

.combos-btn {
    padding-inline: 40px;
    font-size: 12px;
    width: 100%;
}

@media (min-width: 1280px) {
    .combos-section {
        min-height: unset;
        align-items: center;
        justify-content: flex-end;
        padding: 40px;
    }

    .combos-card {
        width: 420px;
        flex-shrink: 0;
    }

    .combos-card h2 {
        font-size: 28px;
    }

    .combos-list strong {
        font-size: 16px;
    }

    .combos-list span {
        font-size: 13px;
    }

    .combos-btn {
        font-size: 16px;
    }
}

/* Content Block */
.content-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-block: 40px;
}

.content-block img {
    width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.text-block-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-block-container .title {
    font-size: 28px;
    line-height: 1.2;
    color: var(--gray-900);
}

.text-block-container .body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-700);
}

@media (min-width: 1280px) {
    .content-block {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .content-block > div:first-child {
        flex: 0 0 55%;
    }

    .content-block > .text-block-container {
        flex: 1;
    }
}

/* About Section */
.about-section {
    padding-block: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.video-player {
    margin-block: auto;
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--gray-900);
}

.video-player-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-player-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.video-player-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 71px;
    height: 71px;
    border-radius: 15px;
    background: rgba(var(--brand-primary-dark-rgb), 0.75);
    background: var(--overlay-dark-strong);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        border-color 0.2s;
    padding-left: 4px;
}

.video-player-play:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--gray-900);
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.video-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-900);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-900);
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

@media (min-width: 1280px) {
    .video-player {
        aspect-ratio: 1/1;
        border-radius: 5px !important;
    }

    .video-cta {
        padding-left: max(
            var(--gutter-desktop),
            calc((100vw - var(--container-max)) / 2)
        );
        padding-right: max(
            var(--gutter-desktop),
            calc((100vw - var(--container-max)) / 2)
        );
    }

    .video-cta .video-cta__text {
        white-space: normal;
        margin-top: 30px;
    }
}

.about-body small {
    font-size: 20px;
    font-weight: 800;

    color: var(--brand-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-body h2 {
    font-size: 36px;
    color: var(--gray-900);
    line-height: 1.2;
}

.about-body p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.7;
}

@media (min-width: 1280px) {
    .about-body {
        padding-left: 60px;
    }
}

/* Newsletter Section */
.newsletter-section {
    margin-block: 100px;
}

.newsletter-wrapper {
    background-color: var(--black-foreground);
    border-radius: 8px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-section h2 {
    color: var(--white);
    font-size: 32px;
    line-height: 1.2;
}

.newsletter-section p {
    color: var(--gray-400);
    font-size: 20px;
    line-height: 1.7;
}

@media (min-width: 1280px) {
    .newsletter-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
        padding-right: 140px;
    }

    .newsletter-section p {
        padding-right: 140px;
    }

    .newsletter-wrapper {
        padding-inline: 70px;
    }
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.newsletter-form input {
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--brand-accent);
}

@media (min-width: 1280px) {
    .newsletter-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .newsletter-text {
        width: 50%;
    }

    .newsletter-form {
        width: 50%;
        margin-top: 0;
    }
}

/* Contact Form */
.contact-section {
    margin-block: 100px;
}

.contact-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    margin-inline: auto;
}

.contact-wrapper h2 {
    color: var(--brand-primary-dark);
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-family: var(--font-body);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    /* 125% */
    letter-spacing: 0.35px;
}

.contact-wrapper p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid var(--gray-300);
    background: transparent;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 14px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
}

.contact-form textarea {
    min-height: 120px;
}

/* Footer */
.site-footer {
    background-color: var(--footer-bg);
    margin-top: 40px;
}

.safe-buy {
    padding-bottom: 60px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 764px) {
    .safe-buy img {
        max-width: 180px;
    }
}

.site-footer-top {
    padding-block: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 1280px) {
    .safe-buy a {
        display: flex;
        flex-grow: 1;
        align-items: center;
    }

    .site-footer-top {
        padding-top: 50px;
        padding-bottom: 225px;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col ul {
        padding-right: 100px;
        gap: 20px !important;
    }
}

@media (min-width: 992px) {
    .site-footer-top {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li,
.footer-col ul li a {
    color: var(--gray-500);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--brand-accent);
}

.footer-col ul li span {
    display: block;
    color: var(--gray-500);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--brand-accent);
    color: var(--cta-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-social-icon:hover {
    opacity: 0.85;
}

.site-footer-bottom {
    background-color: var(--white);
}

.site-footer .rights {
    background-color: var(--footer-bottom-bg);
    color: var(--white);
    text-align: center;
    font-size: 12px;
    padding-block: 20px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 52px;
    height: 52px;
    background-color: #25d366;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--overlay-dark);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float i {
    color: var(--white);
    font-size: 26px;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px var(--overlay-dark);
}

@media (min-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 28px;
        right: 28px;
    }

    .whatsapp-float i {
        font-size: 32px;
    }
}

.about-us-info-block-one,
.about-us-info-block-two .content,
.video-cta {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-cta .video-player {
    border-radius: 0px;
    width: 800px;
    max-width: 100%;
    height: 450px;
    margin-inline: auto;
}

.about-us-info-block-one img,
.about-us-info-block-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 5px;
}

.about-us-info-block-two .content {
    padding: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 5px;
}

.video-cta__text {
    white-space: pre-line;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-cta__text p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.video-cta__btn {
    font-weight: 700;
    width: fit-content;
    padding-inline: 50px;
    margin-top: 8px;
}

/* Clube do vinho */

.club-benefits {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.club-benefits__title {
    font-size: 36px;
    color: var(--gray-900);
    line-height: 1.15;
    text-align: center;
}

.club-benefits__list {
    list-style: none;
    gap: 24px;
}

@media (min-width: 1280px) {
    .club-benefits__list,
    .faq .accordion {
        padding-left: max(
            var(--gutter-desktop),
            calc((100vw - var(--container-max)) / 2)
        ) !important;
        padding-right: max(
            var(--gutter-desktop),
            calc((100vw - var(--container-max)) / 2)
        ) !important;
    }
}

.club-benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.club-benefits__icon {
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
    width: 82px;
    height: 82px;
    background-color: var(--brand-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
}

.club-benefits__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.club-benefits__content strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
}

.club-benefits__content p {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.6;
}

.club-benefits__button {
    font-weight: 700;
    width: fit-content;
    padding-inline: 50px;
    margin-inline: auto;
}

/* ── Clube de Vinhos — Cards de Planos ── */
.club-plans {
    margin-top: 80px;
    background-color: var(--gray-100);
    padding: 80px 0;
}

.club-plans__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 12px;
}

.club-plans__subtitle {
    font-size: 15px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 48px;
    max-width: 500px;
    margin-inline: auto;
    line-height: 1.6;
}

.club-plans__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .club-plans__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .club-plans__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.club-plan-card {
    position: relative;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.club-plan-card:hover {
    box-shadow: 0 8px 32px var(--overlay-dark-soft);
    border-color: var(--gray-300);
}

.club-plan-card--highlighted {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary);
}

.club-plan-card--highlighted:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 32px rgba(var(--brand-primary-rgb), 0.2);
}

.club-plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-accent);
    color: var(--gray-900);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.club-plan-card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.club-plan-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.club-plan-card--highlighted .club-plan-card__name {
    color: var(--white);
}

.club-plan-card__description {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

.club-plan-card--highlighted .club-plan-card__description {
    color: var(--overlay-light-strong);
}

.club-plan-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.club-plan-card__price-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
}

.club-plan-card--highlighted .club-plan-card__price-label {
    color: var(--overlay-light-strong);
}

.club-plan-card__price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.club-plan-card__price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-primary);
}

.club-plan-card--highlighted .club-plan-card__price-currency {
    color: var(--brand-accent);
}

.club-plan-card__price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.club-plan-card--highlighted .club-plan-card__price-amount {
    color: var(--white);
}

.club-plan-card__price-period {
    font-size: 13px;
    color: var(--gray-500);
}

.club-plan-card--highlighted .club-plan-card__price-period {
    color: var(--overlay-light-strong);
}

.club-plan-card__benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.club-plan-card__benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}

.club-plan-card--highlighted .club-plan-card__benefit {
    color: var(--overlay-light-max);
}

.club-plan-card__benefit-icon {
    color: var(--brand-primary);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.club-plan-card--highlighted .club-plan-card__benefit-icon {
    color: var(--brand-accent);
}

.club-plan-card__cta {
    width: 100%;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
}

@media (min-width: 1280px) {
    .club-plans__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1100px;
        margin-inline: auto;
    }
}

/* FAQ / Accordion */
.faq {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq__title {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 40px;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.faq__subtitle {
    color: var(--black);
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    text-align: center;
    font-weight: 300;
    line-height: normal;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion__toggle {
    display: none;
}

.accordion__item {
    border-bottom: 1px solid var(--gray-300);
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 20px;
    cursor: pointer;
    user-select: none;
}

.accordion__header span,
.accordion__header .accordion__question {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
}

.accordion__icon {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--gray-700);
    transition: transform 0.3s ease;
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: max-height 0.35s ease;
}

.accordion__body p {
    padding-bottom: 20px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
    /* border: 1.5px solid var(--gray-300); */
    border-radius: 4px;
    padding: 14px;
}

/* Estado aberto */
.accordion__toggle:checked ~ .accordion__header .accordion__icon {
    transform: rotate(180deg);
}

.accordion__toggle:checked ~ .accordion__body {
    max-height: 600px;
}

/* Price Range Slider */
.price-range {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-range__labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.price-range__track-wrapper {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
}

.price-range__track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
    pointer-events: none;
}

.price-range__fill {
    position: absolute;
    height: 100%;
    background: var(--brand-accent);
    border-radius: 2px;
}

.price-range__input {
    position: absolute;
    width: 100%;
    height: 4px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    outline: none;
}

.price-range__input::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-accent);
    border: 2px solid var(--gray-900);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.15s;
}

.price-range__input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.price-range__input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-accent);
    border: 2px solid var(--gray-900);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.15s;
}

/* Filter Checklist */
.filter-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
}

.filter-checklist--switches {
    gap: 0;
    padding: 0;
}

.filter-checklist--switches li {
    border-bottom: 1px solid var(--gray-300);
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
    cursor: pointer;
    user-select: none;
}

.filter-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid var(--gray-400);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.filter-check input[type="checkbox"]:checked {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.filter-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid var(--cta-text);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.filter-check input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.filter-check input[type="radio"]:checked {
    border-color: var(--brand-accent);
}

.filter-check input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.filter-check span {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.4;
}

.filter-check:hover span {
    color: var(--gray-900);
}

.filter-check:hover input[type="checkbox"],
.filter-check:hover input[type="radio"] {
    border-color: var(--brand-accent);
}

/* Filter Check — switch (filtros boolean) */
.filter-check--switch {
    justify-content: space-between;
    padding: 20px 0;
}

.filter-check--switch span {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
}

.filter-check--switch input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 38px;
    height: 22px;
    flex-shrink: 0;
    border: 2px solid var(--gray-400);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.filter-check--switch input[type="checkbox"]::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gray-400);
    transition:
        left 0.2s,
        background 0.2s;
}

.filter-check--switch input[type="checkbox"]:checked {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.filter-check--switch input[type="checkbox"]:checked::after {
    left: 18px;
    top: 2px;
    width: 14px;
    height: 14px;
    border: none;
    transform: none;
    background: var(--cta-text);
}

.filter-check--switch:hover input[type="checkbox"] {
    border-color: var(--brand-accent);
}

.section-text-image {
    display: flex;
    flex-direction: column;
    gap: 60px;

    img {
        border-radius: 5px;
    }
}

/* Promo Hero Banner */
.promo-hero {
    padding-block: 20px;
}

.promo-hero__banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 504px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 24px;
}

@media (min-width: 1280px) {
    .promo-hero__banner {
        padding-left: 90px;
    }

    .promo-hero__title {
        font-size: 40px !important;
    }
}

.promo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--overlay-dark-max) 0%,
        var(--overlay-dark) 70%,
        transparent 100%
    );
}

.promo-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-hero__title {
    font-size: 40px;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.promo-hero__subtitle {
    font-size: 14px;
    color: var(--gray-300);
}

.promo-hero__btn {
    margin-top: 10px;
    width: fit-content;
    padding-block: 10px;
    padding-inline: 60px;
    font-size: 13px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .promo-hero__banner {
        height: 280px;
        align-items: center;
    }

    .promo-hero__title {
        font-size: 34px;
    }
}

/* Product Grid Header */
.product-grid {
    margin-top: 20px;
}

.product-grid-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block: 16px;
}

.product-grid-header .active-filters {
    order: 1;
    width: 100%;
}

@media (min-width: 1280px) {
    .product-grid-header .active-filters {
        order: 0;
        width: auto;
    }
}

.product-grid-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1.5px solid var(--gray-900);
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.product-grid-filter-btn:hover {
    background: var(--gray-900);
    color: var(--white);
}

/* Custom Select */
.custom-select {
    position: relative;
}

.custom-select__trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1.5px solid var(--gray-900);
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    white-space: nowrap;
}

.custom-select__trigger:hover {
    background: var(--gray-100);
}

.custom-select__icon {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.custom-select.is-open .custom-select__icon {
    transform: rotate(180deg);
}

.custom-select__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 100%;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    list-style: none;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 4px 16px var(--overlay-dark-soft);
}

.custom-select.is-open .custom-select__dropdown {
    display: block;
}

.custom-select__option {
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-900);
    cursor: pointer;
    transition: background 0.15s;
}

.custom-select__option:hover {
    background: var(--gray-100);
}

/* Offcanvas Filtros */
.offcanvas--filters {
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
}

/* Active Filters Row */
.active-filters {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 16px;
}

.active-filters.has-filters {
    display: flex;
}

@media (min-width: 1280px) {
    .active-filters {
        flex: 1;
        padding-bottom: 0;
    }

    .active-filters__tag {
        padding: 13px !important;
        border-radius: 8px;
        font-size: 14px;
    }
}

.active-filters__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filters__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--brand-accent);
    border-radius: 6px;
    padding: 7px 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--cta-text);
}

.active-filters__remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 13px;
    color: var(--cta-text);
    display: flex;
    align-items: center;
}

.active-filters__clear {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-900);
    text-decoration: underline;
    padding: 0;
    white-space: nowrap;
}

.active-filters__clear:hover {
    color: var(--brand-primary);
}

.product-grid {
    gap: 25px;
}

@media (max-width: 991px) {
    .product-grid {
        padding-inline: 10px !important;
    }
}

@media (min-width: 992px) {
    .product-grid {
        padding-inline: 33px;
    }
}

@media (min-width: 1280px) {
    .product-grid {
        padding-inline: 0;
    }
}

/* 404 Page */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--white);
}

.error-page__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 810px;
    gap: 12px;
}

.error-page__image {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.error-page__title {
    font-size: 64px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

.error-page__subtitle {
    font-size: 24px;
    color: var(--gray-600);
}

.error-page__btn {
    margin-top: 8px;
    padding: 12px 48px;
    font-weight: 700;
}

.checkout-container {
    background: var(--surface-50);
    box-shadow: 0 4px 25px 0 var(--overlay-dark-soft);
}

.cart-list-container {
    padding-inline: 13px;
    padding-block: 22px;
}

.cart-list-header {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);

    span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--black);
        font-weight: 700;
        font-size: 24px;
    }

    .cart-count {
        display: inline;
        color: var(--gray-500);
        font-weight: 400;
    }
}

.cart-list {
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-product-card {
    border-radius: 5px;
    border: 1px solid var(--gray-300);
    display: flex;
    padding: 15px;
}

.cart-product-card-body {
    padding-left: 18px;

    h5 {
        padding-right: 15px;
        font-size: 20px;
        color: var(--black);
        font-weight: 700;
    }
}

.cart-product-card-body .quantity-and-price {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;

    .price {
        display: flex;
        flex-direction: column;

        span {
            color: var(--black);
            font-weight: 700;
            font-size: 18px;
        }

        small {
            font-size: 13px;
            color: var(--gray-400);
        }
    }
}

.cart-product-card-body .quantity-and-price .quantity {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid var(--black);
    border-radius: 5px;
    padding: 6px 9px;
    background: var(--surface-300);
}

.cart-product-card-body .quantity-and-price .quantity button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--black);
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-card-body .quantity-and-price .quantity span {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    min-width: 16px;
    text-align: center;
}

.cart-product-card-remove {
    button {
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    i {
        color: var(--gray-400);
    }
}

@media (min-width: 1280px) {
    .cart-product-card-remove {
        margin-left: auto;
    }

    .cart-product-card {
        padding: 30px;
    }
}

.cart-product-card-image img {
    width: 100%;
    height: 100%;
}

.free-ship {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 50px;
    text-align: center;

    p {
        font-size: 22px;
        letter-spacing: -0.5px;
        color: var(--black);
    }
}

.free-ship-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-300);
    border-radius: 99px;
    overflow: hidden;
}

.free-ship-bar-fill {
    height: 100%;
    background: var(--success);
    border-radius: 99px;
    transition: width 0.4s ease;
}

.order-summary {
    padding: 28px 24px 0;

    h4 {
        font-size: 22px;
        font-weight: 700;
        color: var(--black);
        font-family: var(--font-body);
        margin-bottom: 24px;
    }
}

.order-summary-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid var(--gray-200);

    span,
    strong {
        font-size: 16px;
        font-family: var(--font-body);
        color: var(--black);
    }
}

.order-summary-free {
    font-style: italic;
}

.order-summary-total {
    padding: 20px 0 28px;

    .order-summary-row {
        border-top: none;
        align-items: center;
    }

    strong {
        font-size: 18px;
    }
}

.order-summary-total-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;

    strong {
        font-size: 20px;
        font-weight: 700;
    }

    small {
        font-size: 13px;
        color: var(--gray-600);
    }
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--brand-accent);
    border-radius: 8px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--cta-text);
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.2s ease;
    cursor: pointer;

    &:hover {
        background: var(--cta-hover-bg);
    }
}

.btn-checkout--pulse {
    animation: btn-checkout-pulse 1.6s ease-out infinite;
}

@keyframes btn-checkout-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--brand-accent-rgb), 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--brand-accent-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--brand-accent-rgb), 0);
    }
}

.checkout-address-container {
    padding: 28px 24px;
}

.checkout-address-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;

    p {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: var(--black);
        letter-spacing: -0.3px;
    }
}

.checkout-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: var(--gray-800);
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s ease;

    &:hover {
        background: var(--gray-900);
    }
}

.checkout-address-form {
    display: flex;
    flex-direction: column;
    gap: 12px;

    input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid var(--gray-300);
        border-radius: 8px;
        font-size: 15px;
        font-family: var(--font-body);
        color: var(--black);
        background: var(--white);
        outline: none;
        transition: border-color 0.2s ease;

        &::placeholder {
            color: var(--gray-400);
        }

        &:focus {
            border-color: var(--gray-600);
        }
    }

    .btn-checkout {
        margin-top: 8px;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }
}

.checkout-address-field {
    display: flex;
    flex-direction: column;
    gap: 4px;

    label {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-700);
    }
}

.checkout-field-error {
    font-size: 12px;
    color: var(--danger);
    margin-top: 2px;
}

.checkout-saved-addresses {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-address-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    transition: border-color 0.2s ease;

    &:hover {
        border-color: var(--gray-400);
    }
}

.checkout-address-card--selected {
    border-color: var(--black);
}

.checkout-address-card--editing {
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, var(--brand-primary), var(--brand-accent), var(--brand-primary-dark)) border-box;
}

.checkout-address-card-radio {
    padding-top: 2px;
    flex-shrink: 0;
}

.checkout-address-radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gray-400);
    background: transparent;
    transition:
        border-color 0.2s,
        background 0.2s;

    &.active {
        border-color: var(--black);
        background: var(--black);
        box-shadow: inset 0 0 0 3px var(--white);
    }
}

.checkout-address-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: var(--gray-700);
    flex: 1;

    strong {
        font-size: 15px;
        color: var(--black);
        margin-bottom: 2px;
    }
}

.checkout-address-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    flex-shrink: 0;
    align-self: stretch;
}

.checkout-address-default-tag {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
}

.checkout-address-edit-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 13px;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
    margin-top: auto;

    &:hover {
        color: var(--gray-800);
    }
}

.checkout-address-default-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    user-select: none;

    input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--black);
        cursor: pointer;
        flex-shrink: 0;
    }
}

.checkout-shipping {
    padding: 28px 24px;
}

.checkout-shipping-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    font-family: var(--font-body);
    margin-bottom: 24px;
}

.checkout-shipping-loading {
    font-size: 13px;
    color: var(--gray-500);
}

.checkout-shipping-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    transition: border-color 0.2s;

    &:hover {
        border-color: var(--gray-400);
    }
}

.checkout-shipping-option--selected {
    border-color: var(--black);
    background: var(--surface-300);
}

.checkout-shipping-radio {
    flex-shrink: 0;
}

.checkout-shipping-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.checkout-shipping-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

.checkout-shipping-deadline {
    font-size: 11px;
    color: var(--gray-500);
}

.checkout-shipping-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-800);
    white-space: nowrap;
    flex-shrink: 0;
}

.checkout-pix-badge {
    display: inline-block;
    background: var(--success-bg);
    color: var(--success-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.checkout-pix-hint {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

.checkout-pix-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.checkout-pix-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 8px 0 12px;

    img {
        width: 180px;
        height: 180px;
        border-radius: 8px;
        border: 1px solid var(--gray-200);
    }
}

.checkout-locked {
    pointer-events: none;
    opacity: 0.55;
    user-select: none;
}

.checkout-pix-copy-wrap {
    display: flex;
    width: 100%;
    gap: 8px;
}

.checkout-pix-copy-input {
    flex: 1;
    padding: 10px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 12px;
    font-family: monospace;
    color: var(--gray-700);
    background: var(--surface-300);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.checkout-pix-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;

    &:hover {
        opacity: 0.8;
    }
}

.checkout-pix-timer {
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 6px;

    strong {
        color: var(--black);
        font-size: 15px;
    }
}

.checkout-pix-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;

    i {
        color: var(--success-dark);
        font-size: 15px;
        flex-shrink: 0;
        margin-top: 2px;
    }
}

.checkout-coupon-applied {
    .order-summary-row {
        margin: 0;
    }
}

.checkout-address-new-btn {
    display: flex;
    align-items: center;
    margin-top: 28px;
    gap: 8px;
    padding: 12px 16px;
    border: 1.5px dashed var(--gray-300);
    border-radius: 10px;
    background: transparent;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;

    &:hover {
        border-color: var(--black);
        color: var(--black);
    }
}

.checkout-payment {
    padding: 28px 24px;
}

.checkout-payment-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.3px;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.checkout-saved-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;

    small {
        font-size: 13px;
        color: var(--gray-600);
    }
}

.checkout-saved-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1.5px solid var(--black);
    border-radius: 8px;
    padding: 14px 16px;

    strong {
        font-size: 15px;
        font-weight: 700;
        color: var(--black);
    }

    span {
        font-size: 13px;
        color: var(--gray-600);
    }
}

.checkout-payment-or {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 14px;
}

.checkout-payment-accordion .accordion__item {
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray-300) !important;
    transition:
        border-color 0.2s ease,
        border-width 0.2s ease;
}

.checkout-payment-accordion .accordion__item:has(.accordion__toggle:checked) {
    border: 2px solid var(--brand-accent);
    border-bottom: 2px solid var(--brand-accent) !important;
}

.checkout-payment-accordion .accordion__header {
    padding: 16px;
}

.order-confirmed {
    padding: 40px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.order-confirmed-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;

    h4 {
        font-size: 26px;
        font-weight: 700;
        color: var(--black);
        letter-spacing: -0.5px;
        font-family: var(--font-body);
    }

    p {
        font-size: 15px;
        color: var(--gray-600);
        margin: 0;
    }
}

.order-confirmed-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;

    i {
        color: var(--white);
        font-size: 52px;
    }
}

.order-confirmed-divider {
    width: 100%;
    border: none;
    border-top: 1px solid var(--gray-200);
    margin-bottom: 28px;
}

.order-confirmed-body {
    text-align: left;
    width: 100%;
    margin-bottom: 32px;

    h5 {
        font-size: 16px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 16px;
        line-height: 1.4;
        letter-spacing: -0.2px;
        font-family: var(--font-body);
    }

    ul {
        padding-left: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;

        li {
            font-size: 14px;
            font-family: var(--font-body);
            color: var(--gray-700);
            line-height: 1.6;
        }
    }
}

.order-confirmed-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--surface-100);
    border-radius: 8px;
}

.order-confirmed-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    font-family: var(--font-body);

    span {
        color: var(--gray-600);
    }
    strong {
        color: var(--black);
        text-align: right;
    }
}

.order-confirmed-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.order-confirmed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);

    span {
        font-size: 14px;
        color: var(--black);
        font-weight: 500;
    }

    small {
        font-size: 13px;
        color: var(--gray-500);
    }

    strong {
        font-size: 14px;
        color: var(--black);
        margin-left: auto;
        flex-shrink: 0;
    }
}

.order-confirmed-item-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.order-confirmed-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.order-confirmed-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.order-confirmed-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--gray-700);

    &--total {
        font-size: 16px;
        color: var(--black);
        padding-top: 8px;
        border-top: 1px solid var(--gray-200);
        margin-top: 4px;
    }
}

.coupon {
    padding: 24px;

    h4 {
        font-size: 22px;
        font-weight: 700;
        color: var(--black);
        font-family: var(--font-body);
        margin-bottom: 16px;
    }
}

.coupon-form {
    display: flex;
    flex-direction: column;
    gap: 10px;

    input {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid var(--gray-300);
        border-radius: 8px;
        font-size: 15px;
        font-family: var(--font-body);
        color: var(--black);
        background: var(--white);
        outline: none;

        &::placeholder {
            color: var(--gray-400);
        }

        &:focus {
            border-color: var(--gray-500);
        }
    }

    button[type="submit"] {
        width: 100%;
        padding: 14px;
        background: var(--white);
        border: 1.5px solid var(--brand-accent);
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 700;
        color: var(--brand-accent);
        cursor: pointer;
        transition:
            background 0.2s ease,
            color 0.2s ease;

        &:hover {
            background: var(--brand-accent);
            color: var(--black);
        }
    }
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--success-dark);
}

.coupon-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--danger);
    padding: 0;
    font-family: var(--font-body);

    &:hover {
        text-decoration: underline;
    }
}

.coupon-error {
    margin-top: 8px;
    font-size: 13px;
    color: var(--danger);
    font-weight: 500;
}

.checkout-address-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-address-submit {
    width: 100%;
}

@media (min-width: 992px) {
    .checkout-address-row {
        flex-direction: row;

        input {
            flex: 1;
        }
    }

    .checkout-address-submit {
        width: calc(100% / 3);
    }
}

@keyframes toast-in-out {
    0% {
        transform: translateX(calc(100% + 48px));
    }

    15% {
        transform: translateX(0);
    }

    85% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100% + 48px));
    }
}

.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--brand-accent);
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 340px;
    z-index: 9999;
    animation: toast-in-out 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.toast-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 4px;
}

.toast-message {
    font-size: 14px;
    color: var(--gray-800);
    margin: 0;
}

.credit-card-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
}

.credit-card-field {
    display: flex;
    flex-direction: column;
    gap: 4px;

    label {
        font-size: 12px;
        font-family: var(--font-body);
        color: var(--gray-600);
    }

    input {
        padding: 14px 16px;
        border: 1px solid var(--gray-300);
        border-radius: 8px;
        font-size: 15px;
        font-family: var(--font-body);
        color: var(--black);
        background: var(--white);
        outline: none;
        width: 100%;

        &::placeholder {
            color: var(--gray-400);
        }

        &:focus {
            border-color: var(--gray-500);
        }
    }
}

.credit-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-cc-badge {
    display: inline-block;
    background: var(--warning-bg);
    color: var(--warning-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.checkout-installments-select {
    padding: 14px 36px 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    outline: none;
    width: 100%;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23424242' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;

    &:focus {
        border-color: var(--gray-500);
    }
}

.checkout-cc-confirmed {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;

    i {
        font-size: 32px;
        color: var(--success-dark);
        flex-shrink: 0;
        margin-top: 2px;
    }

    div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    strong {
        font-size: 16px;
        color: var(--black);
    }

    span {
        font-size: 14px;
        color: var(--gray-600);
    }
}

.credit-card-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.credit-card-submit {
    padding-inline: 36px;
    width: auto;
}

.credit-card-save {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;

    input[type="checkbox"] {
        width: 22px;
        height: 22px;
        border: 1.5px solid var(--gray-400);
        border-radius: 4px;
        accent-color: var(--brand-accent);
        cursor: pointer;
        flex-shrink: 0;
    }

    span {
        font-size: 15px;
        color: var(--black);
    }
}

.pix-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.pix-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--brand-accent);
    border-radius: 8px;
    padding: 12px 20px;

    i {
        font-size: 18px;
        color: var(--black);
        flex-shrink: 0;
    }

    span {
        font-size: 14px;
        font-weight: 500;
        color: var(--black);
    }

    strong {
        font-weight: 700;
    }
}

.pix-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 600px) {
    .pix-body {
        flex-direction: row;
        align-items: flex-start;
    }
}

.pix-qr {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 4px;
}

.pix-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pix-info-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    margin: 0;
}

.pix-info-sub {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.pix-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 6px;

    small {
        font-size: 13px;
        color: var(--gray-600);
    }

    strong {
        font-size: 18px;
        font-weight: 700;
        color: var(--black);
    }
}

.pix-code-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;

    small {
        font-size: 12px;
        color: var(--gray-600);
    }

    p {
        font-size: 12px;
        color: var(--black);
        word-break: break-all;
        line-height: 1.6;
        margin: 0;
    }
}

.pix-copy-btn {
    width: 100%;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.page-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-700);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    flex-shrink: 0;
    transition: background-color 0.2s;

    &:hover {
        background-color: var(--gray-900);
    }
}

.page-title {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.profile-menu-card {
    display: block;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 24px 20px;
    text-decoration: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;

    h3 {
        font-family: var(--font-body);
        font-size: 18px;
        font-weight: 700;
        color: var(--gray-900);
        margin: 0 0 6px 0;
    }

    p {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 400;
        color: var(--gray-600);
        margin: 0;
    }

    &:hover {
        border-color: var(--gray-500);
        box-shadow: 0 2px 8px var(--overlay-dark-soft);
    }
}

.addresses-section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin: 0 0 10px 0;
}

.addresses-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 14px 16px;
}

.address-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.address-card-street {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
}

.address-card-city {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--gray-600);
}

.address-card-icon {
    font-size: 18px;
    color: var(--gray-900);
    flex-shrink: 0;
}

.addresses-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.addresses-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 860px;
}

.terms-section-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: 0;
    margin-bottom: 8px;
}

.terms-section-body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.terms-section {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.terms-section h1,
.terms-section h2,
.terms-section h3,
.terms-section h4,
.terms-section h5,
.terms-section h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.3;
    margin: 24px 0 12px;
}

.terms-section h1:first-child,
.terms-section h2:first-child,
.terms-section h3:first-child,
.terms-section h4:first-child,
.terms-section h5:first-child,
.terms-section h6:first-child {
    margin-top: 0;
}

.terms-section h1 {
    font-size: 26px;
}

.terms-section h2 {
    font-size: 22px;
}

.terms-section h3 {
    font-size: 18px;
}

.terms-section h4,
.terms-section h5,
.terms-section h6 {
    font-size: 15px;
}

.terms-section p {
    margin: 0 0 16px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section ul,
.terms-section ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.terms-section li {
    margin-bottom: 6px;
}

.terms-section li:last-child {
    margin-bottom: 0;
}

.terms-section a {
    color: var(--brand-primary);
    text-decoration: underline;
}

.terms-section strong,
.terms-section b {
    font-weight: 700;
    color: var(--gray-900);
}

.terms-section blockquote {
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--gray-300);
    color: var(--gray-600);
}

.terms-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 16px;
}

.terms-section table th,
.terms-section table td {
    border: 1px solid var(--gray-300);
    padding: 8px 12px;
    text-align: left;
}

.terms-section img {
    max-width: 100%;
    height: auto;
    margin: 0 0 16px;
}

.orders-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;

    .page-header {
        margin-bottom: 0;
    }
}

.orders-filter {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 10px 36px 10px 14px;
    background: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23424242' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    outline: none;

    &:focus {
        border-color: var(--gray-500);
    }
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    overflow: hidden;
}

.order-card-meta {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    background: var(--gray-100);
    padding: 14px 20px;
    flex-wrap: wrap;
}

.order-card-meta a {
    font-weight: 700;
    font-size: 14px;
    padding-inline: 20px;
    padding-block: 10px;
}

.order-card-meta-item {
    margin-block: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.order-status-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1;
}

.order-meta-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-600);
    white-space: nowrap;
}

.order-meta-value {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-card-details-btn {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--brand-primary-dark);
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;

    &:hover {
        opacity: 0.85;
    }
}

.order-card-products {
    display: flex;
    flex-direction: column;
}

.order-product {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-areas:
        "img info"
        "actions actions";
    gap: 12px 16px;
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

.order-product-image {
    grid-area: img;
    width: 80px;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 8px;
    padding-block: 2px;

    img {
        width: 74px;
        height: 95px;
        object-fit: contain;
    }
}

@media (min-width: 1280px) {
    .order-card-meta {
        flex-direction: row;
    }

    .order-product {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .order-product-image {
        width: 80px;
        grid-area: unset;
    }

    .order-product-info {
        grid-area: unset;
    }

    .order-product-actions {
        grid-area: unset;
        width: auto;
        min-width: 180px;

        a {
            padding-inline: 40px;
        }
    }
}

.order-product-info {
    margin-top: auto;
    margin-bottom: auto;
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;

    h4 {
        font-family: var(--font-body);
        font-size: 20px;
        font-weight: 400;
        color: var(--brand-primary);
        margin: 0;
    }

    strong {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 700;
        color: var(--gray-900);
    }

    span {
        font-family: var(--font-body);
        font-size: 13px;
        color: var(--gray-600);
    }
}

.order-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.order-product-actions {
    grid-area: actions;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;

    a {
        font-size: 14px;
        padding-inline: 0;
        padding-block: 14px !important;
        font-weight: 700;
        text-align: center;
    }
}

.order-meta-value--alert {
    color: var(--warning-dark);
}

.order-help-btn {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-primary);
    background: none;
    border: 1px solid var(--brand-primary);
    border-radius: 8px;
    padding: 9px 18px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.2s,
        color 0.2s;

    &:hover {
        background-color: var(--brand-primary);
        color: var(--white);
    }
}

.order-cancel-btn {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--danger);
    background: none;
    border: 1px solid var(--danger);
    border-radius: 8px;
    padding: 9px 18px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background-color 0.2s,
        color 0.2s;

    &:hover {
        background-color: var(--danger);
        color: var(--white);
    }
}

.order-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.order-sidebar-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border-radius: 8px;
}

.order-sidebar-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.order-sidebar-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
}

.order-sidebar-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.order-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-700);

    &--total {
        font-size: 15px;
        color: var(--gray-900);
        padding-top: 8px;
        border-top: 1px solid var(--gray-300);
    }
}

.order-sidebar-free {
    color: var(--success);
    font-weight: 600;
}

.order-sidebar-installments {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gray-500);
    text-align: right;
}

.address-card-delete {
    font-size: 16px;
    color: var(--gray-500);
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s;

    &:hover {
        color: var(--danger);
    }
}

.delete-modal-backdrop {
    position: fixed;
    inset: 0;
    background: var(--overlay-dark-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;

    &[hidden] {
        display: none;
    }
}

.delete-modal {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.delete-modal-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

.delete-modal-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.delete-modal-cancel {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    background: none;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 12px 32px;
    cursor: pointer;
    transition: border-color 0.2s;

    &:hover {
        border-color: var(--gray-500);
    }
}

.cc-number-wrap {
    position: relative;

    input {
        padding-right: 48px;
        width: 100%;
    }
}

.cc-brand-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--gray-500);
    pointer-events: none;
    transition: color 0.2s;
}

.payment-card-number-wrap {
    position: relative;

    .form-input {
        padding-right: 44px;
    }
}

.payment-card-brand-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--gray-500);
    pointer-events: none;
}

.payment-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-input-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
}

.profile-edit-list {
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

.profile-edit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-300);
}

.profile-edit-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.profile-edit-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.profile-edit-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-600);
}

.profile-edit-input {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-600);
    background: none;
    border: none;
    outline: none;
    padding: 0;
    width: 100%;
    cursor: default;

    &.is-password:not(.is-active) {
        opacity: 0.25;
        cursor: default;
        pointer-events: none;
    }

    &.is-active {
        color: var(--gray-900);
        background: var(--white);
        border: 1px solid var(--gray-400);
        border-radius: 6px;
        padding: 6px 10px;
        max-width: 320px;
        cursor: text;
        transition: border-color 0.2s;

        &:focus {
            border-color: var(--gray-700);
        }
    }
}

.profile-edit-submit {
    margin-top: 28px;
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--cta-text);
    background-color: var(--brand-accent);
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    cursor: pointer;
    transition: opacity 0.2s;

    &:hover {
        opacity: 0.85;
    }
}

.profile-edit-password-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-edit-eye {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1;

    &:hover {
        color: var(--gray-900);
    }
}

.profile-edit-actions {
    flex-shrink: 0;
}

.profile-edit-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;

    &:hover {
        color: var(--gray-900);
    }

    &--save {
        color: var(--brand-primary);

        &:hover {
            color: var(--brand-primary-dark);
        }
    }
}

/* ── Galeria do produto ── */
.product-gallery {
    display: flex;
    gap: 12px;
    height: 600px;
}

.product-gallery-thumbs {
    width: 100px;
    flex-shrink: 0;

    .swiper {
        height: 100%;
    }

    .swiper-slide {
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        opacity: 0.5;
        transition:
            opacity 0.2s,
            border-color 0.2s;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        &.swiper-slide-thumb-active {
            opacity: 1;
            border-color: var(--gray-500);
        }
    }
}

.product-gallery-main {
    flex: 1;
    position: relative;

    .swiper {
        height: 100%;
        border: 1px solid var(--gray-200);
        border-radius: 10px;
    }

    .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;

        img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
    }
}

.product-gallery-prev,
.product-gallery-next {
    color: var(--gray-700) !important;

    &::after {
        font-size: 18px !important;
    }
}

/* ── Página interna do produto ── */
.product-view-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1280px) {
    .product-view-info {
        top: 30px;
        position: sticky;
    }

    .order-product-actions {
        width: fit-content;
        a {
            padding-inline: 40px;
        }
    }

    .order-product-price {
        flex-direction: column;
    }
}

.product-view-collection {
    font-size: 14px;
    color: var(--gray-600);
}

.product-view-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -1px;
}

.product-view-origin {
    font-size: 14px;
    color: var(--gray-700);
}

.product-view-ratings {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-rating-badge {
    padding: 5px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    overflow: hidden;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
}

.product-rating-critic {
    padding: 8px 10px;
    color: var(--gray-700);
    background: var(--white);
}

.product-rating-score {
    padding: 8px 10px;
    background-color: var(--brand-primary);
    color: var(--white);
    border-radius: 5px;
}

.product-view-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-view-price-old {
    font-size: 16px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-view-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
}

.product-view-installments,
.product-view-pix {
    font-size: 13px;
    color: var(--gray-600);
}

.product-view-installments-cta {
    background: none;
    border: none;
    padding: 0;
    margin-left: 6px;
    font-size: 13px;
    color: var(--gray-600);
    text-decoration: underline;
    text-decoration-color: var(--gray-400);
    cursor: pointer;
    transition: color 0.15s;
}

.product-view-installments-cta:hover {
    color: var(--gray-900);
    text-decoration-color: var(--brand-accent);
}

.product-view-installments-cta strong {
    font-weight: 700;
}

.installments-modal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    padding: 4px;
}

.installments-modal-row {
    display: grid;
    grid-template-columns: 40px 1fr 120px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
}

.installments-modal-row-n {
    font-weight: 700;
    color: var(--gray-900);
    text-align: left;
}

.installments-modal-row-value {
    font-weight: 600;
    color: var(--gray-900);
    text-align: center;
}

.installments-modal-row-total {
    font-size: 12px;
    color: var(--gray-500);
    text-align: right;
    white-space: nowrap;
}

.product-view-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.product-view-add-btn {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
}

.product-view-download {
    align-self: flex-start;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 700;
}

.product-view-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-qty-btn {
    width: 40px;
    height: 52px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-700);
    cursor: pointer;
    transition: background-color 0.15s;

    &:hover {
        background-color: var(--gray-100);
    }
}

.product-qty-value {
    width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.product-notes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-notes-title {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

@media (min-width: 1280px) {
    .product-notes-title {
        margin-bottom: 25px;
    }
}

.product-notes-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 680px;
}

.product-notes-image {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    height: 340px;
}

.product-details-list {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.product-details-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);

    &:first-child {
        border-top: 1px solid var(--gray-200);
    }

    dt {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 400;
        color: var(--gray-500);
    }

    dd {
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--gray-800);

        a {
            color: var(--gray-800);
            text-decoration: underline;
            text-underline-offset: 3px;

            &:hover {
                color: var(--gray-900);
            }
        }
    }
}

/* Reviews Section */
.reviews-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-300);
}

.reviews-title {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-score {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.reviews-stars,
.review-stars {
    display: flex;
    gap: 4px;
    color: var(--brand-accent);
    font-size: 18px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-300);
}

.review-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.review-item-stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
    font-size: 14px;
}

.review-item-date {
    font-size: 13px;
    color: var(--gray-500);
    margin-left: auto;
}

.review-item-comment {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.review-stars {
    font-size: 16px;
}

.review-item-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.review-item-body {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.review-item-author {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.review-item-location {
    font-size: 13px;
    color: var(--gray-500);
}

.reviews-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    background: none;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;

    &:hover {
        border-color: var(--brand-primary);
        color: var(--brand-primary);
    }
}

/* Review Modal */
.review-modal-backdrop {
    position: fixed;
    inset: 0;
    background: var(--overlay-dark-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;

    &[hidden] {
        display: none;
    }
}

.review-modal {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 28px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-modal-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.review-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--gray-500);
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;

    &:hover {
        color: var(--gray-900);
    }
}

.review-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-modal-stars-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-modal-stars-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.review-modal-stars {
    display: flex;
    gap: 6px;
    font-size: 28px;
    color: var(--gray-300);
    cursor: pointer;

    i {
        transition: color 0.15s;
    }

    i.active,
    i.hovered {
        color: var(--brand-accent);
    }
}

.review-modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-modal-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.review-modal-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--gray-300);
    background: transparent;
    color: var(--gray-900);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.2s;

    &::placeholder {
        color: var(--gray-400);
    }

    &:focus {
        outline: none;
        border-color: var(--brand-accent);
    }
}

.review-modal-textarea {
    resize: none;
    min-height: 110px;
}

.review-modal-submit {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* SweetAlert2 — estilo do site */
.swal2-popup {
    font-family: var(--font-body) !important;
    border-radius: 8px !important;
}

.swal2-title {
    font-size: 20px !important;
    font-weight: 700 !important;
}

.swal2-html-container {
    font-size: 15px !important;
}

.swal-btn-confirm {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 24px !important;
    border-radius: 5px !important;
}

.swal-btn-cancel {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 24px !important;
    border-radius: 5px !important;
    color: var(--gray-900) !important;
}

/* Opções de frete */
.shipping-options {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;

    &:hover {
        border-color: var(--black);
    }
}

.shipping-option--selected {
    border-color: var(--black);
    background: var(--surface-200);
}

.shipping-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shipping-option-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.shipping-option-days {
    font-size: 12px;
    color: var(--gray-500);
}

.shipping-option-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
}

.shipping-free {
    color: var(--success-dark);
    font-weight: 700;
    font-size: 14px;
}

/* ── Favorite Button ──────────────────────────────────────────────────── */

.product-card-meta-row {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.product-card-meta-row > * {
    pointer-events: auto;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--overlay-light-max);
    border-radius: 6px;
    padding: 3px 7px;
}

.product-card-rating-star {
    width: 13px;
    height: 13px;
    fill: var(--warning);
    flex-shrink: 0;
}

@keyframes fav-heart-float {
    0% {
        transform: translate(var(--tx), 0) scale(0.6);
        opacity: 1;
    }
    70% {
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--tx), -38px) scale(1);
        opacity: 0;
    }
}

@keyframes fav-pop {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.45);
    }
    60% {
        transform: scale(0.88);
    }
    80% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fav-release {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    60% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.favorite-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--overlay-light-max);
    border: none;
    cursor: pointer;
    font-size: 15px;
    color: var(--gray-700);
    transition:
        background 0.2s,
        color 0.25s;
    flex-shrink: 0;
}

.favorite-btn:hover {
    background: var(--white);
}

.favorite-btn.is-favorited {
    color: var(--danger);
}

.favorite-btn.is-favorited i {
    font-weight: 900;
}

.favorite-btn.anim-add i {
    animation: fav-pop 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.fav-splash-heart {
    position: absolute;
    pointer-events: none;
    font-size: 11px;
    color: var(--danger);
    line-height: 1;
    animation: fav-heart-float 0.9s ease-out forwards;
}

.favorite-btn.anim-remove i {
    animation: fav-release 0.35s ease-out forwards;
}

@keyframes cart-grin-float {
    0% {
        transform: translate(var(--tx), 0) scale(0.5);
        opacity: 1;
    }
    70% {
        opacity: 0.85;
    }
    100% {
        transform: translate(var(--tx), -42px) scale(1.1);
        opacity: 0;
    }
}

.cart-splash-grin {
    position: absolute;
    pointer-events: none;
    font-size: 13px;
    color: var(--warning);
    line-height: 1;
    animation: cart-grin-float 0.85s ease-out forwards;
}

.product-card-add-btn.is-added i {
    animation: fav-pop 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.product-card-add-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--overlay-light-max);
    border: none;
    cursor: pointer;
    font-size: 15px;
    color: var(--gray-700);
    transition:
        background 0.2s,
        color 0.2s,
        transform 0.15s;
    z-index: 2;
}

.product-card-add-btn:hover {
    background: var(--white);
    color: var(--gray-900);
    transform: scale(1.1);
}

.product-card-add-btn.is-added {
    color: var(--success);
}

.product-view-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 6px 0 12px;
}

.product-view-meta-row .favorite-btn {
    width: 36px;
    height: 36px;
    font-size: 17px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

/* ── Favorites Page ───────────────────────────────────────────────────── */

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .favorites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .favorites-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.favorites-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 80px 20px;
    text-align: center;
}

.favorites-empty-icon {
    font-size: 56px;
    color: var(--gray-300);
}

.favorites-empty-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--gray-800);
}

.favorites-empty-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    max-width: 320px;
}

/* ── Subscription Cards (perfil) ── */
.subscriptions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscription-card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.subscription-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}

.subscription-card__name {
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--gray-900);
    margin: 0 0 4px;
}

.subscription-card__desc {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

.subscription-card__badge {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.subscription-card__badge--active {
    background: var(--success-bg);
    color: var(--success-dark);
}
.subscription-card__badge--pending {
    background: var(--warning-bg);
    color: var(--warning-dark);
}
.subscription-card__badge--overdue {
    background: var(--warning-bg);
    color: var(--warning-dark);
}
.subscription-card__badge--cancelled {
    background: var(--danger-bg);
    color: var(--danger-dark);
}
.subscription-card__badge--paused {
    background: var(--info-bg);
    color: var(--info);
}

.subscription-card__body {
    padding: 20px 24px;
}

.subscription-card__info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .subscription-card__info-grid {
        grid-template-columns: 1fr;
    }
}

.subscription-card__info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.subscription-card__info-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.subscription-card__info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.subscription-card__info-value--free {
    color: var(--success-dark);
}

.subscription-card__footer {
    padding: 14px 24px;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.subscription-card__footer-info {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.subscription-card__footer-info--muted {
    color: var(--gray-400);
}

.subscription-cancel-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--danger-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.15s;
}

.subscription-cancel-btn:hover {
    opacity: 0.75;
}
.subscription-cancel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.subscriptions-cta {
    margin-top: 32px;
    text-align: center;
}

/* ── Mobile Menu (Offcanvas) ── */
.mobile-menu {
    width: 300px;
    background-color: var(--header-bg);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    background-color: var(--brand-primary-dark);
    flex-shrink: 0;
    border-bottom: 2px solid var(--brand-primary);
}

.mobile-menu-logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--overlay-light-soft);
    border: 1px solid var(--overlay-light-soft);
    border-radius: 8px;
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: var(--overlay-light-soft);
    color: var(--brand-accent);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Conta */
.mobile-menu-account {
    padding: 16px 20px;
    background-color: rgba(var(--brand-primary-rgb), 0.25);
    border-bottom: 1px solid var(--overlay-light-soft);
}

.mobile-menu-account-info,
.mobile-menu-account-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mobile-menu-account-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-primary);
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.mobile-menu-account-greeting {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--gray-400);
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.mobile-menu-account-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.mobile-menu-account-arrow {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-500);
    flex-shrink: 0;
}

.mobile-menu-account-cta:hover .mobile-menu-account-name {
    color: var(--brand-accent);
}

.mobile-menu-account-cta:hover .mobile-menu-account-arrow {
    color: var(--brand-accent);
}

/* Navegação */
.mobile-menu-nav ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.mobile-menu-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-200);
    text-decoration: none;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        padding-left 0.15s ease;
    letter-spacing: 0.2px;
}

.mobile-menu-nav ul li a i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    transition: color 0.15s ease;
    flex-shrink: 0;
}

.mobile-menu-nav ul li a:hover {
    background-color: var(--overlay-light-soft);
    color: var(--brand-accent);
    padding-left: 24px;
}

.mobile-menu-nav ul li a:hover i {
    color: var(--brand-accent);
}

/* Nav secundária (perfil) — fonte menor, menos destaque */
.mobile-menu-nav--secondary ul li a {
    font-size: 13px;
    color: var(--gray-400);
}

.mobile-menu-divider {
    height: 1px;
    background-color: var(--overlay-light-soft);
    margin: 0;
}

/* Logout */
.mobile-menu-logout-form {
    padding: 12px 20px 20px;
}

.mobile-menu-logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: rgba(var(--danger-rgb), 0.1);
    border: 1px solid rgba(var(--danger-rgb), 0.25);
    border-radius: 8px;
    color: var(--danger);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease;
    letter-spacing: 0.2px;
}

.mobile-menu-logout-btn:hover {
    background: rgba(var(--danger-rgb), 0.18);
    border-color: rgba(var(--danger-rgb), 0.5);
}

/* Toast SweetAlert2 */
.swal-toast-site {
    font-family: var(--font-body) !important;
    border: 1px solid var(--overlay-dark-soft) !important;
    box-shadow: 0 4px 24px var(--overlay-dark-soft) !important;
}

.swal-toast-site .swal2-title {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.order-cancel-btn--pending {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    background: none;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 9px 18px;
    white-space: nowrap;
    cursor: default;
}

/* Age Gate */
.age-gate-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(var(--brand-primary-dark-rgb), 0.72);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.age-gate-backdrop.is-open {
    display: flex;
    opacity: 1;
}

.age-gate-modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 24px 60px var(--overlay-dark);
    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.age-gate-backdrop.is-open .age-gate-modal {
    transform: translateY(0);
}

.age-gate-modal h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--brand-primary-dark);
    margin-bottom: 12px;
}

.age-gate-modal p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 28px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-gate-actions .btn-yellow {
    width: 100%;
}

.age-gate-no {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.age-gate-no:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.infinite-scroll-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--brand-accent);
    border-radius: 50%;
    animation: infinite-scroll-spin 0.7s linear infinite;
}

@keyframes infinite-scroll-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ══════════════════════════════════════════════════
   EVENTOS — Hero
   ══════════════════════════════════════════════════ */
.events-page-hero {
    padding-block: 56px 40px;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 56px;
}

.events-page-hero__inner {
    max-width: 560px;
}

.events-page-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.events-page-hero__eyebrow::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.events-page-hero__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--brand-primary-dark);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.events-page-hero__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.65;
    letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════
   EVENTOS — Grade
   ══════════════════════════════════════════════════ */
.events-grid-section {
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .events-grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .events-grid-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ══════════════════════════════════════════════════
   EVENTOS — Card
   ══════════════════════════════════════════════════ */
.event-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.event-card:hover {
    box-shadow: 0 8px 32px var(--overlay-dark-soft);
    transform: translateY(-3px);
}

/* Imagem */
.event-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-200);
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card__image img {
    transform: scale(1.04);
}

/* Body */
.event-card__body {
    flex: 1;
    padding: 24px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Badge de data */
.event-card__date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-primary);
    color: var(--white);
    border-radius: 6px;
    padding: 10px 14px;
    width: fit-content;
}

.event-card__date-day {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin-top: -6px !important;
}

.event-card__date-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 1px solid var(--overlay-light);
    padding-left: 10px;
}

.event-card__date-month {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.event-card__date-year {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1;
}

/* Título */
.event-card__title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 400;
    color: var(--brand-primary-dark);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

/* Descrição */
.event-card__description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    letter-spacing: 0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.event-card__footer {
    padding: 0 24px 24px;
}

.event-card__footer .btn {
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* ══════════════════════════════════════════════════
   EVENTOS — Estado vazio
   ══════════════════════════════════════════════════ */
.events-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 16px;
}

.events-empty__icon {
    font-size: 52px;
    color: var(--gray-400);
}

.events-empty__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--gray-900);
}

.events-empty__text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-600);
    max-width: 400px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.events-empty .btn {
    width: auto;
}

/* ══════════════════════════════════════════════════
   EVENTOS — Página de detalhe (view)
   ══════════════════════════════════════════════════ */
.event-view {
    padding-block: 56px 80px;
}

.event-view__image {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 32px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-200);
}

.event-view__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-view__header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.event-view__title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    color: var(--brand-primary-dark);
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.event-view__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.event-view__date i {
    font-size: 14px;
}

.event-view__description {
    max-width: 760px;
    margin: 0 auto 40px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    letter-spacing: 0.3px;
    white-space: pre-line;
}

.event-view__actions {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.event-view__actions .btn {
    min-width: 240px;
}

/* ══════════════════════════════════════════════════
   EVENTOS — Checkout de ingressos
   ══════════════════════════════════════════════════ */
.event-checkout-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.event-checkout-ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

.event-checkout-ticket:last-child {
    border-bottom: none;
}

.event-checkout-ticket-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-body);
}

.event-checkout-ticket-info strong {
    font-size: 14px;
    color: var(--brand-primary-dark);
}

.event-checkout-ticket-info span {
    font-size: 13px;
    color: var(--gray-600);
}

.event-checkout-ticket-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-checkout-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.event-checkout-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ══════════════════════════════════════════════════
   EVENTOS — Confirmação de compra
   ══════════════════════════════════════════════════ */
.event-confirmation {
    padding-block: 56px 80px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.event-confirmation__icon {
    font-size: 48px;
    color: var(--success);
    margin-bottom: 16px;
}

.event-confirmation__tickets {
    text-align: left;
    margin-top: 32px;
}

.event-confirmation__ticket {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.event-confirmation__ticket-code {
    font-family: monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
