:root {
    --primary: #000000;
    --secondary: #FFFFFF;
    --accent: #D4AF37;
    /* Gold */
    --accent-hover: #B8962E;
    --bg-light: #F9F9F9;
    --text-main: #333333;
    --text-muted: #777777;
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --font-h1: clamp(2.2rem, 8vw, 4rem);
    --font-h2: clamp(1.6rem, 6vw, 3rem);
    --font-p: clamp(0.85rem, 2vw, 1.1rem);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
    --section-spacing: clamp(3.5rem, 6vw, 6rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(200, 200, 200, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--secondary);
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Navigation */
/* Textures & Filters */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/p6.png');
    pointer-events: none;
    opacity: 0.15;
    z-index: 9999;
}

/* Top Promo */
.top-promo {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#main-nav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 30px;
    /* Offset for promo bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

#main-nav.scrolled {
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.mobile-only {
    display: none;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Move to the bottom */
    justify-content: center;
    /* Move to center horizontally */
    color: var(--primary);
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    /* Volta a ocupar 100% da capa */
    height: 100%;
    background-size: cover;
    background-position: center center;
    /* IMAGEM CENTRALIZADA */
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle overlay for text readability */
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 2rem 5rem 2rem;
    /* Add padding-bottom to avoid hitting the edge */
    text-align: center;
    /* Center the text and button */
}

.hero h1 {
    font-size: var(--font-h1);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 400;
    /* Bolder as per image */
    letter-spacing: -0.5px;
}

.hero p {
    font-size: var(--font-p);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #444;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

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

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

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

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

/* Category Cards */
.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.category-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-slow);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.cat-img {
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.cat-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .cat-img img {
    transform: scale(1.1);
}

/* Products Section */
.products {
    padding: var(--section-spacing) 0;
}

.section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2:empty {
    display: none;
}

.section-header h2 {
    font-size: var(--font-h2);
    margin: 0;
}

.filter-btns {
    display: inline-flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
    max-width: 100%;
}

.filter-btn {
    border: none;
    background: transparent;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    color: var(--text-main);
    user-select: none;
    outline: none;
}

.filter-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* SOLD OUT STYLES */
.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 10px 25px;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    border: 2px solid white;
}

.product-card.out-of-stock .p-img-container img {
    filter: none;
    opacity: 0.8;
}

.product-card.out-of-stock .price {
    color: #999;
}

.product-card.out-of-stock .p-actions button {
    background: #ccc;
    cursor: not-allowed;
}

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

.product-card {
    transition: var(--transition-slow);
    border-radius: var(--radius-md);
    text-align: center;
}

.p-img-container {
    position: relative;
    height: 350px;
    background: var(--bg-light);
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
}

.p-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.p-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.2rem;
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.product-card:hover .p-actions {
    bottom: 0;
}

.p-actions button {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.p-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-info h3 {
    margin-bottom: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
}

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

.price {
    font-weight: 600;
    color: var(--accent);
}

/* Botão sempre visível para adicionar ao carrinho */
.p-add-btn {
    margin-top: 0.75rem;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    width: 100%;
}

.p-add-btn:hover {
    background: var(--primary);
    color: white;
}

/* About Section */
.about {
    padding: 3rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 0.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -0.5rem;
}

.about-text *:empty {
    display: none;
}

.about-text span {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.about-text h2 {
    font-size: var(--font-h2);
    line-height: 1.2;
    margin: 1.5rem 0;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Newsletter */
.newsletter {
    padding: 6rem 0;
    text-align: center;
    background: var(--primary);
    color: white;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2.5rem;
}

#newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

#newsletter-form input {
    padding: 1rem 1.5rem;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Footer */
footer {
    padding: var(--section-spacing) 0 2rem;
    background: #111;
    color: #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #888;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1900;
}

.cart-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.cart-header h3 {
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

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

.btn-clear-cart {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: #aaa;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    transition: color 0.2s;
}

.btn-clear-cart:hover {
    color: #c00;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.88rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.2rem;
}

.cart-item-total {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.88rem;
    white-space: nowrap;
}

.cart-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 2px;
}

.qty-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.qty-num {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    font-size: 0.7rem;
    color: #ccc;
    cursor: pointer;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.remove-item:hover {
    color: #ff4d4d;
}

#cart-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-items {
    padding: 1.5rem 2rem;
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-totals {
    margin-bottom: 1.2rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.cart-total-row.total-final {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.btn-block {
    width: 100%;
}

#checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

#checkout-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#checkout-btn i {
    font-size: 1.1rem;
}

/* Cart icon bump animation */
@keyframes cart-bump {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }
}

.cart-bump {
    animation: cart-bump 0.4s ease;
}

/* Shipping Calculator in Cart */
.cart-shipping {
    padding: 1.5rem 2rem;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}

.cart-shipping h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

.shipping-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 0.9rem;
}

.shipping-input button {
    padding: 0 1rem;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.shipping-results {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.shipping-option {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    border: 1px solid #eee;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.shipping-option:hover,
.shipping-option.selected {
    border-color: var(--accent);
    background: #fff9e6;
}

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

/* Updated Button Pulse */
.btn-primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-modal.active {
    display: flex;
}

.p-modal-content {
    background: white;
    max-width: 900px;
    width: 100%;
    position: relative;
    padding: 3rem;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-p-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
}

.p-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.p-modal-img img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain; /* Mantém a proporção sem cortar a foto */
    background: #f9f9f9;
}

.modal-cat {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.p-modal-info h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Botões de variação no modal */
#modal-variations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.var-select-btn {
    padding: 7px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
}

.var-select-btn:hover {
    border-color: #D4AF37;
}

@media (max-width: 768px) {
    .p-modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .p-modal-content {
        padding: 1.5rem;
        height: auto;
        max-height: 95vh;
        overflow-y: auto;
        width: 95% !important;
        margin: 0 auto;
    }

    .close-p-modal {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 3rem;
        padding: 10px;
        z-index: 10;
    }

    .p-modal-img img {
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }

    .p-modal-info h2 {
        font-size: 1.8rem;
    }
}

/* Solução específica para Redução da Foto Principal no Desktop */
@media (min-width: 1024px) {
    .p-modal-grid {
        grid-template-columns: 45% 55%; /* Ajusta proporção para dar destaque ao texto */
        align-items: start;
    }
    
    .p-modal-img {
        display: flex;
        justify-content: center;
    }

    .p-modal-img img {
        max-width: 450px; /* Largura máxima solicitada */
        width: 100%;
        height: auto;
        border-radius: var(--radius-sm);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Grid Animation */
.product-grid .product-card:nth-child(1) {
    transition-delay: 0.1s;
}

.product-grid .product-card:nth-child(2) {
    transition-delay: 0.2s;
}

.product-grid .product-card:nth-child(3) {
    transition-delay: 0.3s;
}

.product-grid .product-card:nth-child(4) {
    transition-delay: 0.4s;
}

.product-grid .product-card:nth-child(5) {
    transition-delay: 0.5s;
}

.product-grid .product-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* Parallax Effect Simulation */
.hero-content {
    transition: transform 0.1s ease-out;
}

/* Smooth Nav Item Reveal */
.nav-links li {
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInDown 0.5s forwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.2s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.3s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.4s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .categories {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        margin-top: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 280px;
        height: 100vh;
        background: white;
        padding: 5rem 2rem;
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        /* Use transform for better mobile performance */
        transition: transform 0.4s ease;
        z-index: 9999;
        visibility: hidden;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    .nav-links a {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        display: block;
        padding: 0.5rem 0;
    }

    .mobile-only {
        display: block;
    }

    .menu-label {
        font-family: 'Playfair Display', serif;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--accent);
        letter-spacing: 2px;
        margin-top: 1rem;
        display: block;
    }

    .divider {
        display: none;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 1.8rem !important;
        cursor: pointer;
        padding: 10px;
        position: relative;
        z-index: 10001 !important;
        /* Above everything */
        pointer-events: auto !important;
    }

    /* Force product cards to be clickable on mobile */
    .product-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .p-actions {
        pointer-events: none;
        /* Let clicks pass through to the container onclick on mobile */
    }

    .p-actions button {
        pointer-events: auto;
        /* Except the button itself */
    }

    .logo {
        font-size: 1.2rem !important;
        letter-spacing: 1px !important;
    }

    .top-promo {
        display: none !important;
    }

    #main-nav {
        top: 0 !important;
        height: 60px !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        font-weight: 300 !important;
    }

    .hero p {
        font-size: 0.9rem !important;
    }

    .hero {
        height: auto;
        min-height: auto;
        flex-direction: column;
        /* No mobile, um em cima do outro */
        text-align: center !important;
    }

    .hero-bg-container {
        position: relative !important;
        width: 100% !important;
        height: 50vh !important;
        background-position: center center !important;
    }

    .hero-content {
        width: 100% !important;
        padding: 3rem 1.5rem !important;
        margin-left: 0 !important;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about {
        padding: 4rem 0;
    }
    
    .categories {
        display: none !important;
    }

    .about-text h2 {
        font-size: 1.8rem !important;
    }


    .cart-modal {
        width: 92vw !important;
        max-width: 360px !important;
        right: -100% !important;
    }

    .cart-modal.active {
        right: 0 !important;
    }

    .cart-header {
        padding: 1rem 1rem 0.9rem;
    }

    .cart-header h3 {
        font-size: 1rem;
    }

    .close-cart {
        font-size: 1.6rem;
    }

    .cart-items {
        padding: 0.9rem 1rem !important;
    }

    .cart-item {
        gap: 0.65rem;
        margin-bottom: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .cart-item-img {
        width: 56px;
        height: 56px;
    }

    .cart-item-info h4 {
        font-size: 0.8rem;
    }

    .cart-item-info .price,
    .cart-item-total {
        font-size: 0.78rem;
    }

    .cart-qty-control {
        gap: 6px;
    }

    .qty-btn {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }

    .qty-num {
        min-width: 16px;
        font-size: 0.78rem;
    }

    .remove-item {
        font-size: 0.66rem;
    }

    .cart-shipping {
        padding: 0.9rem 1rem;
    }

    .shipping-input input {
        padding: 0.65rem;
        font-size: 0.8rem;
    }

    .shipping-input button {
        padding: 0 0.7rem;
        font-size: 0.72rem;
    }

    .shipping-option {
        padding: 0.6rem;
        font-size: 0.78rem;
    }

    .cart-coupon {
        padding: 0.9rem 1rem;
    }

    .coupon-input-row input,
    .coupon-input-row button {
        font-size: 0.72rem;
        padding: 0.55rem 0.7rem;
    }

    #coupon-message {
        font-size: 0.72rem;
    }

    .cart-footer {
        padding: 1rem;
    }

    .about .grid-2 {
        gap: 2rem;
    }

    .cart-total-row {
        font-size: 0.8rem;
    }

    .cart-total-row.total-final {
        font-size: 0.95rem;
    }

    #checkout-btn,
    #pay-mp-btn {
        font-size: 0.8rem;
        padding: 0.75rem 0.6rem;
        letter-spacing: 1px;
        border-radius: var(--radius-sm);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0;
    }

    .p-img-container {
        height: auto;
        aspect-ratio: 1 / 1.1;
    }

    .product-card .p-info h3 {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .product-card .p-info .price {
        font-size: 0.85rem;
    }

    .p-actions {
        padding: 0.8rem;
    }

    .p-actions button {
        font-size: 0.65rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .filter-btns {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .filter-btns::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 1.2rem;
    }

    #newsletter-form {
        display: flex;
        flex-direction: column;
    }

    #newsletter-form input {
        width: 100%;
    }

    .newsletter h2 {
        font-size: 1.5rem;
    }
}


/* ========================
   COUPON STYLES
   ======================== */
.cart-coupon {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
}

.cart-coupon h4 {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.coupon-input-row {
    display: flex;
    gap: 8px;
}

.coupon-input-row input {
    flex: 1;
    background: #fdfdfd;
    border: 1px solid #ddd;
    color: #000;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
}

.coupon-input-row input::placeholder {
    color: #aaa;
}

.coupon-input-row input:focus {
    border-color: var(--accent);
}

.coupon-input-row button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: opacity 0.2s;
}

.coupon-input-row button:hover {
    opacity: 0.85;
}

#coupon-message {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    min-height: 1.1rem;
}

#coupon-message.success {
    color: #2ecc71;
}

#coupon-message.error {
    color: #e74c3c;
}

/* History Modal */
.history-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2500;
    display: none;
    justify-content: center;
    align-items: center;
}

.history-content {
    background: #fff;
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.history-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    color: var(--primary);
}

.history-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
}

.close-history {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.close-history:hover {
    color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 34px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.05);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* History Modal */
.history-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2500;
    display: none;
    justify-content: center;
    align-items: center;
}

.history-content {
    background: #fff;
    padding: 2.5rem;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.history-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    color: var(--primary);
}

.history-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
}

.close-history {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.close-history:hover {
    color: var(--primary);
}

/* ========================
   FILTRO DE PREÇO
   ======================== */
.filtro-preco { 
    background: #fff; 
    border: 1px solid #e0e0e0; 
    border-radius: var(--radius-md); 
    padding: 20px; 
    margin: 2rem auto; 
    text-align: left;
    max-width: 600px;
}
.filtro-preco h3 { 
    margin-top: 0; 
    font-size: 1.2rem; 
    color: var(--accent); 
    border-bottom: 1px solid #eee; 
    padding-bottom: 8px; 
    text-align: center;
}
.filtro-slider label {
    font-size: 0.9rem;
    font-weight: 600;
}
.slider-container { display: flex; gap: 15px; margin: 15px 0 10px; }
.slider-container input { flex: 1; accent-color: var(--accent); cursor: pointer; }
.slider-values { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.filtro-faixas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.filtro-faixas label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; cursor: pointer; }
.filtro-faixas input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
#limpar-filtro { 
    background: var(--accent); 
    color: white; 
    border: none; 
    padding: 10px 15px; 
    border-radius: var(--radius-sm); 
    cursor: pointer; 
    margin-top: 20px; 
    width: 100%; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}
#limpar-filtro:hover { background: var(--accent-hover); }
@media (max-width: 767px) { 
    .filtro-preco { padding: 15px; width: 100%; } 
    .filtro-faixas { grid-template-columns: 1fr; }
}

/* =============================================================
   SEÇÃO INFORMATIVA — TIPOS DE ACESSÓRIOS
   ============================================================= */
.info-acessorios {
    background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.info-acessorios .info-header {
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.info-acessorios .info-marca {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #c9a84c;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.info-acessorios .info-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.info-acessorios .info-titulo span {
    color: #c9a84c;
    display: block;
    font-size: 2.8rem;
}

.info-acessorios .info-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

.info-acessorios .info-intro strong {
    color: #c9a84c;
    font-weight: 600;
}

/* Cards Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.info-card {
    background: #fff;
    border: 1px solid #f0ebe0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.06);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8d5a0);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #c9a84c, #e8d5a0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #fff;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.info-card .info-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.info-card .info-card-desc strong {
    color: #555;
}

.info-card .info-card-check {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #c9a84c;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-card .info-card-check i {
    font-size: 0.7rem;
}

/* Footer da seção */
.info-footer {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid #f0ebe0;
    padding-top: 2rem;
}

.info-footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
}

.info-footer strong {
    color: #c9a84c;
    font-weight: 600;
}

.info-footer .info-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #c9a84c, #d4af37);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
}

.info-footer .info-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .info-acessorios {
        padding: 3.5rem 1.2rem;
    }

    .info-acessorios .info-titulo {
        font-size: 1.6rem;
    }

    .info-acessorios .info-titulo span {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem 1.2rem;
    }
}