﻿:root {
    /* Brand Colors */
    --brand-primary: #d64d6a;
    --brand-primary-light: #e55c78;
    --brand-primary-dark: #b8405a;
    --brand-dark: #1f1a1b;
    --brand-light: #f8f5f2;
    --brand-muted: #f1ede8;

    /* Gray Scale */
    --gray-700: #433d3f;
    --gray-600: #525052;
    --gray-500: #5a5658;
    --gray-300: #8a8586;
    --gray-200: #b8b1b2;

    /* Semantic Colors - Light Mode */
    --color-bg: #ffffff;
    --color-bg-elevated: #ffffff;
    --color-bg-subtle: #f8f5f2;
    --color-surface: #ffffff;
    --color-surface-hover: #f8f5f2;
    --color-text: #1f1a1b;
    --color-text-secondary: #525052;
    --color-text-muted: #8a8586;
    --color-border: rgba(31, 26, 27, 0.1);
    --color-border-strong: rgba(31, 26, 27, 0.2);
    --color-shadow: rgba(31, 26, 27, 0.08);
    --color-shadow-strong: rgba(31, 26, 27, 0.15);
    --color-overlay: rgba(31, 26, 27, 0.5);

    /* Status Colors */
    --color-success: #1d7f4b;
    --color-success-bg: #e8f5ed;
    --color-error: #b4232c;
    --color-error-bg: #fdeaea;
    --color-warning: #b45309;
    --color-warning-bg: #fef3e2;

    /* Fonts */
    --font-display: "Playfair Display", serif;
    --font-base: "Work Sans", sans-serif;
}

/* ========================================
   HERO KISS PATTERN (Global)
   ======================================== */

.hero-kiss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/patterns/kiss-red.png');
    background-size: 100% 100%;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.5;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-kiss {
        background-size: cover;
        background-position: center;
        opacity: 0.35;
    }
}

/* ========================================
   OUT OF STOCK OVERLAY + BACK IN STOCK
   ======================================== */

.product-modern-image,
.product-figure,
.gallery-main-container {
    position: relative;
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 12, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    border-radius: inherit;
}

.product-image-overlay span {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-modern-card.is-out-of-stock .product-image-overlay,
.product-card.is-out-of-stock .product-image-overlay,
.product-gallery.is-out-of-stock .product-image-overlay {
    opacity: 1;
}

.tag-out-of-stock {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}

.purchase-actions.is-hidden {
    display: none;
}

.back-in-stock {
    margin-top: 1.5rem;
}

.back-in-stock-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff9f9;
    padding: 1.25rem;
    border-radius: 1rem;
    display: grid;
    gap: 0.75rem;
}

.back-in-stock-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.back-in-stock-card form {
    display: grid;
    gap: 0.75rem;
}

.back-in-stock-card input[type="email"] {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 0.95rem;
}

.back-in-stock-note {
    color: #6b6466;
    font-size: 0.9rem;
    margin: 0;
}

