@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --primary-color: #000000;
    --primary-dark: #111111;
    --primary-light: #f3f3f3;
    --secondary-color: #28A745;
    /* Green as requested for Add to Cart */
    --secondary-dark: #1e7e34;
    --accent-color: #f5b301;
    --success-color: #127a4d;
    --warning-color: #f5b301;
    --danger-color: #dc3545;
    --text-color: #202124;
    --muted-text: #6b7280;
    --background: #f8f9fa;
    --surface: #ffffff;
    --card-background: #ffffff;
    --border-color: #e5e7eb;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.shop-header {
    background: #000000;
    color: #ffffff;
    border-bottom: 1px solid #111111;
    position: sticky;
    top: 0;
    z-index: 90;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 70px;
    position: relative;
}

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

.header-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.cart-button {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    color: #ffffff;
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-button svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--danger-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-spacer {
    height: 0;
}

/* ==========================================================================
   HOMEPAGE GRID (Imagem 1)
   ========================================================================== */
.home-intro {
    background: var(--surface);
    padding: 50px 0 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.home-intro h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.home-intro p {
    color: var(--muted-text);
    font-size: 1.1rem;
}

.home-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.home-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
}

/* Product Card (Imagem 1 style) */
.collection-product-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.collection-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: transparent;
}

.collection-product-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background: #fdfdfd;
    overflow: hidden;
}

.collection-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-product-card:hover .collection-product-image img {
    transform: scale(1.05);
}

/* Badge Destaque / Promo */
.discount-badge-card {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #28a745;
    /* Vivid green from Image 1 */
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discount-badge-card.promo {
    background-color: #28a745;
}

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

.card-old-price {
    font-size: 0.85rem;
    color: var(--muted-text);
    text-decoration: line-through;
    margin-bottom: 2px;
    height: 18px;
}

/* Price layout matching Image 1: R$ currency small, Main large bold, cents small superscripted */
.card-current-price {
    display: flex;
    align-items: flex-start;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
}

.card-current-price .currency {
    font-size: 0.6em;
    margin-right: 2px;
    margin-top: 0.2em;
    font-weight: 700;
}

.card-current-price .main {
    font-size: 2rem;
    letter-spacing: -1px;
}

.card-current-price .cents {
    font-size: 0.6em;
    margin-top: 0.2em;
    margin-left: 1px;
    font-weight: 700;
    position: relative;
    top: -2px;
}

.card-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.card-product-name:hover {
    color: var(--muted-text);
}

.card-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
}

.rating-stars {
    color: #e2e8f0;
    display: inline-flex;
    font-size: 1.1rem;
    letter-spacing: -2px;
}

.rating-star {
    position: relative;
    display: inline-block;
}

.rating-star-base {
    color: #e2e8f0;
}

.rating-star-fill {
    position: absolute;
    top: 0;
    left: 0;
    color: #f5b301;
    /* Golden yellow stars */
    overflow: hidden;
    width: var(--star-fill);
}

.reviews-count {
    color: var(--muted-text);
    font-weight: 500;
}

.card-wishlist {
    color: #b9bec7;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}

.card-wishlist:hover {
    color: var(--danger-color);
    transform: scale(1.1);
}

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

.card-wishlist[aria-pressed="true"] svg {
    fill: var(--danger-color);
    stroke: var(--danger-color);
}

/* ==========================================================================
   SINGLE PRODUCT PAGE (Imagem 2)
   ========================================================================== */
.product-breadcrumb-wrap {
    background: var(--surface);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    font-size: 0.85rem;
    color: var(--muted-text);
}

.product-breadcrumb li a:hover {
    color: var(--primary-color);
}

.product-breadcrumb-separator {
    margin: 0 8px;
    font-size: 0.75rem;
}

.product-breadcrumb-current {
    color: var(--text-color);
    font-weight: 600;
}

.product-page {
    padding: 40px 0 60px;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Gallery Block */
.product-gallery-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
}

.product-main-image-wrap {
    position: relative;
    border: 1px solid var(--border-color);
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    padding-top: 100%;
}

.product-main-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-zoom-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: transform 0.2s;
}

