/* 1) Reset / Base */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Sora", "Montserrat", "Segoe UI", sans-serif;
    background: var(--background);
    color: var(--text-color);
    line-height: 1.45;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button,
input {
    font: inherit;
}

.sr-only,
.search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 2) Variables */
:root {
    --primary-color: #000000;
    --primary-dark: #111111;
    --primary-light: #f3f3f3;
    --background: #ffffff;
    --surface: #ffffff;
    --secondary-color: #E1E723;
    --text-color: #202124;
    --muted-text: #6b7280;
    --border-color: #dedede;
    --success-color: #16a34a;
    --warning-color: #f5b301;
    --danger-color: #000000;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --container-width: 1200px;
    --card-shadow: 0 10px 24px rgba(32, 33, 36, 0.08);
}

/* 3) Layout / Container */
.container {
    width: min(var(--container-width), 94vw);
    margin-inline: auto;
}

.site-main {
    min-height: 60vh;
}

.section,
.hero-banner,
.banner-strip,
.catalog-section,
.product-content-section,
.product-layout,
.related-section,
.breadcrumb-wrap {
    padding: 0.95rem 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    padding: 0.6rem;
    background: #fff;
    z-index: 999;
}

.skip-link:focus {
    left: 0.6rem;
}

/* 4) Header */
.shop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 80;
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    padding-top: env(safe-area-inset-top, 0px);
}

.header-top-strip {
    min-height: 24px;
    background: var(--secondary-color);
    color: #111111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
}

.header-top-strip .container {
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    padding: 0.18rem 0;
}

.shop-header.is-top-strip-hidden .header-top-strip {
    display: none;
}

.header-spacer {
    height: 60px; /* sobrescrito pelo JS */
    transition: none;
}

.header-main {
    height: 60px;
    min-height: 60px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 0.6rem;
    transition: height 0.25s ease, min-height 0.25s ease;
}

.header-main.is-home {
    grid-template-columns: 46px 1fr auto;
}

.icon-btn {
    appearance: none;
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 4px;
    cursor: pointer;
}

.header-icon {
    background: transparent;
}

.header-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-back-btn svg {
    fill: currentColor;
    stroke: none;
    width: 21px;
    height: 21px;
    color: #ffffff;
}

.header-logo {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 800;
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.header-logo-wordmark {
    display: inline-block;
    font-family: "Montserrat", "League Spartan", "Arial Black", "Segoe UI", sans-serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 4.6vw, 2.2rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
}

.header-logo img {
    width: auto;
    max-height: 32px;
    filter: brightness(0) invert(1);
}

.cart-button {
    position: relative;
    justify-self: end;
}

.cart-count {
    position: absolute;
    right: 1px;
    top: 1px;
    min-width: 1.1rem;
    height: 1.1rem;
    border-radius: 4px;
    background: var(--secondary-color);
    color: #111111;
    font-size: 0.72rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.cart-count[hidden] {
    display: none !important;
}

/* 5) Search */
.search-row {
    padding-bottom: 0.75rem;
}

.search-row[hidden] {
    display: none;
}

.desktop-nav-search {
    width: 100%;
    padding: 0.4rem 0 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.search-input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    padding: 0.74rem 0.96rem;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-color);
}

.search-input::placeholder {
    color: #8c8f94;
}

.desktop-nav {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.desktop-nav.is-open {
    display: block;
}

.desktop-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    height: 46px;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 600;
}

.desktop-nav-wrap a {
    opacity: 0.95;
}

.desktop-nav-wrap a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.desktop-nav.is-open .desktop-nav-wrap {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.2rem 0 0.55rem;
}

.desktop-nav.is-open .desktop-nav-wrap a {
    width: 100%;
    padding: 0.56rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.desktop-nav.is-open .desktop-nav-wrap a:last-child {
    border-bottom: 0;
}

@supports (-webkit-touch-callout: none) {
    .shop-header {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
}

/* 6) Banners */
.banner-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--surface);
    box-shadow: var(--card-shadow);
}

.banner-card img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
    border-radius: var(--radius-md);
    padding: 0.9rem;
    border: 1px solid rgba(227, 6, 19, 0.12);
}

.banner-content h1,
.banner-content h2 {
    margin: 0;
    font-size: clamp(1.1rem, 3.8vw, 1.9rem);
    line-height: 1.2;
    color: var(--text-color);
}