.back-in-stock-card .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-primary, #e55c78);
    background: transparent;
    border: 2px solid var(--brand-primary, #e55c78);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.back-in-stock-card .btn-outline:hover {
    background: var(--brand-primary, #e55c78);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 92, 120, 0.3);
}

.back-in-stock-card .btn-outline:active {
    transform: translateY(0);
}

.back-in-stock-card .btn-outline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Dark Mode - DESATIVADO para manter consistência visual
   O site foi projetado para modo claro. Para reativar modo escuro,
   descomentar o bloco abaixo e ajustar as cores para melhor contraste.
*/
/*
@media (prefers-color-scheme: dark) {
    :root {
        --brand-primary: #e87a91;
        --brand-primary-light: #f299ac;
        --brand-primary-dark: #d64d6a;
        --brand-light: #2a2526;
        --brand-muted: #1f1a1b;
        --gray-700: #e0dcdd;
        --gray-600: #c5c0c2;
        --gray-500: #a8a3a5;
        --gray-300: #6b6466;
        --gray-200: #3d3839;
        --color-bg: #121010;
        --color-bg-elevated: #1a1617;
        --color-bg-subtle: #1f1a1b;
        --color-surface: #1a1617;
        --color-surface-hover: #2a2526;
        --color-text: #f2f0f1;
        --color-text-secondary: #c5c0c2;
        --color-text-muted: #8a8586;
        --color-border: rgba(255, 255, 255, 0.1);
        --color-border-strong: rgba(255, 255, 255, 0.2);
        --color-shadow: rgba(0, 0, 0, 0.3);
        --color-shadow-strong: rgba(0, 0, 0, 0.5);
        --color-overlay: rgba(0, 0, 0, 0.7);
        --color-success: #34d399;
        --color-success-bg: #064e3b;
        --color-error: #f87171;
        --color-error-bg: #450a0a;
        --color-warning: #fbbf24;
        --color-warning-bg: #451a03;
    }
}
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

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

a:hover {
    opacity: 0.85;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

/* Barra de Benefícios */
.benefits-bar {
    background: linear-gradient(135deg, #1f1a1b 0%, #433d3f 100%);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 2px solid #e55c78;
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    opacity: 1;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #e55c78;
}

.benefit-item span {
    white-space: nowrap;
    font-weight: 500;
}

@media (max-width: 768px) {
    .benefits-bar {
        padding: 0.5rem 0;
        font-size: 0.75rem;
        overflow-x: hidden;
    }

    .benefits-container {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .benefit-item span {
        font-size: 0.75rem;
    }

    .benefit-item svg {
        width: 14px;
        height: 14px;
    }

    /* Esconder 2 itens no mobile */
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .benefits-bar {
        padding: 0.4rem 0;
    }

    .benefits-container {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .benefit-item span {
        font-size: 0.65rem;
    }

    .benefit-item svg {
        width: 12px;
        height: 12px;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

/* Mobile: fundo totalmente sólido para melhor contraste */
@media (max-width: 768px) {
    .site-header {
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.logo a {
    display: inline-block;
    line-height: 1;
}

.logo {
    margin-left: -28px;
}

.logo img {
    display: block;
    height: 56px;
    width: auto;
    transition: opacity 0.2s ease;
}

.logo a:hover img {
    opacity: 0.85;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.site-nav a {
    position: relative;
    padding-bottom: 0.25rem;
}

.site-nav a.active {
    font-weight: 600;
    color: var(--brand-primary);
    position: relative;
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-primary);
    width: 100%;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.2s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-dropdown-trigger:hover {
    color: var(--brand-primary);
}

.nav-dropdown-trigger.active {
    font-weight: 600;
    color: var(--brand-primary);
}

.nav-dropdown-trigger.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-primary);
    width: 100%;
}

.nav-dropdown-trigger svg {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px var(--color-shadow-strong);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown-menu > a:first-child,
.nav-dropdown-menu > .has-submenu:first-child > a {
    border-radius: 0.5rem 0.5rem 0 0;
}

.nav-dropdown-menu > a:last-child,
.nav-dropdown-menu > .has-submenu:last-child > a {
    border-bottom: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.nav-dropdown-menu a:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding-left: 1.25rem;
}

/* Higher specificity to avoid !important */
.nav-dropdown .nav-dropdown-menu a.nav-dropdown-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--brand-primary);
    background: rgba(229, 92, 120, 0.05);
    border-top: 1px solid var(--brand-primary);
}

.nav-dropdown .nav-dropdown-menu a.nav-dropdown-all:hover {
    background: rgba(229, 92, 120, 0.1);
}

/* Submenu flyout (desktop) */
.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.has-submenu > a svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.has-submenu:hover > a {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding-left: 1.25rem;
}

.has-submenu:hover > a svg {
    opacity: 1;
}

.nav-submenu {
    position: absolute;
    left: calc(100% + 4px);
    top: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px var(--color-shadow-strong);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    z-index: 1002;
}

.has-submenu:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-submenu a {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.nav-submenu a:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.nav-submenu a:last-child {
    border-bottom: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.nav-submenu a:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding-left: 1.25rem;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Header Search */
.header-search {
    position: relative;
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;  /* WCAG 2.1 touch target */
    background: transparent;
    border: none;
    color: var(--brand-dark);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.search-toggle:hover {
    background: rgba(229, 92, 120, 0.1);
    color: var(--brand-primary);
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 350px;
    background: var(--color-surface);
    border-radius: 1rem;
    box-shadow: 0 10px 40px var(--color-shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

/* Mobile search dropdown - full width */
@media (max-width: 480px) {
    .search-dropdown {
        position: fixed;
        left: 1rem;
        right: 1rem;
        width: auto;
        top: auto;
        margin-top: 0.5rem;
    }
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: flex;
    padding: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.header-search-form .search-input-wrapper {
    display: flex;
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
}

.header-search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0;
    font-size: 0.9375rem;
    outline: none;
    background: transparent;
}

.header-search-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 0;
}

.header-search-form button:hover {
    background: #d14567;
}

.search-suggestions {
    max-height: 400px;
    overflow-y: auto;
}

.search-suggestions:empty {
    display: none;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--brand-dark);
    transition: background 0.2s;
}

.search-suggestion-item:hover {
    background: #f8f5f2;
}

.search-suggestion-img {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    object-fit: cover;
    background: #f0f0f0;
}

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-name {
    font-weight: 500;
    font-size: 0.9375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-category {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.search-suggestion-price {
    font-weight: 600;
    color: var(--brand-primary);
    font-size: 0.9375rem;
}

.search-more-link {
    display: block;
    padding: 1rem;
    text-align: center;
    background: #f8f5f2;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.search-more-link:hover {
    background: #f0ebe6;
}

.search-no-results {
    padding: 2rem 1rem;
    text-align: center;
    color: var(--gray-500);
}

.search-loading {
    padding: 1.5rem;
    text-align: center;
    color: var(--gray-500);
}

/* Wishlist Link */
.wishlist-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;  /* WCAG 2.1 touch target */
    color: var(--brand-dark);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.wishlist-link:hover {
    background: rgba(229, 92, 120, 0.1);
    color: var(--brand-primary);
    opacity: 1;
}

/* Notifications */
.header-notifications {
    position: relative;
}

.notifications-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;  /* WCAG 2.1 touch target */
    background: transparent;
    border: none;
    color: var(--brand-dark);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    position: relative;
}

.notifications-toggle:hover {
    background: rgba(229, 92, 120, 0.1);
    color: var(--brand-primary);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--brand-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notifications-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 360px;
    background: var(--color-surface);
    border-radius: 1rem;
    box-shadow: 0 10px 40px var(--color-shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.notifications-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.notifications-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.btn-mark-all-read {
    background: none;
    border: none;
    color: var(--brand-primary);
    font-size: 0.8125rem;
    cursor: pointer;
    padding: 0;
}

.btn-mark-all-read:hover {
    text-decoration: underline;
}

.notifications-list {
    max-height: 350px;
    overflow-y: auto;
}

.notifications-loading,
.notifications-empty {
    padding: 2rem;
    text-align: center;
    color: var(--gray-500);
}

.notification-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: var(--brand-dark);
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.notification-item:hover {
    background: #f8f5f2;
}

.notification-item.unread {
    background: #fff5f7;
}

.notification-item.unread:hover {
    background: #ffecf0;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-primary);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-message {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-time {
    font-size: 0.8125rem;
    color: var(--gray-300);
    margin-top: 0.25rem;
}

.notifications-view-all {
    display: block;
    padding: 1rem;
    text-align: center;
    background: #f8f5f2;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.notifications-view-all:hover {
    background: #f0ebe6;
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.btn.solid {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

.btn.solid:hover {
    transform: translateY(-1px);
}

.btn.ghost {
    background: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

/* Button Loading States */
.btn.is-loading,
button.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn.is-loading .btn-text,
button.is-loading .btn-text {
    opacity: 0.7;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    margin-right: 0.5rem;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* Form submitting state */
form.is-submitting input,
form.is-submitting select,
form.is-submitting textarea {
    pointer-events: none;
    opacity: 0.7;
}

.eyebrow {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--brand-primary);
    font-weight: 600;
}

.section {
    padding: 5rem 0;
}

.section-muted {
    background: var(--brand-light);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
}

.section-header.left {
    margin: 0 0 2rem;
    text-align: left;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0.75rem 0 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1rem;
}

.hero {
    background: linear-gradient(135deg, #fff8f8 0%, #f9f0ed 100%);
    padding: 3rem 0;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin: 0.5rem 0 1.5rem;
}

.hero-visual {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.hero-card {
    background: #fff;
    padding: 1.75rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(229, 92, 120, 0.15);
    text-align: center;
    max-width: 320px;
}

.hero-card span {
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.25em;
    color: var(--gray-500);
}

.hero-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
}

.hero-image {
    width: min(360px, 70vw);
    height: 420px;
    border-radius: 2rem;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=720&q=80') center/cover no-repeat;
    box-shadow: 0 25px 60px rgba(31, 26, 27, 0.18);
}

.cards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Grid de produtos para páginas de categoria */
.products-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    align-items: start;
}

.products-grid .product-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.products-grid .product-figure {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}

.products-grid .product-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.products-grid .product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.products-grid .product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-grid .product-description {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-grid .product-brand-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    font-weight: 600;
}

.products-grid .product-price {
    margin-top: auto;
}

.products-grid .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.products-grid .product-actions {
    margin-top: 0.75rem;
}

.products-grid .product-actions .btn {
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.products-grid .product-actions .btn:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .products-grid .product-content {
        padding: 0.75rem;
        gap: 0.35rem;
    }

    .products-grid .product-title {
        font-size: 0.8rem;
    }

    .products-grid .product-description {
        display: none; /* Esconder descrição no mobile */
    }

    .products-grid .product-brand-tag {
        font-size: 0.65rem;
    }

    .products-grid .current-price {
        font-size: 1rem;
    }

    .products-grid .product-actions .btn {
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
    }
}

.card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31, 26, 27, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(31, 26, 27, 0.12);
}

.card-image {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.75rem;
}

.card-content h3 {
    font-family: var(--font-display);
    margin-top: 0;
}

.card-content p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-primary);
}

.product-card {
    background: var(--color-surface);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 36px var(--color-shadow);
}

.product-image {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
}

.product-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-category {
    font-size: 0.8125rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-footer strong {
    font-size: 1.1rem;
    color: var(--brand-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.about-highlights {
    display: grid;
    gap: 1.5rem;
}

.about-card {
    background: var(--brand-light);
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid rgba(229, 92, 120, 0.2);
}

.forms-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.form-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 16px 30px var(--color-shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    position: relative;
}

.form-group input:disabled,
.form-group input[disabled] {
    background: var(--brand-muted);
    color: var(--gray-500);
    cursor: not-allowed;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1px solid var(--color-border-strong);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    background: var(--color-bg);
    color: var(--color-text);
    outline: none;
    transition: border 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand-primary);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-feedback {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.form-feedback.error {
    color: #b4232c;
}

.form-feedback.success {
    color: #1d7f4b;
}

/* Accessible inline field errors */
.field-error {
    display: block;
    font-size: 0.8125rem;
    color: #b4232c;
    margin-top: 0.25rem;
    padding-left: 0.25rem;
}

.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
    border-color: #b4232c;
    background-color: rgba(180, 35, 44, 0.03);
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #b4232c;
    background-color: rgba(180, 35, 44, 0.03);
}

.form-group input.input-error:focus,
.form-group textarea.input-error:focus,
.form-group select.input-error:focus {
    border-color: #b4232c;
    box-shadow: 0 0 0 3px rgba(180, 35, 44, 0.15);
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus,
.form-group.has-error select:focus {
    border-color: #b4232c;
    box-shadow: 0 0 0 3px rgba(180, 35, 44, 0.15);
}

/* Form hint styling */
.form-hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Seção Instagram */
.instagram-section {
    padding: 3rem 0;
    background: #fff;
    text-align: center;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.instagram-header svg {
    color: var(--brand-primary);
}

.instagram-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.instagram-header h2 a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.instagram-header h2 a:hover {
    color: var(--brand-primary-dark);
}

.instagram-subtitle {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay svg {
    color: #fff;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--brand-primary);
    border-radius: 2rem;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.instagram-cta:hover {
    background: var(--brand-primary);
    color: #fff;
}

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

    .instagram-header h2 {
        font-size: 1.25rem;
    }

    .instagram-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.site-footer {
    background: var(--brand-dark);
    color: #f2f2f2;
    padding: 3.5rem 0 2rem;
}

.site-footer h3,
.site-footer h4 {
    margin: 0;
    font-family: var(--font-display);
}

.site-footer p,
.site-footer ul {
    color: rgba(255, 255, 255, 0.7);
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: grid;
    gap: 0.75rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

.page-hero {
    background: var(--brand-light);
    padding: 2.5rem 0;
}

.page-hero .breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
    color: var(--gray-500);
}

.page-hero-content {
    display: grid;
    gap: 0.75rem;
    max-width: 640px;
}

.page-hero-content h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.page-hero-content p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

.card-figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.card-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.top-categories .card {
    min-height: 100%;
}

.categories-grid .card {
    min-height: 100%;
}

.about-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.about-story h2 {
    margin-top: 0;
    font-family: var(--font-display);
}

.about-story p {
    color: var(--gray-500);
}

.about-highlight-card {
    background: #fff;
    border-radius: 1.4rem;
    padding: 2rem;
    box-shadow: 0 18px 32px rgba(31, 26, 27, 0.08);
}

.about-highlight-card h3 {
    margin-top: 0;
    font-family: var(--font-display);
}

.about-highlight-card ul {
    padding-left: 1.2rem;
    color: var(--gray-500);
}

.about-highlight-card li {
    margin-bottom: 0.75rem;
}

.about-highlights {
    display: grid;
    gap: 1.8rem;
}

.contact-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 22px 42px rgba(31, 26, 27, 0.1);
    display: grid;
    gap: 1.5rem;
}

.contact-card header {
    display: grid;
    gap: 0.6rem;
}

.contact-card h2 {
    margin: 0;
    font-family: var(--font-display);
}

.contact-card p {
    color: var(--gray-500);
}

.contact-info {
    background: var(--brand-dark);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: grid;
    gap: 1.2rem;
}

.contact-info h2 {
    margin: 0;
    font-family: var(--font-display);
}

.contact-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.contact-map {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

.catalog-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 280px 1fr;
}

.filter-panel {
    background: #fff;
    padding: 1.8rem;
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(31, 26, 27, 0.08);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.empty {
    color: var(--gray-500);
    font-style: italic;
    margin-top: 2rem;
}

.product-detail {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, min(420px, 100%));
}

.gallery-main {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gallery-thumbs {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.thumb {
    width: 82px;
    height: 82px;
    border-radius: 0.9rem;
    border: 2px solid transparent;
    background-color: #f8f5f2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.thumb.active,
.thumb:hover {
    border-color: var(--brand-primary);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-family: var(--font-display);
}

.product-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
    color: var(--gray-500);
}

.purchase-form {
    display: grid;
    gap: 1rem;
    max-width: 260px;
}

/* Botão Adicionar ao Carrinho - Página de Produto */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--brand-dark) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0.75rem;
    padding: 0.875rem 1.5rem;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-add-cart:hover {
    background: var(--brand-primary) !important;
    transform: translateY(-2px);
}

.btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-add-cart svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Mobile: Botão maior e mais visível */
@media (max-width: 768px) {
    .btn-add-cart {
        min-height: 56px;
        font-size: 1.05rem;
        border-radius: 1rem;
    }

    /* Alinhar quantidade à esquerda no mobile */
    .purchase-actions {
        align-items: flex-start !important;
    }

    .quantity-selector {
        justify-content: flex-start !important;
    }
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.9rem;
    margin: 1.5rem 0;
}

.alert.success {
    background: #e3f6eb;
    color: #1d7f4b;
}

.auth {
    background: var(--brand-light);
}

.auth-card {
    max-width: 460px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px var(--color-shadow-strong);
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

.auth-card h1 {
    margin: 0;
    font-family: var(--font-display);
}

.auth-footer {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.link-forgot-password {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-forgot-password:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .site-header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        overflow: visible;
        padding-right: 1rem;
    }
    .logo {
        margin-left: 0;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .site-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-actions {
        width: auto;
        justify-content: flex-end;
    }
    .hero {
        padding-top: 5rem;
    }
    .hero-image {
        height: 320px;
    }
}

/* Carrinho de Compras */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--brand-dark);
    transition: all 0.2s ease;
}

.cart-link:hover {
    color: var(--brand-primary);
    opacity: 1;
}

.cart-link svg {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart h2 {
    font-family: var(--font-display);
    margin: 0 0 1rem;
}

.empty-cart p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.cart-items-section h2 {
    font-family: var(--font-display);
    margin: 0 0 2rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(31, 26, 27, 0.08);
    margin-bottom: 1.5rem;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 0.75rem;
    background-size: cover;
    background-position: center;
    background-color: var(--brand-light);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-family: var(--font-display);
}

.cart-item-info h3 a {
    color: var(--brand-dark);
}

.cart-item-info h3 a:hover {
    color: var(--brand-primary);
}

.cart-item-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0 0 0.5rem;
}

.cart-item-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-primary);
    margin: 0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(31, 26, 27, 0.15);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    min-width: 44px;  /* WCAG 2.1 touch target */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--brand-primary);
    transition: all 0.2s ease;
    border-radius: 0.25rem;
}

.qty-btn:hover {
    background: var(--brand-light);
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.qty-input:focus {
    outline: none;
}

.btn-update-qty {
    background: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-update-qty:hover {
    background: var(--brand-primary);
    color: #fff;
}

.btn-remove {
    background: transparent;
    border: none;
    color: var(--gray-500);
    padding: 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-remove:hover {
    color: #b4232c;
}

/* Aviso de produto esgotado no carrinho */
.out-of-stock-notice {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(180, 35, 44, 0.08);
    border-radius: 0.5rem;
    border: 1px solid rgba(180, 35, 44, 0.2);
}

.stock-badge.out-of-stock {
    display: inline-block;
    background: #b4232c;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-message {
    font-size: 0.85rem;
    color: #b4232c;
    margin: 0;
}

.cart-item-total {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-total strong {
    font-size: 1.3rem;
    font-family: var(--font-display);
    color: var(--brand-dark);
}

.cart-summary-section {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(31, 26, 27, 0.1);
}

.cart-summary-card h2 {
    font-family: var(--font-display);
    margin: 0 0 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-line span:first-child {
    color: var(--gray-700);
}

.summary-line strong {
    font-weight: 600;
    color: var(--brand-dark);
}

.shipping-info {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.summary-divider {
    border: none;
    border-top: 1px solid rgba(31, 26, 27, 0.1);
    margin: 1.5rem 0;
}

.summary-total {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.summary-total strong {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--brand-primary);
}

.btn-checkout {
    width: 100%;
    margin-bottom: 1rem;
    justify-content: center;
}

.btn-continue {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.security-badges {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 26, 27, 0.05);
}

.security-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.cart-alerts {
    margin-bottom: 2rem;
}

.cart-alerts p {
    margin: 0.5rem 0;
}

.alert.warning {
    background: #fff4e5;
    color: #8a6d3b;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #f0ad4e;
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-section {
        position: static;
    }

    .cart-item-card {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .cart-item-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .cart-item-card {
        grid-template-columns: 1fr;
    }

    .cart-item-image {
        width: 100%;
        height: 200px;
    }

    .quantity-form {
        flex-wrap: wrap;
    }
}

/* Menu do usuário (dropdown) */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    border: 1px solid var(--brand-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-menu-trigger:hover {
    background: var(--brand-primary);
    color: #fff;
}

.user-menu-trigger svg {
    width: 20px;
    height: 20px;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    background: var(--color-surface);
    border-radius: 1rem;
    box-shadow: 0 10px 30px var(--color-shadow-strong);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.user-menu.open .user-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--brand-dark);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.user-menu-dropdown a:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
}

.user-menu-divider {
    border: none;
    border-top: 1px solid rgba(31, 26, 27, 0.1);
    margin: 0.5rem 0;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(229, 92, 120, 0.1);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 26, 27, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 1100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--color-surface);
    z-index: 1101;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px var(--color-shadow-strong);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-subtle);
}

.mobile-nav-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-dark);
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mobile-nav-close:hover {
    background: rgba(229, 92, 120, 0.1);
    color: var(--brand-primary);
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--brand-light);
    color: var(--brand-primary);
}

.mobile-nav-link.active {
    border-left: 3px solid var(--brand-primary);
    padding-left: calc(1.25rem - 3px);
}

.mobile-nav-accordion svg {
    transition: transform 0.3s ease;
}

.mobile-nav-accordion[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-accordion[aria-expanded="true"] + .mobile-nav-submenu {
    display: block;
}

.mobile-nav-sublink {
    display: block;
    padding: 0.875rem 1.25rem 0.875rem 2rem;
    color: var(--gray-600);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-sublink:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
}

.mobile-nav-sublink.mobile-nav-all {
    font-weight: 600;
    color: var(--brand-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile sub-accordion (Rosto subcategories) */
.mobile-nav-sub-group {
    position: relative;
}

.mobile-nav-sub-accordion {
    width: 100%;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-sub-accordion svg {
    transition: transform 0.3s ease;
}

.mobile-nav-sub-accordion[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.mobile-nav-sub-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-sub-accordion[aria-expanded="true"] + .mobile-nav-sub-submenu {
    display: block;
}

.mobile-nav-sub-sublink {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 3rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-nav-sub-sublink:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
}

.mobile-nav-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-btn {
    display: block;
    text-align: center;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
}

.mobile-nav-btn:hover {
    background: rgba(229, 92, 120, 0.1);
}

.mobile-nav-btn-primary {
    background: var(--brand-primary);
    color: white;
}

.mobile-nav-btn-primary:hover {
    background: var(--brand-primary-light);
}

/* Responsive: Show hamburger on mobile */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
    }

    .site-header .container {
        gap: 0.75rem;
    }

    .site-header .logo img {
        height: 40px;
        max-width: 140px;
        width: auto;
    }

    .search-toggle,
    .wishlist-link,
    .notifications-toggle,
    .cart-link,
    .user-menu-trigger {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .user-menu-trigger {
        gap: 0;
    }

    .user-menu-trigger svg {
        width: 20px;
        height: 20px;
    }

    .site-actions .btn.ghost,
    .site-actions .btn.solid {
        display: none;
    }
}

@media (max-width: 600px) {
    .logo {
        margin-left: 0;
    }

    .site-header .logo img {
        height: 32px;
        max-width: 120px;
    }

    .site-actions {
        gap: 0.25rem;
    }

    .wishlist-link,
    .header-notifications,
    .notifications-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .wishlist-link svg,
    .notifications-toggle svg {
        width: 18px;
        height: 18px;
    }

    .site-header .container {
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
    }

    .search-toggle,
    .cart-link,
    .user-menu-trigger {
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .user-menu-trigger {
        gap: 0;
    }

    .user-menu-trigger svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 900px) and (min-width: 601px) {
    .site-header .logo img {
        height: 48px;
    }
}

/* Área do cliente */
.account-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.account-layout > *,
.account-content > * {
    min-width: 0;
}

.account-sidebar {
    /* Menu fixo - não segue o scroll */
    height: fit-content;
}

.account-menu {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(31, 26, 27, 0.06);
    border: 1px solid rgba(31, 26, 27, 0.08);
}

.account-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.account-menu-item:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
    border-left-color: rgba(229, 92, 120, 0.3);
}

.account-menu-item.active {
    background: linear-gradient(90deg, rgba(229, 92, 120, 0.1), transparent);
    color: var(--brand-primary);
    font-weight: 600;
    border-left-color: var(--brand-primary);
}

.account-menu-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.account-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.account-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(31, 26, 27, 0.06);
    border: 1px solid rgba(31, 26, 27, 0.08);
}

.account-section.account-info,
.account-section.account-danger,
.account-section#enderecos {
    grid-column: 1 / -1;
}

.account-section.account-danger {
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

.account-section h2 {
    font-family: var(--font-display);
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

.account-section h3 {
    font-family: var(--font-display);
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.account-section,
.account-form,
.addresses-list,
.address-card {
    max-width: 100%;
}

.address-content,
.address-recipient,
.account-section p {
    word-break: break-word;
}

.account-form {
    max-width: 500px;
}

.account-form .form-group {
    margin-bottom: 1.25rem;
}

.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.account-info {
    background: var(--brand-light);
    padding: 1.5rem;
    border-radius: 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.info-list strong {
    color: var(--gray-700);
}

/* Pedidos */
.orders-list {
    display: grid;
    gap: 1.5rem;
}

.order-card {
    background: #fff;
    border: 1px solid rgba(31, 26, 27, 0.1);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.2s ease;
}

.order-card:hover {
    box-shadow: 0 8px 24px rgba(31, 26, 27, 0.08);
    border-color: var(--brand-primary);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.order-card-header h3 {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.order-date {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.order-card-status {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.status-badge,
.payment-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background: #fff4e5;
    color: #8a6d3b;
}

.status-paid,
.status-processing {
    background: #e3f6eb;
    color: #1d7f4b;
}

.status-shipped {
    background: #e3f0f6;
    color: #1d5f7f;
}

.status-delivered {
    background: #e3f6eb;
    color: #1d7f4b;
}

.status-cancelled {
    background: #f6e3e3;
    color: #7f1d1d;
}

.payment-pending {
    background: #fff4e5;
    color: #8a6d3b;
}

.payment-approved {
    background: #e3f6eb;
    color: #1d7f4b;
}

.payment-rejected,
.payment-cancelled {
    background: #f6e3e3;
    color: #7f1d1d;
}

.order-card-body {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-info-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.order-info-value {
    font-size: 1rem;
    color: var(--brand-dark);
}

.order-card-footer {
    display: flex;
    justify-content: flex-end;
}

/* Detalhes do pedido */
.order-detail-card {
    background: #fff;
}

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.order-detail-header h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
}

.order-detail-status {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.order-detail-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(31, 26, 27, 0.1);
}

.order-detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-detail-section h3 {
    font-family: var(--font-display);
    margin: 0 0 1.25rem;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
}

.order-items-table th {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 2px solid rgba(31, 26, 27, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-items-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(31, 26, 27, 0.05);
}

.order-items-table tfoot td {
    padding-top: 1rem;
    border-top: 2px solid rgba(31, 26, 27, 0.1);
    border-bottom: none;
    font-size: 1.1rem;
}

.text-muted {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.shipping-address {
    background: var(--brand-light);
    padding: 1.25rem;
    border-radius: 0.75rem;
    font-style: normal;
    line-height: 1.6;
}

.empty-state {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 8.2rem 2.5rem;
    background: linear-gradient(135deg, #fef7f8 0%, #fff5f7 50%, #f9f0ed 100%);
    border-radius: 1rem;
    border: 1px solid rgba(214, 77, 106, 0.1);
    text-align: left;
}

.empty-state-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, #fff 0%, #fef7f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(214, 77, 106, 0.15);
    border: 1px solid rgba(214, 77, 106, 0.1);
}

.empty-state-icon svg {
    width: 32px;
    height: 32px;
    color: var(--brand-primary);
    stroke-width: 1.5;
}

.empty-state-content {
    flex: 1;
    min-width: 0;
}

.empty-state h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin: 0 0 0.25rem;
    white-space: nowrap;
}

.empty-state p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
}

.empty-state .btn {
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(214, 77, 106, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.empty-state .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 77, 106, 0.35);
}

@media (max-width: 768px) {
    .empty-state {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .empty-state h2,
    .empty-state p {
        white-space: normal;
    }
}

@media (max-width: 900px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .account-sidebar {
        position: static;
    }

    .account-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0.5rem;
        gap: 0.5rem;
        overflow: hidden;
    }

    .account-menu-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
        gap: 0.375rem;
        border-radius: 0.5rem;
        border-left: none;
        background: var(--brand-light);
    }

    .account-menu-item:hover {
        border-left: none;
    }

    .account-menu-item.active {
        background: var(--brand-primary);
        color: #fff;
        border-left: none;
    }

    .account-menu-item svg {
        width: 20px;
        height: 20px;
    }

    .account-content {
        grid-template-columns: 1fr;
    }

    .account-section {
        padding: 1.25rem;
    }

    .order-card-header,
    .order-detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .order-card-status {
        align-items: flex-start;
    }

    .order-items-table {
        font-size: 0.85rem;
    }

    .order-items-table th,
    .order-items-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 600px) {
    .user-menu-trigger span {
        display: none;
    }

    .user-menu-dropdown {
        position: fixed;
        top: 60px;
        right: 0.5rem;
        left: auto;
        width: calc(100vw - 1rem);
        max-width: 260px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .order-card-body {
        flex-direction: column;
        gap: 1rem;
    }

    .order-items-table {
        display: block;
        overflow-x: auto;
    }

    /* Account page mobile */
    .account-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-menu-item {
        padding: 0.625rem 0.375rem;
        font-size: 0.7rem;
    }

    .account-menu-item svg {
        width: 18px;
        height: 18px;
    }

    .account-section {
        padding: 1rem;
    }

    .account-section h2 {
        font-size: 1.1rem;
    }

    .account-form {
        max-width: 100%;
    }
}

/* Cálculo de Frete */
.cep-input-group {
    display: flex;
    gap: 0.75rem;
}

.cep-input-group input {
    flex: 1;
}

.btn-calculate-shipping {
    background: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-calculate-shipping:hover {
    background: var(--brand-primary);
    color: #fff;
}

.btn-calculate-shipping:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.shipping-options {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--brand-light);
    border-radius: 1rem;
}

.shipping-options h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.shipping-loading {
    text-align: center;
    padding: 2rem;
    color: var(--gray-500);
}

.shipping-list {
    display: grid;
    gap: 1rem;
}

.shipping-option {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.shipping-option:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(229, 92, 120, 0.15);
}

.shipping-option.selected {
    border-color: var(--brand-primary);
    background: rgba(229, 92, 120, 0.05);
}

.shipping-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--brand-primary);
}

.shipping-option-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shipping-option-name {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 1rem;
}

.shipping-option-company {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.shipping-option-delivery {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.shipping-option-price {
    text-align: right;
}

.shipping-option-price strong {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--brand-primary);
}

@media (max-width: 700px) {
    .cep-input-group {
        flex-direction: column;
    }

    .btn-calculate-shipping {
        width: 100%;
    }

    .shipping-option {
        grid-template-columns: auto 1fr;
    }

    .shipping-option-price {
        grid-column: 2;
        text-align: left;
    }
}

/* Cupom de Desconto */
.coupon-section {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--brand-light);
    border-radius: 0.75rem;
}

.coupon-section h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--brand-dark);
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.coupon-input-group input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(229, 92, 120, 0.1);
}

.btn-apply-coupon {
    background: var(--brand-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    background: #d14567;
}

.btn-apply-coupon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.coupon-message {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.coupon-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.coupon-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(76, 175, 80, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 0.75rem;
}

.coupon-applied-code {
    font-weight: 600;
    color: #2e7d32;
}

.coupon-remove {
    background: none;
    border: none;
    color: #c62828;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
}

/* Reserva de estoque - Timer */
.reservation-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    color: #856404;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #ffc107;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reservation-timer svg {
    flex-shrink: 0;
    color: #f59e0b;
}

.reservation-timer strong {
    font-family: var(--font-mono, 'SF Mono', 'Consolas', monospace);
    color: #d97706;
    font-weight: 700;
}

.reservation-timer.expiring-soon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #f87171;
    color: #991b1b;
    animation: pulse-warning 2s ease-in-out infinite;
}

.reservation-timer.expiring-soon svg {
    color: #dc2626;
}

.reservation-timer.expiring-soon strong {
    color: #dc2626;
}

@keyframes pulse-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.reservation-timer.expired {
    background: #fee2e2;
    border-color: #f87171;
    color: #991b1b;
}

/* Avisos de estoque */
.stock-warnings {
    margin-bottom: 1.5rem;
}

.stock-warnings ul {
    margin: 0.75rem 0 0.75rem 1.25rem;
    padding: 0;
}

.stock-warnings li {
    margin: 0.25rem 0;
}

.stock-warnings a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #856404;
    font-weight: 600;
    text-decoration: underline;
}

.stock-warnings a:hover {
    color: #6b5303;
}

.summary-discount {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .coupon-input-group {
        flex-direction: column;
    }

    .btn-apply-coupon {
        width: 100%;
    }
}

/* Páginas Legais */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--brand-dark);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 26, 27, 0.1);
}

.legal-content h2:first-child {
    border-top: none;
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--gray-700);
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    color: var(--gray-700);
    line-height: 1.8;
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-content strong {
    color: var(--brand-dark);
    font-weight: 600;
}

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

.legal-content a:hover {
    opacity: 0.85;
}

.legal-content code {
    background: var(--brand-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .legal-content {
        padding: 0 1rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   RASTREAMENTO DE PEDIDO (REDESIGN 2.0)
   Design: Modern & Playful - Inspired by Gemini
   ======================================== */

/* Keyframes */
@keyframes tracking-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tracking-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tracking-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes tracking-truck {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

@keyframes tracking-progress {
    from { width: 0; }
    to { width: var(--progress-width, 0%); }
}

/* 1. PÁGINA - Background suave */
.tracking-page {
    background: #fdfafb;
    min-height: 100vh;
}

/* 2. HERO - Título centralizado */
.tracking-hero {
    background: linear-gradient(180deg, #fff 0%, #fdfafb 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

.tracking-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.tracking-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--brand-dark);
    margin: 0 0 0.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.tracking-hero h1 span {
    color: var(--brand-primary);
}

.tracking-hero > .container > p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* 3. SEÇÃO PRINCIPAL */
.tracking-section {
    padding: 0 0 4rem;
    background: transparent;
}

.tracking-main-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 4. CARD PRINCIPAL - Busca + Timeline */
.tracking-main-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(229, 92, 120, 0.15), 0 0 0 1px rgba(229, 92, 120, 0.05);
    overflow: hidden;
    margin-bottom: 1.5rem;
    animation: tracking-fadeInUp 0.6s ease-out;
}

/* Área de busca */
.tracking-search-area {
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #fdfafb 100%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tracking-search-area {
        flex-direction: row;
        align-items: flex-end;
        padding: 2.5rem;
    }
}

.tracking-search-form {
    flex: 1;
}

.tracking-search-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.tracking-search-row {
    display: flex;
    gap: 0.75rem;
}

.tracking-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(229, 92, 120, 0.15);
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    background: #fff;
    transition: all 0.2s ease;
}

.tracking-search-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(229, 92, 120, 0.1);
}

.tracking-search-input::placeholder {
    color: #aaa;
    font-weight: 400;
}

.tracking-search-btn {
    padding: 1rem 1.5rem;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tracking-search-btn:hover {
    background: #d14a68;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 92, 120, 0.3);
}

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

/* Status badges */
.tracking-status-badges {
    display: flex;
    gap: 0.75rem;
}

.tracking-status-badge {
    background: #fff;
    border: 1px solid rgba(229, 92, 120, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tracking-status-badge-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.tracking-status-badge-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.tracking-status-badge-value.highlight {
    color: var(--brand-primary);
}

/* 5. TIMELINE HORIZONTAL */
.tracking-timeline-area {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(229, 92, 120, 0.08);
}

@media (min-width: 768px) {
    .tracking-timeline-area {
        padding: 3rem 3rem;
    }
}

.tracking-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tracking-timeline {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
    }
}

/* Linha de fundo */
.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(229, 92, 120, 0.15);
    border-radius: 3px;
}

@media (min-width: 768px) {
    .tracking-timeline::before {
        left: 0;
        right: 0;
        top: 23px;
        bottom: auto;
        width: auto;
        height: 3px;
    }
}

/* Linha de progresso */
.tracking-timeline::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    width: 3px;
    height: var(--progress-height, 0%);
    background: var(--brand-primary);
    border-radius: 3px;
    transition: height 1s ease-out;
}

@media (min-width: 768px) {
    .tracking-timeline::after {
        left: 0;
        top: 23px;
        height: 3px;
        width: var(--progress-width, 0%);
        transition: width 1s ease-out;
    }
}

/* Step */
.tracking-step {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 0;
}

@media (min-width: 768px) {
    .tracking-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        gap: 0.75rem;
    }
}

.tracking-step-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid rgba(229, 92, 120, 0.2);
    color: rgba(229, 92, 120, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tracking-step-dot svg {
    width: 22px;
    height: 22px;
}

.tracking-step.is-complete .tracking-step-dot {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.tracking-step.is-current .tracking-step-dot {
    background: #fff;
    border-color: var(--brand-primary);
    border-width: 4px;
    color: var(--brand-primary);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(229, 92, 120, 0.3);
}

.tracking-step.is-current .tracking-step-dot svg {
    animation: tracking-truck 0.6s ease-in-out infinite;
}

.tracking-step-content {
    padding-top: 0.5rem;
}

@media (min-width: 768px) {
    .tracking-step-content {
        padding-top: 0;
    }
}

.tracking-step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.15rem;
    white-space: nowrap;
}

.tracking-step.is-complete .tracking-step-label {
    color: var(--brand-dark);
}

.tracking-step.is-current .tracking-step-label {
    color: var(--brand-primary);
    font-weight: 800;
}

.tracking-step-date {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

/* 6. GRID DE DETALHES (3 colunas) */
.tracking-details-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .tracking-details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.tracking-detail-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(229, 92, 120, 0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    animation: tracking-fadeInUp 0.5s ease-out both;
}

.tracking-detail-card:nth-child(1) { animation-delay: 0.1s; }
.tracking-detail-card:nth-child(2) { animation-delay: 0.2s; }
.tracking-detail-card:nth-child(3) { animation-delay: 0.3s; }

.tracking-detail-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

.tracking-detail-card-header svg {
    width: 20px;
    height: 20px;
}

.tracking-detail-card-header h3 {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.tracking-detail-card-body {
    font-size: 0.9rem;
    color: var(--brand-dark);
    line-height: 1.6;
}

.tracking-detail-card-body strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tracking-detail-card-body p {
    margin: 0 0 0.25rem;
    color: #64748b;
}

.tracking-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.tracking-detail-row:last-child {
    border-bottom: none;
}

.tracking-detail-row span:first-child {
    color: #64748b;
    font-size: 0.85rem;
}

.tracking-detail-row span:last-child {
    font-weight: 600;
    color: var(--brand-dark);
}

.tracking-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.75rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.tracking-detail-link:hover {
    gap: 0.5rem;
    text-decoration: underline;
}

.tracking-detail-link svg {
    width: 14px;
    height: 14px;
}

/* Card de Suporte (destaque escuro) */
.tracking-support-card {
    background: var(--brand-dark);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.tracking-support-card:hover {
    transform: translateY(-3px);
}

.tracking-support-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(229, 92, 120, 0.1);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.tracking-support-card:hover::after {
    transform: scale(1.5);
}

.tracking-support-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}

.tracking-support-icon svg {
    width: 22px;
    height: 22px;
}

.tracking-support-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.tracking-support-card p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.tracking-support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.tracking-support-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.tracking-support-card:hover .tracking-support-link svg {
    transform: translateX(4px);
}

/* 7. FAQ SECTION (2 colunas) */
.tracking-faq {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(229, 92, 120, 0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    animation: tracking-fadeInUp 0.6s ease-out 0.4s both;
}

.tracking-faq-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin: 0 0 2rem;
}

.tracking-faq-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 768px) {
    .tracking-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.tracking-faq details {
    background: #fff;
    border: 1px solid rgba(229, 92, 120, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.tracking-faq details:hover {
    background: rgba(229, 92, 120, 0.02);
    border-color: rgba(229, 92, 120, 0.2);
}

.tracking-faq details[open] {
    background: rgba(229, 92, 120, 0.03);
    border-color: rgba(229, 92, 120, 0.2);
}

.tracking-faq summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
    cursor: pointer;
}

.tracking-faq summary::-webkit-details-marker {
    display: none;
}

.tracking-faq summary::after {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(229, 92, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e55c78' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.tracking-faq details[open] summary::after {
    transform: rotate(180deg);
    background-color: rgba(229, 92, 120, 0.15);
}

.tracking-faq details p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
}

/* 8. FORMULÁRIO DE BUSCA INICIAL (quando não há resultado) */
.tracking-empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.tracking-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(229, 92, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.tracking-empty-icon svg {
    width: 36px;
    height: 36px;
}

.tracking-empty-state h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 0.5rem;
}

.tracking-empty-state p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* 9. ITENS DO PEDIDO */
.tracking-items-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 92, 120, 0.08);
}

.tracking-items-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-items-title svg {
    width: 16px;
    height: 16px;
}

.tracking-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.tracking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    gap: 1rem;
}

.tracking-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brand-dark);
}

.tracking-item-qty {
    font-size: 0.8rem;
    color: #64748b;
    background: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
}

.tracking-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-dark);
}

/* 10. MENSAGEM DE FEEDBACK */
.tracking-feedback {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}

.tracking-feedback.show {
    display: block;
}

.tracking-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.tracking-feedback.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* 11. FORMULÁRIO INICIAL (2 campos lado a lado) */
.tracking-initial-form {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
}

@media (min-width: 600px) {
    .tracking-initial-form {
        grid-template-columns: 1fr 1fr;
    }
}

.tracking-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tracking-input-group label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tracking-input-group input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(229, 92, 120, 0.15);
    border-radius: 1rem;
    font-size: 1rem;
    color: var(--brand-dark);
    background: #fff;
    transition: all 0.2s ease;
}

.tracking-input-group input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(229, 92, 120, 0.1);
}

.tracking-input-group input::placeholder {
    color: #aaa;
}

.tracking-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--brand-primary);
    color: #fff;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.tracking-submit-btn:hover:not(:disabled) {
    background: #d14a68;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 92, 120, 0.3);
}

.tracking-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.tracking-submit-btn svg {
    width: 20px;
    height: 20px;
}

.tracking-helper-text {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* 12. RESPONSIVO */
@media (max-width: 767px) {
    .tracking-status-badges {
        width: 100%;
    }

    .tracking-status-badge {
        flex: 1;
    }

    .tracking-main-card {
        border-radius: 1rem;
    }

    .tracking-search-area {
        padding: 1.5rem;
    }

    .tracking-timeline-area {
        padding: 2rem 1.5rem;
    }

    .tracking-faq {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

/* ========================================
   COOKIE BANNER (LGPD)
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    color: white;
    padding: 1rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-text svg {
    flex-shrink: 0;
    color: var(--brand-primary);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--brand-muted);
}

.cookie-modal-header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--brand-dark);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--brand-muted);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--brand-dark);
}

.cookie-option-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--brand-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-switch.disabled .toggle-slider {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--brand-muted);
    justify-content: flex-end;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    opacity: 1;
}

/* ========================================
   LAZY LOADING IMAGES
   ======================================== */

img[loading="lazy"] {
    background: linear-gradient(90deg, var(--brand-muted) 25%, var(--brand-light) 50%, var(--brand-muted) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

img[loading="lazy"].loaded {
    animation: none;
    background: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ========================================
   CHECKOUT PAGE - LAYOUT COMPLETO
   ======================================== */

.checkout {
    padding: 2rem 0;
}

.checkout > h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

/* Grid principal: formulário à esquerda, resumo à direita */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

/* Coluna do formulário */
.checkout-form {
    background: var(--color-surface);
    min-width: 0;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.checkout-form h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-primary);
    color: var(--color-text);
}

.checkout-form h2:not(:first-child) {
    margin-top: 2rem;
}

/* Linhas de formulário lado a lado */
.checkout-form .form-row {
    display: flex;
    gap: 1rem;
}

.checkout-form .form-row .form-group {
    flex: 1;
}

.checkout-form .form-group {
    margin-bottom: 1rem;
}

.checkout-form .form-group:last-of-type {
    margin-bottom: 0;
}

/* CEP com botão */
.cep-input-group {
    display: flex;
    gap: 0.5rem;
}

.cep-input-group input {
    flex: 1;
}

.btn-calculate-shipping {
    padding: 0.85rem 1.25rem;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-calculate-shipping:hover {
    background: var(--brand-primary-dark);
}

/* Opções de frete */
.shipping-options {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--brand-light);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
}

.shipping-options h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.shipping-loading {
    text-align: center;
    padding: 1rem;
    color: var(--color-text-secondary);
}

.shipping-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.shipping-option.selected {
    border-color: var(--brand-primary);
    background: rgba(229, 92, 120, 0.05);
}

.shipping-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--brand-primary);
}

.shipping-option-info {
    flex: 1;
}

.shipping-option-name {
    font-weight: 600;
    color: var(--color-text);
}

.shipping-option-time {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.shipping-option-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-primary);
}

/* ========================================
   ENTREGA LOCAL - DESTAQUE ESPECIAL
   ======================================== */
.shipping-option-local {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-color: #4caf50 !important;
    position: relative;
}

.shipping-option-local:hover {
    border-color: #388e3c !important;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.shipping-option-local.selected {
    background: linear-gradient(135deg, #c8e6c9 0%, #dcedc8 100%);
    border-color: #2e7d32 !important;
}

.shipping-local-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-option-distance {
    display: inline-block;
    background: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

.shipping-option-local .shipping-option-price strong {
    color: #2e7d32;
}

/* ========================================
   ORDER SUMMARY CARD - PREMIUM DESIGN
   ======================================== */
.order-summary-card {
    background: linear-gradient(145deg, #ffffff 0%, #fdfcfb 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: fit-content;
    min-width: 0;
}

/* Header do resumo */
.summary-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #d64d6a 100%);
    color: white;
}

.summary-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-header-icon svg {
    stroke: white;
}

.summary-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.summary-item-count {
    font-size: 0.8125rem;
    opacity: 0.9;
}

/* Lista de produtos */
.summary-products {
    padding: 1rem 1.5rem;
    max-height: 280px;
    overflow-y: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-products::-webkit-scrollbar {
    width: 4px;
}

.summary-products::-webkit-scrollbar-track {
    background: transparent;
}

.summary-products::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.summary-product-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 0.875rem;
    padding: 0.875rem 0;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.summary-product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-product-item:first-child {
    padding-top: 0;
}

.summary-product-image {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 0.625rem;
    overflow: hidden;
    background: #f8f7f6;
    flex-shrink: 0;
}

.summary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.summary-product-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: var(--brand-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.summary-product-info {
    min-width: 0;
}

.summary-product-name {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 0.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.summary-product-variant {
    display: block;
    font-size: 0.75rem;
    color: var(--brand-primary);
    margin-bottom: 0.125rem;
}

.summary-product-unit-price {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.summary-product-total {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-text);
    white-space: nowrap;
}

/* Seção de cupom - Redesenhada */
.summary-coupon-section {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(229, 92, 120, 0.04) 0%, rgba(229, 92, 120, 0.08) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.coupon-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    padding: 0.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.coupon-input-wrapper:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(229, 92, 120, 0.1);
}

.coupon-icon {
    padding: 0.5rem 0.75rem;
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.coupon-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.625rem 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 0;
}

.coupon-input-wrapper input:focus {
    outline: none;
}

.coupon-input-wrapper input::placeholder {
    text-transform: none;
    letter-spacing: normal;
    color: #aaa;
}

.coupon-apply-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.625rem 1rem;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.coupon-apply-btn:hover {
    background: #d64d6a;
    transform: translateX(2px);
}

.coupon-apply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.coupon-apply-btn .btn-icon {
    transition: transform 0.2s ease;
}

.coupon-apply-btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Feedback do cupom */
.coupon-feedback {
    margin-top: 0.625rem;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.coupon-feedback.success {
    display: flex;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.15) 100%);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.coupon-feedback.error {
    display: flex;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.15) 100%);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

/* Resumo de valores */
.summary-totals {
    padding: 1.25rem 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.summary-row-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.summary-row-label svg {
    opacity: 0.6;
}

.summary-row-value {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* Linha de desconto */
.summary-row-discount {
    display: none;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.08) 0%, transparent 100%);
    margin: 0.25rem -1.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0;
}

.summary-row-discount.visible {
    display: flex;
}

.summary-row-discount .summary-row-label {
    color: #2e7d32;
}

.summary-row-discount .summary-row-label svg {
    opacity: 1;
    stroke: #2e7d32;
}

.discount-value {
    color: #2e7d32 !important;
    font-weight: 700 !important;
}

/* Divisor */
.summary-row-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    margin: 0.75rem 0;
}

/* Total */
.summary-row-total {
    padding: 0.875rem 0 0.5rem 0;
}

.summary-row-total .summary-row-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.summary-row-total .summary-row-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    font-family: var(--font-display);
}

/* Selos de segurança */
.summary-security {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: #f9f8f7;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.security-badge svg {
    color: #4CAF50;
    flex-shrink: 0;
}

/* Timer de reserva */
.reservation-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--color-warning-bg);
    border: 1px solid var(--color-warning);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-warning);
}

.reservation-timer svg {
    flex-shrink: 0;
}

/* Alertas de estoque */
.stock-warnings {
    margin-bottom: 1.5rem;
}

.stock-warnings ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
}

.stock-warnings li {
    margin-bottom: 0.25rem;
}

.stock-warnings a {
    color: var(--brand-primary);
    text-decoration: underline;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Botão de finalizar */
.checkout-form > button[type="submit"] {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ========================================
   CHECKOUT - RESPONSIVO MOBILE
   ======================================== */

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-summary-card {
        position: static;
        order: -1; /* Resumo aparece primeiro no mobile */
    }

    .checkout-form {
        padding: 1.5rem;
    }

    .checkout-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .summary-header {
        padding: 1rem 1.25rem;
    }

    .summary-products {
        padding: 1rem 1.25rem;
    }

    .summary-coupon-section {
        padding: 1rem 1.25rem;
    }

    .summary-totals {
        padding: 1rem 1.25rem;
    }

    .summary-row-discount {
        margin: 0.25rem -1.25rem;
        padding: 0.625rem 1.25rem;
    }

    .summary-security {
        padding: 0.875rem 1.25rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .checkout {
        padding: 1rem 0;
    }

    .checkout > h1 {
        font-size: 1.5rem;
    }

    .checkout-form {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .order-summary-card {
        border-radius: 1rem;
    }

    .cep-input-group {
        flex-direction: column;
    }

    .btn-calculate-shipping {
        width: 100%;
    }

    .summary-products {
        max-height: 200px;
    }

    .summary-product-item {
        grid-template-columns: 48px 1fr auto;
        gap: 0.625rem;
    }

    .summary-product-image {
        width: 48px;
        height: 48px;
    }

    .summary-product-name {
        font-size: 0.8125rem;
    }

    .summary-product-total {
        font-size: 0.875rem;
    }

    .coupon-input-wrapper {
        flex-wrap: wrap;
    }

    .coupon-icon {
        display: none;
    }

    .coupon-apply-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .summary-security {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .summary-row-total .summary-row-value {
        font-size: 1.25rem;
    }

    .shipping-option {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .shipping-option-info {
        min-width: 0;
    }

    .shipping-option-name,
    .shipping-option-company,
    .shipping-option-delivery {
        word-break: break-word;
    }
}

/* ========================================
   CHECKOUT CONSENT CHECKBOX
   ======================================== */

.consent-checkbox {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--brand-light);
    border-radius: 0.5rem;
    border: 1px solid var(--brand-muted);
}

.consent-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.1rem;
    flex-shrink: 0;
    accent-color: var(--brand-primary);
}

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

.consent-checkbox.has-error {
    border-color: #e53e3e;
    background: #fff5f5;
}

.consent-checkbox .form-error {
    margin-top: 0.5rem;
    margin-left: 2rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }
}

/* ========================================
   ACCESSIBILITY - FOCUS VISIBLE STYLES
   WCAG 2.1 Level AA Compliance
   ======================================== */

/* Focus visible for all interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--brand-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(229, 92, 120, 0.15);
}

/* Remove default outline only when focus-visible is supported */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast focus for dark backgrounds */
.site-footer a:focus-visible,
.admin-sidebar a:focus-visible {
    outline-color: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

/* Skip link for keyboard navigation */
.skip-link {
    position: fixed;
    top: max(1rem, env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translate(-50%, calc(-100% - 1.5rem));
    background: var(--brand-primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.skip-link:focus-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

/* ========================================
   ENHANCED ANIMATIONS & MICRO-INTERACTIONS
   ======================================== */

/* Fade-in with direction */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Blur-up for lazy images */
@keyframes blurFadeIn {
    from { filter: blur(8px); opacity: 0.6; }
    to { filter: blur(0); opacity: 1; }
}

/* Underline grow effect */
@keyframes underlineGrow {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

/* Glow for badges */
@keyframes subtleGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(229, 92, 120, 0.3); }
    50% { box-shadow: 0 0 16px rgba(229, 92, 120, 0.5); }
}

/* Skeleton loading shimmer */
@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Checkmark draw animation */
@keyframes checkmarkDraw {
    0% { stroke-dashoffset: 50; }
    100% { stroke-dashoffset: 0; }
}

/* Scale bounce */
@keyframes scaleBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Cart badge bounce */
@keyframes cartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Toast slide in */
@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Toast slide out */
@keyframes toastSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Focus ring animation */
@keyframes focusRing {
    0% { box-shadow: 0 0 0 0 rgba(229, 92, 120, 0.4); }
    100% { box-shadow: 0 0 0 4px rgba(229, 92, 120, 0.2); }
}

/* ========================================
   SKELETON LOADING
   ======================================== */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 1em;
    margin: 0.5em 0;
    border-radius: 4px;
}

.skeleton-title {
    height: 1.5em;
    width: 60%;
    border-radius: 4px;
}

.skeleton-image {
    aspect-ratio: 1;
    border-radius: 4px;
}

.skeleton-button {
    height: 44px;
    width: 120px;
    border-radius: 4px;
}

.skeleton-card {
    background: white;
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    border: 1px solid #f0eded;
}

.skeleton-card .skeleton-image {
    margin-bottom: 1rem;
}

/* ========================================
   ENHANCED BUTTON INTERACTIONS
   ======================================== */

/* Smoother button transitions */
.btn,
button,
.filter-submit-btn,
.product-modern-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover lift effect */
.btn:hover:not(:disabled),
.filter-submit-btn:hover:not(:disabled),
.product-modern-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

/* Active press effect */
.btn:active:not(:disabled),
button:active:not(:disabled):not(.gallery-nav),
.filter-submit-btn:active:not(:disabled),
.product-modern-btn:active:not(:disabled) {
    transform: scale(0.98);
}

/* ========================================
   DYNAMIC HEADER (HIDE ON SCROLL)
   ======================================== */

.site-header {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   ENHANCED FORM VALIDATION
   ======================================== */

.input-valid {
    border-color: var(--color-success) !important;
    box-shadow: 0 0 0 3px rgba(29, 127, 75, 0.1);
    padding-right: 2.5rem !important;
}

.input-invalid {
    border-color: var(--color-error) !important;
    box-shadow: 0 0 0 3px rgba(180, 35, 44, 0.1);
    padding-right: 2.5rem !important;
}

.validation-icon {
    position: absolute;
    right: 12px;
    bottom: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.validation-icon.visible {
    opacity: 1;
}

.validation-icon.valid {
    color: var(--color-success);
}

.validation-icon.invalid {
    color: var(--color-error);
}

.field-error {
    color: var(--color-error);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    display: block;
}

/* ========================================
   ENHANCED TOAST NOTIFICATIONS
   ======================================== */

.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    background: var(--color-surface);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 380px;
    animation: toastSlideIn 0.3s ease-out;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.toast.hiding {
    animation: toastSlideOut 0.3s ease-in forwards;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-success .toast-icon {
    background: var(--color-success-bg);
    color: var(--color-success);
}

.toast-error .toast-icon {
    background: var(--color-error-bg);
    color: var(--color-error);
}

.toast-warning .toast-icon {
    background: var(--color-warning-bg);
    color: var(--color-warning);
}

.toast-info .toast-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
    color: var(--color-text);
}

.toast-message {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--brand-primary);
    transition: width linear;
}

.toast-action {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.toast-action:hover {
    opacity: 0.8;
}

/* ========================================
   MOBILE TOUCH FEEDBACK
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    .btn:active,
    button:active:not(.gallery-nav),
    .filter-submit-btn:active,
    .product-modern-btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .product-modern-card:active {
        transform: scale(0.98);
    }

    /* Larger touch targets on mobile */
    .filter-checkbox,
    .checkbox-mark {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========================================
   IMPROVED TOUCH/CLICK TARGETS (WCAG 2.5.5)
   ======================================== */

/* Ensure minimum 44x44px touch targets for interactive elements */
.header-icon-btn,
.header-search .search-btn,
.nav-icon-btn,
.action-btn,
.icon-btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Clickable labels should have adequate padding */
label[for],
.form-checkbox-modern,
.consent-checkbox label {
    cursor: pointer;
    padding: 0.25rem;
    margin: -0.25rem;
}

/* Improve checkbox visual feedback */
input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
}

/* Custom checkboxes should have larger hit area */
.form-checkbox-modern,
.consent-checkbox label {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Icon buttons hover feedback */
.header-icon-btn:hover,
.nav-icon-btn:hover,
.action-btn:hover {
    background-color: rgba(229, 92, 120, 0.1);
    border-radius: 0.5rem;
}

/* ========================================
   GLOBAL SMOOTH TRANSITIONS
   ======================================== */

a,
button,
input,
select,
textarea,
.card,
.product-modern-card,
.filter-input,
.filter-select {
    transition-property: background-color, border-color, color, box-shadow, transform, opacity;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states */
:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 92, 120, 0.4);
}

/* ========================================
   CATALOG CARD ANIMATIONS
   ======================================== */

.product-modern-card.animate-left {
    animation: fadeInLeft 0.6s ease-out both;
}

.product-modern-card.animate-right {
    animation: fadeInRight 0.6s ease-out both;
}

/* Best Seller hover effect */
.tag-bestseller {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-modern-card:hover .tag-bestseller {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(229, 92, 120, 0.4);
}

/* Image blur fade effect */
.product-modern-image img.blur-load {
    animation: blurFadeIn 0.6s ease-out forwards;
}

/* Enhanced card hover */
.product-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ========================================
   CART BADGE ANIMATION
   ======================================== */

.cart-link .cart-badge.bounce {
    animation: cartBounce 0.5s ease-out;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .toast {
        animation: none;
    }

    .product-modern-card {
        animation: none;
    }

    .site-header {
        transition: none;
    }
}

/* ==========================================================================
   SWATCH SELECTOR - Cores e Variacoes de Produtos
   ========================================================================== */

.product-variations {
    margin: 1.25rem 0;
}

.swatch-section,
.size-section {
    margin-bottom: 1rem;
}

.swatch-label,
.size-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.selected-color-name {
    color: #333;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.swatch-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Swatch Individual - Clean */
.swatch-item {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    background-size: cover;
    background-position: center;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.swatch-item:hover:not(.out-of-stock) {
    transform: scale(1.08);
}

.swatch-item:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.swatch-item.selected {
    box-shadow: 0 0 0 2px var(--brand-primary);
}

/* Checkmark no swatch selecionado */
.swatch-check {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s ease;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.swatch-check svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 3;
}

.swatch-item.selected .swatch-check {
    opacity: 1;
}

/* Swatch indisponivel - clicável mas com indicador visual */
.swatch-item.out-of-stock {
    opacity: 0.5;
    cursor: pointer;
    position: relative;
}

.swatch-item.out-of-stock::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px dashed rgba(0,0,0,0.3);
    border-radius: inherit;
    pointer-events: none;
}

.swatch-item.out-of-stock:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.swatch-item.out-of-stock.selected {
    opacity: 0.8;
}

/* Seletor de Tamanho */
.size-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-item {
    min-width: 44px;
    height: 36px;
    padding: 0 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.size-item:hover:not(.out-of-stock) {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.size-item:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.size-item.selected,
.size-item.selected:hover {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
}

.size-item.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Swatches maiores para pagina de produto */
.product-page .swatch-item,
.product-detail .swatch-item {
    width: 32px;
    height: 32px;
}

/* Swatches menores para cards */
.product-card .swatch-container {
    gap: 4px;
}

.product-card .swatch-item {
    width: 14px;
    height: 14px;
    border-width: 1px;
}

.product-card .swatch-item .swatch-check {
    display: none;
}

/* Swatches em lista horizontal (mini preview) */
.swatch-preview {
    display: flex;
    gap: 4px;
    margin-top: 0.5rem;
}

.swatch-preview .swatch-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.swatch-preview .swatch-more {
    font-size: 0.7rem;
    color: #999;
}

/* Variacao de estoque */
.variation-stock {
    margin-top: 0.75rem;
    font-size: 0.8rem;
}

.variation-stock .stock-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.variation-stock .stock-status.in-stock {
    color: #2e7d32;
}

.variation-stock .stock-status.out-of-stock {
    color: #c62828;
}

.variation-stock .stock-status.low-stock {
    color: #ef6c00;
}

/* Responsivo */
@media (max-width: 480px) {
    .swatch-item {
        width: 26px;
        height: 26px;
    }

    .size-item {
        min-width: 40px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* ========================================
   CUPOM PROMOCIONAL - Homepage Badge
   ======================================== */

.promo-coupon {
    position: fixed;
    z-index: 1000;
    color: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: promoPulse 2s ease-in-out infinite, promoSlideIn 0.5s ease-out;
    transition: transform 0.3s ease;
}

.promo-coupon:hover {
    transform: scale(1.02);
    animation-play-state: paused;
}

/* Estilos de posicionamento */
.promo-coupon--floating {
    bottom: 14rem;
    right: 2rem;
    padding: 1.25rem;
    max-width: 260px;
    text-align: center;
}

.promo-coupon--banner {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-coupon--badge {
    top: 8rem;
    right: 1rem;
    padding: 1rem;
    text-align: center;
    max-width: 200px;
}

/* Cores */
.promo-coupon--pink {
    background: linear-gradient(135deg, #e55c78, #d14567);
}

.promo-coupon--gold {
    background: linear-gradient(135deg, #d4a853, #b8942e);
}

.promo-coupon--green {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

/* Elementos do cupom */
.promo-coupon__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0.25rem;
}

.promo-coupon__close:hover {
    opacity: 1;
}

.promo-coupon__icon {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.promo-coupon__icon svg {
    display: block;
    margin: 0 auto;
}

.promo-coupon__message {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.promo-coupon__code-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.promo-coupon__code {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.promo-coupon__copy {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.promo-coupon__copy:hover {
    opacity: 1;
}

.promo-coupon__discount {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Animacoes */
@keyframes promoPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 48px rgba(229, 92, 120, 0.4);
    }
}

@keyframes promoSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes promoSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Banner: slide de cima */
.promo-coupon--banner {
    animation: promoBannerSlideIn 0.5s ease-out, promoPulse 2s ease-in-out infinite;
}

@keyframes promoBannerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .promo-coupon--floating {
        bottom: 10rem;
        right: 0.75rem;
        left: auto;
        max-width: 200px;
        padding: 0.75rem;
    }

    .promo-coupon--badge {
        top: auto;
        bottom: 10rem;
        right: 0.75rem;
        left: auto;
        max-width: 200px;
        padding: 0.75rem;
    }

    .promo-coupon--banner {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .promo-coupon__icon img {
        height: 45px !important;
    }

    .promo-coupon__message {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .promo-coupon__code-wrapper {
        padding: 0.35rem 0.5rem;
        margin-bottom: 0.35rem;
    }

    .promo-coupon__code {
        font-size: 0.85rem;
    }

    .promo-coupon__discount {
        font-size: 0.9rem;
    }
}

/* ========================================
   COUPON PAGE STYLES
   ======================================== */

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.coupon-card {
    position: relative;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(214, 77, 106, 0.15);
    border-color: var(--brand-primary-light);
}

/* Serrated edge effect using a radial gradient pattern */
.coupon-card::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-bg); /* Match page background */
    border-radius: 50%;
    box-shadow: inset -2px 0 4px rgba(0,0,0,0.05);
    z-index: 2;
}

.coupon-card::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-bg); /* Match page background */
    border-radius: 50%;
    box-shadow: inset 2px 0 4px rgba(0,0,0,0.05);
    z-index: 2;
}

/* Dashed line */
.coupon-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.coupon-discount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1.2;
}

.coupon-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-urgent {
    background-color: var(--color-warning-bg);
    color: var(--color-warning);
}

.coupon-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    flex-grow: 1;
}

.coupon-details {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px dashed var(--gray-200);
}

.coupon-rule {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.coupon-rule svg {
    color: var(--gray-300);
}

.coupon-action {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.coupon-code-wrapper {
    flex: 1;
    background: var(--gray-100, #f5f5f5);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px dashed var(--gray-300);
    position: relative;
}

.coupon-code {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 1px;
}

.btn-copy-coupon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
}

.btn-copy-coupon:hover {
    background-color: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .coupon-action {
        flex-direction: column;
    }
    
    .coupon-code-wrapper {
        width: 100%;
    }
    
    .btn-copy-coupon {
        width: 100%;
        justify-content: center;
    }
}