.gallery-zoom-btn:hover {
    transform: scale(1.1);
}

.gallery-zoom-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--text-color);
    stroke-width: 2;
}

.gallery-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 5;
}

/* Gallery Thumbnails */
.product-gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.product-gallery-dots {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    flex-grow: 1;
    padding: 2px 0;
}

.product-gallery-dots::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    padding: 0;
    background: white;
    transition: border-color 0.2s;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb.active {
    border-color: #28a745;
    /* Green border for active thumbnail */
    box-shadow: 0 0 0 1px #28a745;
}

.gallery-arrow {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: var(--primary-light);
}

.gallery-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--text-color);
    stroke-width: 2;
}

/* Purchase Box & Info */
.product-purchase-box {
    display: flex;
    flex-direction: column;
}

.product-alert-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.product-alert-card {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.product-alert-card--shipping {
    border: 1px solid #28a745;
    color: #28a745;
}

.product-alert-card--stock {
    border: 1px solid #e07a5f;
    color: #e07a5f;
}

.product-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-align: left;
}

.product-rating-summary strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.product-rating-summary span {
    color: var(--muted-text);
}

/* Single Price Formatting */
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
}

.product-current-price {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.discount-badge {
    background: #e1f5fe;
    color: #0288d1;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

/* If discount is negative, e.g. green discount badge -48% like Image 2 */
.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 4px 8px;
    font-weight: 800;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Variation Swatches (Imagem 2 style) */
.product-color-selector {
    margin-bottom: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.variant-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.variant-title strong {
    font-weight: 800;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Individual Color Swatch Option Button */
.color-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.color-option:hover {
    border-color: var(--primary-color);
}

.color-option[aria-pressed="true"] {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: var(--swatch-color);
}

.product-color-error {
    color: var(--danger-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

/* CTA Add to Cart Button (Image 2 - Green) */
.product-cta-stack {
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.btn-danger {
    background-color: var(--secondary-color) !important;
    /* Green like Image 2 */
    color: white;
}

.btn-danger:hover {
    background-color: var(--secondary-dark) !important;
}

/* Checkout Signals (Imagem 2) */
.product-checkout-signals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fretefundo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f4f5f7;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.frete-local-icon {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.ttl-frete {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.4;
}

.checkout-signal-title--success {
    color: #28a745;
    font-weight: 700;
}

.checkout-signal-text {
    color: var(--muted-text);
}

.offer-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f4f5f7;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.offer-box__icon {
    color: #28a745;
    display: flex;
    align-items: center;
}

.offer-box__media {
    width: 32px;
    height: 32px;
}

.offer-box__title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.offer-box__text {
    font-size: 0.85rem;
    color: var(--muted-text);
}

.payment-badges {
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-top: 5px;
    border-radius: var(--radius-sm);
}

.payment-badges__title {
    text-align: center;
    position: relative;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--muted-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-badges__title span {
    background: var(--background);
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.payment-badges__title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.payment-list2 {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cartoes {
    width: 45px;
    height: 25px;
    border-radius: 4px;
}

/* ==========================================================================
   CONTENT FLOW: Description, FAQ, Reviews
   ========================================================================== */
.product-content-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.product-description h2,
.customer-reviews h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-faq h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-description-text p {
    margin-bottom: 15px;
    color: #4b5563;
}

.product-description-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 25px 0 12px;
}

.product-description-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-description-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-description-checklist li span:first-child {
    font-size: 1rem;
    flex-shrink: 0;
}

.product-description-checklist li span:last-child {
    color: #4b5563;
}

.product-description-text ul:not(.product-description-checklist) {
    list-style-type: none;
    margin-bottom: 20px;
}

.product-description-text ul:not(.product-description-checklist) li {
    padding: 6px 0;
    border-bottom: 1px solid #f1f2f4;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.product-faq {
    margin-top: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item-modern {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--muted-text);
}

.faq-answer {
    padding: 0 20px 16px;
    color: #4b5563;
    line-height: 1.5;
}

.faq-answer p {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Reviews Block */
.reviews-summary-main {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.score-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.score-block strong {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.distribution-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.dist-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--muted-text);
}

.dist-row span {
    width: 25px;
    flex-shrink: 0;
}

.dist-row div {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    flex-grow: 1;
    overflow: hidden;
}

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

.reviews-list-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .reviews-list-main {
        grid-template-columns: 1fr;
    }
}

.review-card-main {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
}

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

.review-card-main header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 8px;
}

.review-card-main header strong {
    color: var(--text-color);
    font-weight: 700;
}

.review-stars {
    margin-bottom: 12px;
}

.review-body {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 15px;
}

.review-images-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.review-image-button {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    padding: 0;
}

.review-image-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-attribute-list {
    list-style: none;
    font-size: 0.8rem;
    color: var(--muted-text);
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.review-attribute-list strong {
    color: var(--text-color);
}

.review-useful {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--muted-text);
    cursor: pointer;
}

.review-useful svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.reviews-page-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: white;
}

.reviews-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reviews-page-numbers {
    display: flex;
    gap: 6px;
}

.reviews-page-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    background: white;
    border: 1px solid var(--border-color);
}

.reviews-page-number.is-active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==========================================================================
   ZOOM MODAL
   ========================================================================== */
.product-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.zoom-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
}

.zoom-close-btn svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.zoom-image-wrap {
    max-width: 90%;
    max-height: 90%;
}

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

/* ==========================================================================
   STICKY BOTTOM BUY BAR
   ========================================================================== */
.product-sticky-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 80;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-sticky-buy[aria-hidden="true"] {
    display: none;
}

.product-sticky-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.product-sticky-price small {
    font-size: 0.7em;
}

.product-sticky-button {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.sticky-cart-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

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

/* ==========================================================================
   CART DRAWER (SLIDE-OUT)
   ========================================================================== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 500;
    visibility: hidden;
    transition: visibility 0.3s;
}

.cart-drawer[aria-hidden="false"] {
    visibility: visible;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer[aria-hidden="false"] .cart-overlay {
    opacity: 1;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-drawer[aria-hidden="false"] .cart-panel {
    right: 0;
}

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

.cart-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-header .icon-btn {
    font-size: 1.5rem;
    color: var(--muted-text);
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    color: var(--muted-text);
    margin-top: 50px;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--muted-text);
    margin-bottom: 6px;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-item-remove {
    font-size: 0.75rem;
    color: var(--danger-color);
    font-weight: 600;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: #f9fafb;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.cart-row strong {
    font-size: 1.15rem;
    color: var(--primary-color);
}

.cart-shipping-note {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 15px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-actions .btn {
    padding: 12px;
    font-size: 0.95rem;
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    background: white;
}

.btn-outline:hover {
    background: var(--primary-light);
}

/* ==========================================================================
   BENEFITS & FOOTER
   ========================================================================== */
.footer-benefits-carousel {
    background: var(--surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-benefits-track {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.footer-benefit-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-benefits-dots {
    display: none;
    /* Only show on mobile if carousel is activated */
}

@media (max-width: 768px) {
    .footer-benefits-track {
        flex-direction: column;
        gap: 15px;
    }
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-col h2,
.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo-image {
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.footer-list a:hover {
    color: white;
    padding-left: 2px;
}

.footer-payments-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-note {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
}

/* Menu Button (Hamburger) */
.menu-button {
    color: #ffffff;
    display: none; /* Hidden on desktop */
}
.menu-button svg {
    width: 24px;
    height: 24px;
}
.menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Desktop Subheader / Menu Bar */
.header-menu-bar {
    background: #000000;
    border-top: 1px solid #222222;
    padding: 10px 20px;
    display: block; /* Visible on desktop */
}
.menu-bar-title {
    font-size: 0.85rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Menu Drawer (from left to right) */
.menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    visibility: hidden;
    transition: visibility 0.3s;
}

.menu-drawer[aria-hidden="false"] {
    visibility: visible;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-drawer[aria-hidden="false"] .menu-overlay {
    opacity: 1;
}

.menu-panel {
    position: absolute;
    top: 0;
    left: -86%;
    width: 86%;
    max-width: 360px;
    height: 100%;
    background: white;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 201;
    color: #111111;
}

.menu-drawer[aria-hidden="false"] .menu-panel {
    left: 0;
}

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

.menu-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.menu-close-btn {
    font-size: 1.8rem;
    color: var(--muted-text);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.menu-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px 20px;
}

.menu-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.menu-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-nav-list li {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.menu-nav-list li a {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s;
}

.menu-nav-list li a:hover {
    color: #888888;
}

.menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: #f9fafb;
}

.menu-footer strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    display: block;
    margin-bottom: 4px;
}

.menu-footer p {
    font-size: 0.8rem;
    color: #666666;
    margin: 0;
}

/* Category Sections on Home */
.category-section {
    padding: 40px 0;
}

.category-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 15px;
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.category-header p {
    font-size: 0.95rem;
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsividade de Banners */
.home-hero-banner {
    width: 100%;
    margin-bottom: 20px;
}

/* Carousel/Grid Responsivo */
.product-grid-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .product-grid-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-button {
        display: block; /* Show hamburger button on mobile */
    }
    
    .header-main {
        padding: 10px 15px;
        height: 60px;
    }
    
    .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header-menu-bar {
        display: none; /* Hide subheader Menu bar on mobile */
    }

    /* Horizontal carousel scroll on mobile */
    .product-grid-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 15px;
        padding: 0 15px 15px;
        margin: 0 -15px;
    }
    
    .product-grid-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .product-grid-carousel .collection-product-card {
        flex: 0 0 43%; /* Exactly 2 products side by side and 3rd peeking */
        scroll-snap-align: start;
    }
}

/* ==========================================================================
   LEGAL PAGES (Envios, Termos, etc.)
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-page {
    padding: 60px 0;
    background-color: var(--background);
}

.legal-content {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.legal-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 12px;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 16px;
}

.legal-content p strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 30px 15px;
    }
    .legal-content {
        padding: 30px 20px;
        border-radius: var(--radius-md);
    }
    .legal-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-bottom: 8px;
    }
    .legal-content h2 {
        font-size: 1.25rem;
        margin-top: 24px;
        margin-bottom: 12px;
    }
}

/* ==========================================================================
   TRACKING PAGE (Acompanhar pedido)
   ========================================================================== */
.tracking-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 1000px !important;
}

.tracking-header {
    text-align: center;
    margin-bottom: 40px;
}

.tracking-badge {
    display: inline-block;
    background-color: #e2f2e9;
    color: #1e7e34;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.tracking-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
    border: none !important;
    padding: 0 !important;
}

.tracking-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.tracking-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    padding: 30px 40px;
    margin-bottom: 25px;
    text-align: left;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.search-card {
    animation-delay: 0.1s;
}

.support-card {
    animation-delay: 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tracking-form label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.search-input-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.search-input-group input {
    flex-grow: 1;
    height: 52px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    padding: 0 20px;
    font-size: 1rem;
    font-family: inherit;
    color: #0f172a;
    background-color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.btn-search {
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0 25px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-search:hover {
    background-color: var(--secondary-dark);
}

.btn-search .search-icon {
    width: 18px;
    height: 18px;
}

.helper-text {
    font-size: 0.85rem;
    color: #6b7280;
}

.support-info {
    flex-grow: 1;
}

.support-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #4b5563;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.support-info h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    margin-top: 0 !important;
}

.support-info p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 !important;
}

.support-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
}

.btn-support {
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0 24px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    height: 48px;
    white-space: nowrap;
}

.btn-support:hover {
    background-color: var(--secondary-dark);
}

.btn-back {
    background-color: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0 24px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s;
    height: 48px;
    white-space: nowrap;
}

.btn-back:hover {
    background-color: var(--primary-light);
    border-color: #9ca3af;
}

@media (max-width: 768px) {
    .tracking-header h1 {
        font-size: 2.2rem;
    }
    
    .tracking-card {
        padding: 24px 20px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-input-group input,
    .btn-search {
        width: 100%;
        justify-content: center;
    }
    
    .support-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .support-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-support,
    .btn-back {
        width: 100%;
    }
}