.banner-content p {
    margin: 0.35rem 0 0.8rem;
    color: var(--muted-text);
    font-size: 0.92rem;
}

/* 7) Product Sections */
.catalog-section-header {
    text-align: center;
    margin-bottom: 0.9rem;
}

.catalog-section-header h2 {
    margin: 0;
    font-size: clamp(1.28rem, 3.6vw, 2rem);
    font-weight: 800;
    color: #202124;
    letter-spacing: 0.2px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.68rem;
}

.catalog-grid .product-card.is-hidden {
    display: none;
}

/* 8) Product Card */
.product-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
}

.product-image-wrap {
    aspect-ratio: 1 / 1;
    background: var(--surface);
    display: grid;
    place-items: center;
    padding: 0.65rem;
    border-bottom: 1px solid #eeeeee;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 0.7rem;
    display: grid;
    gap: 0.38rem;
    align-content: start;
}

.product-price {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: flex-start;
}

.currency,
.price-main {
    font-size: clamp(1rem, 3.6vw, 1.58rem);
}

.price-comma {
    font-size: clamp(1rem, 3.4vw, 1.5rem);
}

.price-cents {
    font-size: 0.79rem;
    transform: translateY(-0.3rem);
    margin-left: 1px;
}

.product-old-price {
    margin: 0;
    color: var(--muted-text);
    text-decoration: line-through;
    font-size: 0.78rem;
}

.product-title {
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.28;
    color: #202124;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.3em;
}

.product-rating {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-size: 25px;
}

.product-rating .stars {
    color: var(--warning-color);
    letter-spacing: 0.6px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 0.4rem;
    align-items: center;
    margin-top: 0.18rem;
}

.add-to-cart {
    border: 0;
    font-size: clamp(27px, 6vw, 40px);
    color: #fff;
    border-radius: 6px;
    min-height: 36px;
    padding-inline: 0.55rem;
    font-size: clamp(58px, 12vw, 70px);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    font-size: clamp(27px, 5vw, 35px);
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.add-to-cart:hover {
    background: var(--primary-dark);
}

.mini-cart-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
}

.wishlist-button {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #fff;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.wishlist-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.wishlist-button.is-active {
    background: var(--primary-light);
    border-color: #f2b8bd;
}

/* 9) Product Page */
.breadcrumb {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    font-size: 0.86rem;
    color: var(--muted-text);
}

.product-layout-grid {
    display: grid;
    gap: 1rem;
}

.product-gallery,
.product-buy-box,
.review-item {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.product-gallery {
    padding: 0.9rem;
}

.product-main-image {
    aspect-ratio: 1 / 1;
    border: 1px solid #ececec;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: #fff;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbs {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.thumb {
    border: 1px solid #d8d8d8;
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 0.15rem;
    cursor: pointer;
}

.thumb.is-active {
    border-color: var(--primary-color);
}

.thumb img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-buy-box {
    padding: 1rem;
}

.product-buy-box h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.3rem, 4vw, 1.95rem);
    line-height: 1.2;
}

.product-rating-line {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--warning-color);
    font-size: 0.9rem;
}

.product-rating-line span:last-child {
    color: var(--muted-text);
}

.product-price-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.7rem 0;
}

.price-current {
    margin: 0;
    color: var(--primary-color);
    font-size: clamp(1.5rem, 4.8vw, 2.24rem);
    font-weight: 800;
}

.price-old {
    margin: 0;
    color: var(--muted-text);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.discount-pill {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 4px;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.trust-inline {
    list-style: none;
    margin: 0 0 0.8rem;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    color: #3a3c40;
    font-size: 0.87rem;
}

.qty-label {
    font-size: 0.85rem;
    font-weight: 700;
}

.qty-input {
    margin-top: 0.3rem;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.7rem;
}

.product-cta-stack {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.7rem;
}

.btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 6px;
    min-height: 46px;
    padding: 0.72rem 1rem;
    font-size: 0.93rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary,
.btn-danger {
    background: var(--secondary-color);
    color: #111111;
    border-color: #111111;
}

.btn-primary:hover,
.btn-danger:hover {
    background: #c9cf1f;
}

.product-cta-stack .btn-danger {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: transparent;
}

.product-cta-stack .btn-danger:hover {
    background: var(--primary-dark);
    color: var(--secondary-color);
}

.product-cta-stack .btn-danger:focus,
.product-cta-stack .btn-danger:focus-visible {
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

.btn-outline {
    border-color: var(--border-color);
    background: #fff;
    color: var(--text-color);
}

.btn-link {
    border: 0;
    background: transparent;
    color: var(--primary-color);
    min-height: auto;
    padding: 0;
}

.payment-methods-box {
    margin-top: 0.8rem;
    border: 1px solid #ebd5d7;
    border-radius: var(--radius-sm);
    padding: 0.7rem;
    font-size: 0.87rem;
    background: #fffaf9;
}

.payment-methods-box p {
    margin: 0.3rem 0 0;
    color: var(--muted-text);
}

.benefit-grid-mini {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.benefit-grid-mini span {
    font-size: 0.78rem;
    background: #fff5f6;
    border: 1px solid #f4d3d7;
    border-radius: var(--radius-sm);
    padding: 0.38rem 0.45rem;
    text-align: center;
    color: #4a4e55;
}

.product-content-section .container {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.product-content-section h2 {
    margin: 0.2rem 0 0.6rem;
    font-size: 1.2rem;
}

.highlights-list {
    margin: 0 0 1rem 1rem;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.spec-table th,
.spec-table td {
    border-bottom: 1px solid #efefef;
    padding: 0.55rem 0.2rem;
    text-align: left;
    font-size: 0.9rem;
}

.spec-table th {
    width: 40%;
    color: var(--muted-text);
    font-weight: 600;
}

.reviews-grid-simple {
    display: grid;
    gap: 0.6rem;
}

.review-item {
    padding: 0.75rem;
}

.review-item header {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
}

.review-item p {
    margin: 0;
    color: var(--muted-text);
    font-size: 0.88rem;
}

/* 10) Cart Drawer */
.cart-drawer {
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10050;
}

.cart-drawer.is-open {
    visibility: visible;
    opacity: 1;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 16, 18, 0.32);
}

.cart-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: min(460px, 96vw);
    height: 100%;
    background: #fff;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.cart-header,
.cart-footer {
    padding: 1rem;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    margin: 0;
    font-size: 1.16rem;
}

.cart-body {
    padding: 0.8rem 1rem;
    overflow: auto;
}

.cart-empty {
    color: var(--muted-text);
}

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 0.6rem;
    align-items: center;
    border-bottom: 1px solid #efefef;
    padding: 0.6rem 0;
}

.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid #ececec;
    border-radius: var(--radius-sm);
    background: #fff;
}

.cart-item strong {
    display: block;
    font-size: 0.83rem;
    line-height: 1.24;
}

.cart-item p {
    margin: 0.24rem 0;
    color: var(--muted-text);
    font-size: 0.8rem;
}

.cart-item .qty {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.cart-item .qty button,
.cart-item [data-cart-remove] {
    border: 1px solid #dddddd;
    background: #fff;
    border-radius: 6px;
    min-width: 1.7rem;
    height: 1.7rem;
    cursor: pointer;
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    background: #fff;
    position: sticky;
    bottom: 0;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.cart-shipping-note {
    margin: 0 0 0.65rem;
    color: var(--muted-text);
    font-size: 0.82rem;
}

.cart-trust-badges {
    list-style: none;
    padding: 0;
    margin: 0 0 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cart-trust-badges li {
    border-radius: 4px;
    border: 1px solid #f1c7cb;
    background: #fff4f5;
    color: #5b2d31;
    padding: 0.22rem 0.56rem;
    font-size: 0.73rem;
    font-weight: 700;
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

/* 11) Trust Blocks */
.trust-bar {
    margin-top: 1.2rem;
    background: linear-gradient(160deg, #fff3f4, #fff9fa);
    border-top: 1px solid #f4d3d7;
    border-bottom: 1px solid #f4d3d7;
}

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0.85rem 0;
    display: grid;
    gap: 0.45rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #363a40;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--secondary-color);
}

/* 12) Footer */
.site-footer {
    margin-top: 0;
    background: #000000;
    color: #b8bec7;
    font-size: 0.78rem;
}

.footer-top {
    padding: 1rem 0;
    display: grid;
    gap: 0.75rem;
}

.footer-col {
    padding: 0;
}

.footer-title,
.footer-subtitle {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-logo-wordmark {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1;
    color: #ffffff;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.22rem;
    color: #9ca3af;
    font-size: 0.78rem;
}

.footer-top p {
    margin: 0 0 0.28rem;
    color: #9ca3af;
    font-size: 0.78rem;
}

.footer-note {
    margin-top: 0.4rem;
}

.footer-payments-list {
    grid-template-columns: 1fr;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 0 0.75rem;
    color: #6b7280;
    font-size: 0.72rem;
    display: grid;
    gap: 0.15rem;
}

/* Carrinho página */
.page-cart .card,
.page-thank-you .card,
.page-legal .legal-content {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.cart-layout {
    display: grid;
    gap: 1rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #ededed;
}

.cart-line:last-child {
    border-bottom: 0;
}

.cart-line p {
    margin: 0.2rem 0 0;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.cart-line-form {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cart-line-form input[type="number"] {
    width: 72px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}

.order-summary h2 {
    margin-top: 0;
}

.order-summary p {
    display: flex;
    justify-content: space-between;
    gap: 0.65rem;
}

.order-summary .total {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-color);
}

.shipping-tip {
    color: var(--muted-text);
    font-size: 0.88rem;
}

.shipping-tip.success {
    color: var(--success-color);
    font-weight: 700;
}

/* 13) Responsive */
@media (min-width: 768px) {
    .header-main {
        grid-template-columns: 54px 1fr 54px;
        height: 68px;
        min-height: 68px;
    }

    .header-main.is-home {
        grid-template-columns: 54px 1fr auto;
    }

    .header-main.is-product {
        grid-template-columns: 54px 1fr 54px;
        height: 68px;
        min-height: 68px;
    }

    .desktop-nav {
        display: block;
    }

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

    .desktop-nav.is-open .desktop-nav-wrap {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.3rem;
        height: 46px;
        padding: 0;
    }

    .desktop-nav.is-open .desktop-nav-wrap a {
        width: auto;
        padding: 0;
        border: 0;
    }

    .search-row {
        padding-bottom: 0.85rem;
    }

    .banner-content {
        left: 1.2rem;
        right: auto;
        max-width: 460px;
        bottom: 1.2rem;
        padding: 1rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .product-layout-grid {
        grid-template-columns: 1.12fr 0.88fr;
        gap: 1.3rem;
        align-items: start;
    }

    .product-buy-box {
        position: sticky;
        top: 96px;
    }

    .reviews-grid-simple {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.85rem;
        padding: 0.95rem 0;
    }

    .footer-top {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }

    .footer-col {
        min-height: 100%;
    }

    .cart-actions {
        grid-template-columns: 1fr 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }

    .cart-line {
        grid-template-columns: 1fr auto auto;
        align-items: center;
    }
}

@media (max-width: 374px) {
    .header-logo {
        font-size: 0.95rem;
    }

    .header-logo-wordmark {
        font-size: 1.5rem;
        letter-spacing: -0.02em;
    }

    .add-to-cart {
        font-size: 0.68rem;
    }
}

/* 14) Motion */
@media (prefers-reduced-motion: no-preference) {
    .banner-card,
    .product-card,
    .product-buy-box,
    .cart-panel {
        animation: fade-up 0.35s ease both;
    }

    @keyframes fade-up {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Product page single-brand tools */
.page-product-single-tool .shop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 90;
    transition: box-shadow 0.25s ease;
}

.page-product-single-tool .site-main {
    padding-bottom: 0;
}

.page-product-single-tool {
    background: #fff;
}

.page-product-single-tool .product-page {
    padding-bottom: 78px;
}

.header-main.is-product {
    grid-template-columns: 46px 1fr 46px;
    height: 60px;
    min-height: 60px;
    transition: height 0.2s ease;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.header-actions-home {
    justify-self: end;
}

.page-product-single-tool .header-logo {
    justify-self: center;
    font-size: 1rem;
}

.page-product-single-tool .cart-count {
    background: var(--secondary-color);
    color: #111111;
}

.page-product-single-tool .search-row {
    padding-bottom: 0.42rem;
    max-height: 76px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.2s ease;
}

.page-product-single-tool .search-input {
    min-height: 43px;
    border-radius: 6px;
    padding: 0.56rem 0.9rem;
}

.page-product-single-tool .header-icon {
    background: transparent;
    border-radius: 0;
    width: 40px;
    height: 40px;
    border: 0;
    box-shadow: none;
}

.page-product-single-tool .icon-btn {
    border-radius: 0;
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap .search-input {
    padding-right: 2.3rem;
}

.search-input-icon {
    position: absolute;
    right: 0.78rem;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
}

.search-input-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #2a2d31;
    stroke-width: 2;
}

.product-links-bar {
    background: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.header-collapsible {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.28s ease, padding 0.28s ease;
}

.product-links-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.2rem 0 0.36rem;
    scrollbar-width: none;
}

.product-links-scroll::-webkit-scrollbar {
    display: none;
}

.product-links-scroll a {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.22rem 0.52rem;
    border: 1px solid rgba(225, 231, 35, 0.6);
}

.page-home-collection .header-spacer {
    height: 60px;
}

.product-breadcrumb-wrap {
    background: #fff;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.72rem 0;
    font-size: 0.875rem;
    color: #202124;
}

.product-breadcrumb a {
    text-decoration: underline;
}

.product-breadcrumb-wrap .container,
.product-hero,
.product-content-flow {
    width: min(1080px, 92vw);
}

.product-content-flow > section {
    border-top: 1px solid #eceff3;
    margin-top: 0;
    padding-top: 14px;
    padding-bottom: 14px;
}

.product-content-flow > section:first-child {
    border-top: 0;
    padding-top: 8px;
}

.product-content-flow > .related-products {
    border-top: 0;
    margin-top: 2rem;
}

.product-title-main {
    margin: 0;
    color: #202124;
    font-size: clamp(1.15rem, 4.3vw, 1.8rem);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.015em;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.product-title-block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.product-rating-summary {
    border: 0;
    background: transparent;
    width: fit-content;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    cursor: pointer;
    color: #202124;
    font-size: 0.88rem;
}

.product-rating-summary--spaced {
    margin-top: 6px;
    margin-bottom: 6px;
}

.product-rating-summary--top {
    margin: 22px 0 0;
    padding: 0;
}

.product-rating-summary .stars,
.review-stars,
.score-block .stars {
    color: #f5b301;
}

.product-purchase-box,
.product-description,
.technical-specs,
.related-products,
.customer-reviews,
.product-faq {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin-top: 0.72rem;
    padding: 0.6rem 0;
}

.product-gallery-block {
    margin-top: 0.72rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.product-main-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    touch-action: pan-y;
    background: #eef1f5;
}

.product-main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform, opacity;
}

.gallery-zoom-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: grid;
    place-items: center;
    z-index: 3;
    color: #2d3748;
}

.gallery-zoom-btn svg,
.gallery-arrow svg,
.zoom-close-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-arrow {
    position: absolute;
    bottom: 12px;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: grid;
    place-items: center;
    z-index: 3;
    color: #6b7280;
}

.gallery-arrow-prev {
    left: 10px;
}

.gallery-arrow-next {
    right: 10px;
}

.gallery-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 500;
    color: rgba(17, 24, 39, 0.7);
    z-index: 2;
}

.product-zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: 18px;
}

.zoom-image-wrap {
    width: min(100%, 900px);
    height: min(100%, 900px);
    display: grid;
    place-items: center;
}

.zoom-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zoom-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: grid;
    place-items: center;
}

.product-zoom-modal[hidden] {
    display: none;
}

.product-main-image-wrap img.is-slide-out-left {
    animation: productImageOutLeft 220ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-main-image-wrap img.is-slide-out-right {
    animation: productImageOutRight 220ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-main-image-wrap img.is-slide-in-right {
    animation: productImageInRight 260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-main-image-wrap img.is-slide-in-left {
    animation: productImageInLeft 260ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes productImageOutLeft {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        opacity: 0;
        transform: translate3d(-14%, 0, 0) scale(0.985);
    }
}

@keyframes productImageOutRight {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        opacity: 0;
        transform: translate3d(14%, 0, 0) scale(0.985);
    }
}

@keyframes productImageInRight {
    from {
        opacity: 0;
        transform: translate3d(16%, 0, 0) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes productImageInLeft {
    from {
        opacity: 0;
        transform: translate3d(-16%, 0, 0) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-main-image-wrap img.is-slide-out-left,
    .product-main-image-wrap img.is-slide-out-right,
    .product-main-image-wrap img.is-slide-in-right,
    .product-main-image-wrap img.is-slide-in-left {
        animation: none;
    }
}

.product-gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    border: 0;
    background: #d1d5db;
}

.gallery-dot.active {
    width: 22px;
    background: var(--secondary-color);
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin: 14px 0 12px;
}

.product-old-price {
    order: 1;
    color: #6b7280;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

.product-current-price {
    order: 2;
    font-size: clamp(46px, 13vw, 72px);
    color: var(--primary-color);
    font-weight: 900;
    line-height: 0.9;
    white-space: nowrap;
    display: inline-flex;
    align-items: flex-start;
}

.product-current-price .price-currency {
    font-size: 0.5em;
    line-height: 1;
    margin-right: 1px;
}

.product-current-price .price-main {
    font-size: 1em;
    line-height: 1;
    letter-spacing: -0.04em;
}

.product-current-price .price-cents {
    font-size: 0.38em;
    line-height: 1;
    margin-left: 2px;
    transform: translateY(0.08em);
}

.discount-badge {
    order: 3;
    background: var(--primary-light);
    color: var(--text-color);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 8px;
    white-space: nowrap;
}

.product-variants {
    margin-top: 0.65rem;
    display: grid;
    gap: 0.55rem;
}

.variant-title {
    margin: 18px 0 10px;
    font-size: 15px;
    font-weight: 800;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.variant-option {
    border: 1px solid #cfcfcf;
    background: #fff;
    color: #202124;
    border-radius: 4px;
    min-height: 34px;
    padding: 0.28rem 0.62rem;
    font-weight: 700;
    font-size: 0.83rem;
}

.variant-option.is-active {
    border-color: #202124;
    background: #202124;
    color: #fff;
}

.quantity-wrap {
    margin-top: 0.5rem;
}

.quantity-wrap label {
    font-size: 0.86rem;
    font-weight: 700;
}

.quantity-selector {
    margin-top: 0.34rem;
    width: min(220px, 100%);
    height: 44px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    overflow: hidden;
}

.qty-btn {
    border: 0;
    background: #f7f7f7;
    font-size: 1.1rem;
    font-weight: 700;
}

.quantity-selector input {
    border: 0;
    text-align: center;
    font-weight: 700;
    width: 100%;
}

.trust-strip {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
    display: grid;
    gap: 0.3rem;
    color: #3f434a;
    font-size: 0.84rem;
}

.readmore-text {
    margin: 0;
    color: #4b515a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.readmore-toggle {
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    padding: 0;
    margin-top: 0.38rem;
}

.product-benefits ul,
.package-items ul,
.description-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.34rem;
}

.delivery-card {
    margin-top: 0.8rem;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
    background: #f4f6f8;
    padding: 0.8rem;
}

.delivery-title {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.delivery-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    color: #111;
}

.delivery-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    font-size: 0.84rem;
}

.technical-specs {
    padding: 0;
}

.technical-toggle {
    border: 0;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem;
    font-size: 0.98rem;
    font-weight: 800;
}

.technical-panel {
    border-top: 1px solid #ececec;
    padding: 0 0.9rem 0.7rem;
}

.related-products-scroll {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.related-card {
    min-width: 72%;
    border: 0;
    border-radius: 0;
    padding: 0.2rem 0;
}

.related-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.related-card h3 {
    margin: 0.45rem 0 0.3rem;
    font-size: 0.86rem;
    line-height: 1.25;
    min-height: 2.2em;
}

.related-price {
    margin: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.related-price span {
    font-size: 0.95rem;
}

.related-price small {
    font-size: 0.72rem;
    vertical-align: super;
}

.related-link {
    margin-top: 0.35rem;
    display: inline-flex;
    color: #202124;
    font-size: 0.82rem;
    text-decoration: underline;
}

.reviews-summary-main {
    display: grid;
    gap: 0.85rem;
}

.score-block strong {
    font-size: 1.85rem;
}

.distribution-block {
    display: grid;
    gap: 0.3rem;
}

.dist-row {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.36rem;
}

.dist-row div {
    height: 8px;
    border-radius: 4px;
    background: #eceff3;
}

.dist-row i {
    display: block;
    height: 100%;
    border-radius: 4px;
    background: #f5b301;
}

.reviews-list-main {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.6rem;
}

.is-hidden-review {
    display: none;
}

.review-card-main {
    border: 0;
    border-radius: 0;
    padding: 0.65rem 0;
    border-bottom: 1px solid #ececec;
}

.review-card-main header {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.review-title {
    margin: 0.35rem 0 0.2rem;
    font-weight: 800;
}

.verified-pill {
    display: inline-flex;
    margin-top: 0.35rem;
    border-radius: 4px;
    background: #e9f7ea;
    color: #1c7c40;
    padding: 0.15rem 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.reviews-toggle-btn {
    margin-top: 0.7rem;
    border: 1px solid #d8dde4;
    background: #fff;
    border-radius: 10px;
    min-height: 42px;
    padding: 0.55rem 0.8rem;
    font-weight: 700;
}

.faq-item-modern {
    border: 0;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #eceff3;
    margin-bottom: 0.45rem;
}

.product-content-flow > .product-faq {
    margin-top: 2rem;
}

.faq-item-modern:last-child {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 0.5rem;
}

.faq-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.8rem 0.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 700;
    font-size: 0.93rem;
}

.faq-icon {
    font-size: 1.05rem;
    color: #6b7280;
}

.faq-answer {
    padding: 0 0.1rem 0.8rem;
    color: #4b5563;
    font-size: 0.88rem;
}

@media (max-width: 767px) {
    .product-breadcrumb-wrap .container,
    .product-hero,
    .product-content-flow {
        width: min(1080px, 90vw);
    }

    .product-title-block {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .product-gallery-block {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 0;
    }

    .product-main-image-wrap {
        width: 100vw;
        max-width: 100vw;
        aspect-ratio: 1 / 1;
    }

    .product-title-main {
        font-size: clamp(1.08rem, 5.8vw, 1.46rem);
    }

    .product-current-price {
        font-size: clamp(40px, 11.5vw, 58px);
    }

    .product-main-image-wrap img {
        width: 100%;
        height: 100%;
    }

    .product-gallery-dots {
        display: none;
    }

    .delivery-info {
        font-size: 0.82rem;
    }

    .related-card {
        min-width: 78%;
    }
}

.faq-answer p {
    margin: 0;
}

.product-sticky-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 40% 60%;
    background: #fff;
    border-top: 0;
    overflow: hidden;
    z-index: 9000;
}

.product-sticky-price {
    display: flex;
    align-items: center;
    padding-left: 14px;
    color: var(--primary-color);
    font-weight: 800;
    white-space: nowrap;
}

.product-sticky-price strong {
    font-size: 24px;
    line-height: 1;
}

.product-sticky-price small {
    font-size: 12px;
    vertical-align: super;
}

.product-sticky-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 0;
    height: 100%;
    align-self: stretch;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-sticky-button:focus,
.product-sticky-button:focus-visible {
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

.sticky-buy-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 0;
    border-radius: 6px;
    min-height: 46px;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.sticky-buy-btn:hover {
    background: var(--primary-dark);
    color: var(--secondary-color);
}

.sticky-buy-btn:focus,
.sticky-buy-btn:focus-visible {
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

.sticky-cart-icon {
    width: 16px;
    height: 16px;
    display: block;
    color: #ffffff;
}

.sticky-cart-icon path,
.sticky-cart-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-sticky-buy-desktop {
    display: none;
}

@media (min-width: 768px) {
    .page-product-single-tool .site-main {
        padding-bottom: 0;
    }

    .product-hero {
        display: grid;
        grid-template-columns: 1.08fr 0.92fr;
        gap: 1rem;
        align-items: start;
    }

    .product-title-block,
    .product-gallery-block {
        grid-column: 1;
    }

    .product-purchase-box {
        grid-column: 2;
        grid-row: 1 / span 2;
        position: sticky;
        top: 16px;
    }

    .related-card {
        min-width: calc((100% - 1.8rem) / 4);
    }

    .product-sticky-buy {
        display: none;
    }

    .gallery-arrow,
    .gallery-counter,
    .gallery-zoom-btn {
        display: none;
    }
}

/* Home Collection */
.page-home-collection .site-main {
    padding-bottom: 0;
    background: #fff;
}

.page-home-collection {
    background: #fff;
}

.footer-benefits-carousel {
    margin-top: 64px;
    padding: 0;
    background: #fff;
    position: relative;
}

.footer-benefits-carousel .container {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
}

.footer-benefits-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0;
    scrollbar-width: none;
}

.footer-benefits-track::-webkit-scrollbar {
    display: none;
}

.footer-benefit-card {
    min-width: 100%;
    flex: 0 0 100%;
    background: #f3f5f7;
    border: 0;
    border-radius: 0;
    margin: 0;
    min-height: 160px;
    padding: 16px 14px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.footer-benefit-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: grid;
    place-items: center;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin: 0 auto;
}

.footer-benefit-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-benefit-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2b2d31;
    text-align: center;
}

.footer-benefits-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    z-index: 2;
}

.footer-benefits-dot {
    appearance: none;
    width: 5px;
    height: 5px;
    min-width: 5px;
    min-height: 5px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfd4db;
    display: block;
    line-height: 0;
    cursor: pointer;
}

.footer-benefits-dot.is-active {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #111827;
    transform: none;
}

/* Topo da coleção sem barra de pesquisa/chips */

.home-hero-section {
    margin: 0;
    margin-bottom: 16px;
}

.home-hero-section .container {
    width: 100%;
    max-width: 100%;
}

.home-hero-banner {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    display: block;
}

.home-hero-banner picture,
.home-hero-banner img {
    width: 100%;
    height: 100%;
    display: block;
}

.home-hero-banner img {
    object-fit: cover;
}

.collection-section {
    padding: 8px 0 16px;
    background: #fff;
}

.collection-header {
    text-align: center;
    margin-bottom: 14px;
}

.collection-header h2 {
    margin: 0;
    font-size: clamp(1.35rem, 5.3vw, 2rem);
    color: #202124;
    font-weight: 900;
}

.collection-header p {
    margin: 6px 0 0;
    color: #5b6472;
    font-size: 0.9rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.collection-product-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.collection-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1.08;
    background: transparent;
    padding: 0;
}

.collection-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discount-badge-card {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffd43b;
    color: #000;
    font-weight: 900;
    font-size: 24px;
    padding: 10px 14px;
    border-radius: 0;
    line-height: 1;
}

.collection-product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.card-current-price {
    color: var(--primary-color);
    font-weight: 900;
    display: inline-flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 8px;
}

.card-current-price .currency,
.card-current-price .main {
    font-size: clamp(24px, 6.6vw, 34px);
}

.card-current-price .cents {
    font-size: 0.56em;
    transform: translateY(-2px);
    margin-left: 1px;
}

.card-product-name {
    color: #202124;
    font-weight: 800;
    font-size: clamp(14px, 2.4vw, 16px);
    line-height: 1.35;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(16px * 1.35 * 3);
}

.card-rating {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-rating .stars {
    color: #f5b301;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.card-rating .reviews-count {
    font-size: 0.8rem;
    color: #6b7280;
}

.card-actions {
    margin-top: auto;
    padding-top: 18px;
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 10px;
    align-items: center;
}

.card-add-btn {
    height: 46px;
    border-radius: 6px;
    background: var(--secondary-color);
    color: #111111;
    border: 0;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
    cursor: pointer;
}

.card-add-btn:hover {
    background: #c9cf1f;
}

.card-add-btn .mini-cart-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #111111;
    stroke-width: 2;
}

.card-wishlist {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #111;
    display: grid;
    place-items: center;
    border-radius: 6px;
}

.card-wishlist svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.card-wishlist.is-active {
    background: transparent;
    color: var(--primary-color);
}

.collection-grid .collection-product-card.is-hidden {
    display: none;
}

@media (max-width: 390px) {
    .collection-product-info {
        padding: 10px;
    }

    .card-old-price {
        font-size: 13px;
    }

    .card-current-price .currency,
    .card-current-price .main {
        font-size: clamp(22px, 7.4vw, 28px);
    }

    .card-current-price .cents {
        font-size: 0.6em;
        transform: translateY(-1px);
    }

    .card-product-name {
        font-size: 13px;
        min-height: calc(14px * 1.35 * 3);
    }

    .card-actions {
        grid-template-columns: 1fr 38px;
        gap: 8px;
        padding-top: 12px;
    }

    .card-add-btn {
        height: 40px;
        font-size: 11px;
        gap: 5px;
        padding-inline: 10px;
    }

    .card-wishlist {
        width: 38px;
        height: 38px;
    }

    .discount-badge-card {
        font-size: 17px;
        padding: 8px 10px;
    }
}

@media (min-width: 391px) and (max-width: 767px) {
    .card-current-price .currency,
    .card-current-price .main {
        font-size: clamp(24px, 6.4vw, 30px);
    }

    .card-current-price .cents {
        font-size: 0.58em;
        transform: translateY(-1px);
    }

    .card-product-name {
        font-size: 14px;
        min-height: calc(14px * 1.35 * 3);
    }
}

@media (min-width: 768px) {
    .footer-benefits-track {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding-inline: 0;
    }

    .footer-benefit-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .home-hero-banner {
        aspect-ratio: 16 / 7;
    }

    .collection-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }
}
