/* Inter font loaded via <link> in index.html for faster rendering */

:root {
    --primary-color: #FFD700;
    --primary-hover: #e6c200;
    --bg-color: #0a0907; /* Bronze escuro luxuoso (não preto) */
    --card-bg: #12100d; /* Fundo do card bronze quente */
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #221f1a; /* Borda bronzeada sofisticada */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100vw;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100vw;
    position: relative;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top {
    background: transparent;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container .ag-logo {
    height: 45px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo-container:hover .ag-logo {
    transform: scale(1.05);
}

.footer-logo {
    /* Logo styling */
}

.search-box {
    display: flex;
    background: #1c1c1c;
    border-radius: 4px;
    overflow: hidden;
    width: 40%;
    transition: var(--transition);
    border: 1px solid #333;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.search-box input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 15px;
    width: 100%;
    outline: none;
}

.search-box button {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.user-cart-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-social-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    transform: scale(1.1);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}


.cart-icon {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--primary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bottom {
    background: transparent;
    padding: 0 5%;
    display: flex;
    align-items: center;
    position: relative;
}

.mobile-only-link {
    display: none;
}

.categories-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
}

.categories-btn:hover {
    color: var(--primary-color);
}

.bottom-nav-links {
    display: flex;
    list-style: none;
    margin-left: 20px;
}

.bottom-nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px 5px;
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 30px;
    background: transparent;
}

.bottom-nav-links li a:hover,
.bottom-nav-links li a.active {
    color: #111;
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    margin-top: 0;
    padding: 0 5%;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-content>* {
    opacity: 0;
    animation: fadeInUpHero 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation-delay: 0.1s;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.3s;
}

.hero-content p {
    font-size: 1.25rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation-delay: 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation-delay: 0.7s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
    opacity: 0.6;
    transition: var(--transition);
}

.scroll-down-indicator:hover {
    opacity: 1;
    color: var(--primary-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Premium Section Divider */
.section-divider {
    width: 80%;
    max-width: 1000px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    margin: 2rem auto 5rem auto;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

/* Section Title Premium */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 auto 3.5rem auto;
    position: relative;
    display: block;
    width: fit-content;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 50%, #FFB90f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.15));
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.section-title:hover::after {
    width: 120px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* Products Section */
.products-section {
    padding: 6rem 5%;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

.product-card {
    background: rgba(15, 15, 15, 0.95);
    /* Fundo quase sólido para evitar cálculos de blur */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transform: translateZ(20px);
}

.badge-oferta {
    background-color: #e60000;
    color: #fff;
}

.badge-mais-vendido {
    background-color: #ffcc00;
    color: #000;
}

.badge-lancamento {
    background-color: #0055ff;
    color: #fff;
}

.product-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.15);
    background: rgba(25, 25, 25, 0.8);
}

.product-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    background-color: #111;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.add-to-cart {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.add-to-cart:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: rotate(15deg) scale(1.1);
}

.about-image-collage {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-img-1 {
    width: 65%;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-60%);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
}

.collage-img-2 {
    width: 55%;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-30%);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: #000;
    padding: 15px 20px;
    border-radius: 50%;
    font-weight: 800;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    animation: floating 6s ease-in-out infinite;
}

.about-image img:hover {
    transform: scale(1.02) translateY(-10px);
    animation-play-state: paused;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: rgba(20, 20, 20, 0.98);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-info-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #fff;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer New */
.site-footer {
    background-color: rgba(5, 5, 5, 0.98);
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 2rem;
    padding: 0 5% 3rem;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-links-col h3,
.footer-newsletter h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-links-col ul {
    list-style: none;
}

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

.footer-links-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links-col ul a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    background: #1c1c1c;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-methods span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.payment-cards-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pay-card {
    background: #fff;
    border-radius: 4px;
    height: 32px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    top: 0;
    overflow: hidden;
}

.pay-card:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.pay-card i {
    font-size: 1.5rem;
}

.pay-card img {
    max-height: 18px;
    max-width: 35px;
    object-fit: contain;
}

.pay-visa i {
    color: #1a1f71;
}

.pay-master i {
    color: #eb001b;
}

.pay-amex {
    background: #2e77bc;
}

.pay-amex i {
    color: #fff;
}

.pay-pix {
    background: #222;
    border: 1px solid #444;
    gap: 4px;
    width: 55px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.pay-pix i {
    color: #32bcad;
    font-size: 1rem;
}

.footer-bottom-bar {
    background: #000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #111;
}

.footer-bottom-bar p {
    color: #555;
    font-size: 0.8rem;
}

.secure-badge {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

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

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

/* Product Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-content {
    background: #111;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
    color: #fff;
    border: 1px solid #333;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(4px);
}

.modal-close:hover {
    background: var(--primary-color);
    color: #000;
    transform: rotate(90deg) scale(1.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-similar-products {
    padding: 0 30px 30px 30px;
}

.modal-similar-products h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #fff;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.similar-products-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.similar-products-carousel::-webkit-scrollbar {
    height: 8px;
}

.similar-products-carousel::-webkit-scrollbar-track {
    background: #111;
    border-radius: 4px;
}

.similar-products-carousel::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.similar-products-carousel .product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
}

.similar-products-carousel .product-card .add-to-cart {
    width: 32px;
    height: 32px;
}

.modal-image-container {
    background: transparent;
    display: block;
    padding: 20px;
    height: auto;
    position: sticky;
    top: 0;
    align-self: start;
}

.modal-image-container img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.modal-gallery-layout {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    height: 100%;
    position: relative;
}

.modal-thumbnails {
    display: none !important;
    flex-direction: column;
    gap: 10px;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 5px;
}

.modal-thumbnail-item {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.modal-thumbnail-item:hover {
    opacity: 0.9;
    border-color: rgba(255, 215, 0, 0.5);
}

.modal-thumbnail-item.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}



.modal-main-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 50vh;
}

.modal-main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    transition: none;
}

/* Navigation arrows — always visible, hover color only, no animation */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    outline: none;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.gallery-nav-btn.prev-btn {
    left: 15px;
}

.gallery-nav-btn.next-btn {
    right: 15px;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-breadcrumbs {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
}

.modal-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.modal-installments {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 5px;
}

.modal-details-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 25px;
}

.modal-size-section {
    margin-bottom: 20px;
}

.size-label {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 10px;
}

.size-selector {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #444;
    background: #222;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.size-btn.active {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
}

.size-btn.disabled {
    color: #555;
    border-color: #333;
    cursor: not-allowed;
    position: relative;
}

.size-btn.disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, transparent 48%, #444 49%, #444 51%, transparent 52%);
}

/* ── ALERTA DE ESTOQUE RESPONSIVO ── */
.stock-alert {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    transition: all 0.3s ease;
    animation: none !important;
}

.stock-alert > i {
    flex-shrink: 0;
    font-size: 1rem;
}

.stock-alert > span {
    flex: 1;
    min-width: 0;
    white-space: normal;
    word-break: break-word;
}

.stock-alert.stock-danger {
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.15);
}

.stock-alert.stock-warning {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
}

.stock-alert.stock-success {
    color: #25d366;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 12px;
}

.stock-alert.stock-out {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 12px;
}

@media (max-width: 480px) {
    .stock-alert {
        font-size: 0.78rem !important;
        padding: 8px 10px !important;
        gap: 6px !important;
    }
    .stock-alert > i {
        font-size: 0.9rem;
    }
}

.purchase-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #444;
    height: 50px;
    background: #111;
}

.quantity-selector button {
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
}

.quantity-selector input {
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    outline: none;
}

.btn-comprar {
    flex: 1;
    background: var(--primary-color);
    color: #000;
    border: none;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.3s;
    height: 50px;
}

.btn-comprar:hover {
    filter: brightness(0.9);
}

.shipping-calculator {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.shipping-title {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.shipping-input-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #444;
    font-size: 1rem;
    color: #fff;
    outline: none;
    background: #111;
}

.shipping-input-group input:focus {
    border-color: var(--primary-color);
}

.btn-calcular {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.btn-calcular:hover {
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.shipping-results {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ddd;
}

.shipping-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-alterar-cep {
    background: none;
    border: none;
    color: #fff;
    text-decoration: underline;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.shipping-success-banner {
    border: 1px solid #ffcc00;
    color: #ffcc00;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #fff;
}

.mt-3 {
    margin-top: 20px;
}

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

/* ===================== CARDS DE ENTREGA (redesign premium) ===================== */
.shipping-card {
    --ship-color: #c9a25a; /* cor de destaque por transportadora (sobrescrita inline) */
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease, background 0.35s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    animation: shipping-card-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    -webkit-tap-highlight-color: transparent;
}

/* Barra de acento dourada à esquerda (cresce ao selecionar) */
.shipping-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--ship-color), color-mix(in srgb, var(--ship-color) 55%, #000));
    transform: scaleY(0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 3px 3px 0;
}

/* Brilho que varre o card ao passar o mouse (na cor da transportadora) */
.shipping-card::after {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, color-mix(in srgb, var(--ship-color) 12%, transparent), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.shipping-card:hover {
    border-color: color-mix(in srgb, var(--ship-color) 45%, transparent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 24px color-mix(in srgb, var(--ship-color) 12%, transparent);
    transform: translateY(-3px);
}
.shipping-card:hover::after { left: 125%; }

.shipping-card.active {
    border-color: color-mix(in srgb, var(--ship-color) 70%, transparent);
    background: linear-gradient(135deg, color-mix(in srgb, var(--ship-color) 12%, transparent) 0%, color-mix(in srgb, var(--ship-color) 3%, transparent) 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 32px color-mix(in srgb, var(--ship-color) 20%, transparent);
    transform: translateY(-3px);
}
.shipping-card.active::before { transform: scaleY(1); }

@keyframes shipping-card-in {
    from { opacity: 0; transform: translateY(12px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* Entrada escalonada (cascata) */
.shipping-card:nth-child(1) { animation-delay: 0.03s; }
.shipping-card:nth-child(2) { animation-delay: 0.08s; }
.shipping-card:nth-child(3) { animation-delay: 0.13s; }
.shipping-card:nth-child(4) { animation-delay: 0.18s; }
.shipping-card:nth-child(5) { animation-delay: 0.23s; }
.shipping-card:nth-child(6) { animation-delay: 0.28s; }
.shipping-card:nth-child(7) { animation-delay: 0.33s; }
.shipping-card:nth-child(8) { animation-delay: 0.38s; }

/* Layout flexível dentro dos cards */
.shipping-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.shipping-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* Crachá de ícone (quadrado arredondado com gradiente) */
.shipping-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--ship-color) 20%, transparent), color-mix(in srgb, var(--ship-color) 5%, transparent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ship-color);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid color-mix(in srgb, var(--ship-color) 28%, transparent);
    flex-shrink: 0;
}

.shipping-card:hover .shipping-icon-badge {
    transform: scale(1.08) rotate(-5deg);
    border-color: color-mix(in srgb, var(--ship-color) 45%, transparent);
    box-shadow: 0 0 16px color-mix(in srgb, var(--ship-color) 22%, transparent);
}

.shipping-card.active .shipping-icon-badge {
    background: linear-gradient(135deg, var(--ship-color), color-mix(in srgb, var(--ship-color) 65%, #000));
    color: #1a1208;
    border-color: color-mix(in srgb, var(--ship-color) 55%, transparent);
    box-shadow: 0 0 22px color-mix(in srgb, var(--ship-color) 45%, transparent);
    transform: scale(1.05);
    animation: shipping-icon-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes shipping-icon-pop {
    0% { transform: scale(0.9); }
    55% { transform: scale(1.16); }
    100% { transform: scale(1.05); }
}

/* Customização Premium do Botão Radio */
.shipping-card input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
    flex-shrink: 0;
}

.shipping-card input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--ship-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.shipping-card input[type="radio"]:checked {
    border-color: var(--ship-color);
    box-shadow: 0 0 12px color-mix(in srgb, var(--ship-color) 45%, transparent);
}

.shipping-card input[type="radio"]:checked::before {
    transform: scale(1);
}

/* Informações do método */
.shipping-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.shipping-method-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.shipping-method-time {
    color: #9a9a9a;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.shipping-method-time i { font-size: 0.75rem; opacity: 0.7; }

/* Etiqueta da transportadora (na cor do método) */
.shipping-carrier-tag {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--ship-color);
    background: color-mix(in srgb, var(--ship-color) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--ship-color) 30%, transparent);
    padding: 1px 7px;
    border-radius: 20px;
    line-height: 1.5;
}

/* Selos/tags personalizados (Mais barato / Mais rápido) */
.shipping-badge {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 20px;
    line-height: 1.4;
    white-space: nowrap;
}
.shipping-badge.cheap {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.35);
}
.shipping-badge.fast {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.35);
}

.pickup-details {
    list-style: disc;
    margin-left: 20px;
    margin-top: 4px;
    color: #aaa;
    font-size: 0.8rem;
}

.shipping-card-price {
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    white-space: nowrap;
    text-align: right;
    transition: transform 0.3s ease, color 0.3s ease;
}
.shipping-card.active .shipping-card-price {
    color: var(--ship-color);
    transform: scale(1.06);
}

/* Acessibilidade: respeitar quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .shipping-card { animation: none !important; }
    .shipping-card::after { display: none; }
    .shipping-card.active .shipping-icon-badge { animation: none !important; }
}

.shipping-footer-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #aaa;
}

.shipping-footer-note strong {
    color: #fff;
}

.dont-know-cep {
    font-size: 0.85rem;
    color: #ccc;
    text-decoration: underline;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #111;
    border-left: 1px solid #333;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.8);
}

.cart-sidebar.open {
    right: 0;
}

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

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.close-cart {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: #e60000;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 50px;
    font-style: italic;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #333;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

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

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.cart-item-info span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: var(--transition);
}

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

.cart-footer {
    padding: 20px;
    border-top: 1px solid #333;
    background: #151515;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--primary-color);
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-checkout:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Float Animation for Images */
@keyframes float-anim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-image img {
    animation: float-anim 6s ease-in-out infinite;
}

/* Intersection Observer Animations (JS classes) */
.fade-in-section {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.add-to-cart:hover i {
    animation: cart-bounce 0.4s ease;
}

@keyframes cart-bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) translateY(-2px);
    }

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

/* Responsive */
@media (max-width: 1024px) {
    .search-box {
        width: 30%;
    }

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

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .search-box {
        width: 100%;
    }

    .bottom-nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        z-index: 100;
        padding: 0;
        margin: 0;
        border-top: 1px solid #333;
    }

    .bottom-nav-links.active {
        display: flex;
    }

    .bottom-nav-links li {
        margin: 0;
        border-bottom: 1px solid #222;
        width: 100%;
    }

    .bottom-nav-links li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-only-link {
        display: block;
    }

    .categories {
        display: none;
    }

    .categories-btn {
        border: none;
        width: 100%;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-info {
        padding: 6px;
    }

    .product-title {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

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

    .product-category {
        font-size: 0.55rem;
        margin-bottom: 2px;
    }

    .product-badge {
        font-size: 0.5rem;
        padding: 2px 4px;
        top: 5px;
        left: 5px;
    }

    .add-to-cart {
        width: 28px;
        height: 28px;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .modal-main-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-info {
        padding: 15px;
    }

    .modal-similar-products {
        padding: 0 15px 15px 15px;
    }

    .similar-products-carousel .product-card {
        flex: 0 0 160px;
    }

    .modal-content::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
    }

    .modal-content {
        width: 98% !important;
        max-width: 480px !important;
        max-height: 90vh !important;
        overflow-x: hidden !important;
        margin: auto !important;
        -ms-overflow-style: none !important;
        /* IE and Edge */
        scrollbar-width: none !important;
        /* Firefox */
    }

    .modal-title {
        font-size: 1.4rem !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
        margin-bottom: 15px !important;
    }

    .modal-breadcrumbs {
        font-size: 0.75rem !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
        margin-bottom: 12px !important;
    }

    .modal-info {
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
    }

    .modal-info p {
        font-size: 0.9rem !important;
        word-wrap: break-word !important;
        margin-bottom: 15px !important;
    }

    .modal-price {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .modal-installments {
        margin-bottom: 10px !important;
    }

    .modal-details-link {
        margin-bottom: 25px !important;
    }

    .modal-size-section {
        margin-bottom: 25px !important;
    }

    .purchase-actions {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .purchase-actions .btn-comprar {
        width: 100% !important;
        flex: none !important;
    }

    .shipping-input-group {
        flex-wrap: wrap !important;
    }

    .shipping-input-group input {
        width: 100% !important;
        flex: none !important;
    }

    .shipping-input-group button {
        width: 100% !important;
    }

    .modal-image-container {
        padding: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    .modal-gallery-layout {
        flex-direction: column-reverse !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .modal-thumbnails {
        display: none !important;
        flex-direction: row !important;
        width: 100% !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        justify-content: center !important;
        padding-right: 0 !important;
        padding-bottom: 5px !important;
        gap: 8px !important;
    }

    .modal-thumbnail-item {
        width: 55px !important;
        height: 55px !important;
    }

    .modal-main-image-wrapper {
        width: 100% !important;
    }

    .modal-main-image-wrapper img {
        border-radius: 10px !important;
        width: 100% !important;
        height: auto !important;
        max-height: 55vh !important;
        margin-top: 25px !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6) !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .gallery-nav-btn {
        opacity: 0.85 !important;
        pointer-events: auto !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
    }

    .gallery-nav-btn.prev-btn {
        left: 8px !important;
    }

    .gallery-nav-btn.next-btn {
        right: 8px !important;
    }

    .shipping-card {
        padding: 12px 13px;
        border-radius: 12px;
    }

    .shipping-card-content { gap: 10px; }

    .shipping-card-left {
        gap: 11px;
    }

    .shipping-icon-badge {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        font-size: 1.05rem;
    }

    .shipping-card input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    .shipping-card input[type="radio"]::before {
        width: 8px;
        height: 8px;
    }

    .shipping-method-name {
        font-size: 0.88rem;
    }

    .shipping-method-time { font-size: 0.76rem; }

    .shipping-card-price {
        font-size: 1rem;
        white-space: nowrap;
    }
}

/* Telas muito estreitas: oculta o radio (o card inteiro já indica seleção) e compacta */
@media (max-width: 400px) {
    .shipping-card { padding: 11px 12px; }
    .shipping-card-left { gap: 9px; }
    .shipping-card input[type="radio"] { display: none; }
    .shipping-icon-badge { width: 38px; height: 38px; font-size: 1rem; }
    .shipping-method-name { font-size: 0.84rem; }
    .shipping-method-time { font-size: 0.72rem; }
    .shipping-card-price { font-size: 0.95rem; }
    .shipping-badge { font-size: 0.55rem; padding: 2px 6px; }
}

/* Checkout Modal Classes */
.checkout-modal-content::-webkit-scrollbar {
    width: 8px;
}

.checkout-modal-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.form-group-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.checkout-step input {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    margin-top: 5px;
    outline: none;
    transition: var(--transition);
}

.checkout-step input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}

.checkout-step label {
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 600;
}

.btn-confirm-purchase:hover {
    background: #1da851 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.payment-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-method-option {
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    background: rgba(25, 25, 25, 0.6);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.payment-method-option:hover {
    border-color: #555;
    background: rgba(40, 40, 40, 0.6);
}

.payment-method-option.active {
    border: 2px solid var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.checkout-step .payment-method-option input[type="radio"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method-content i {
    font-size: 1.8rem;
}

.payment-method-content span {
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem !important;
    }

    .checkout-body {
        grid-template-columns: 1fr !important;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .payment-selector-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 160px !important;
    }
}

/* Sidebar and Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sem sidebar (catálogo vazio): vira coluna única para o "em breve" centralizar */
.shop-layout.shop-layout--no-sidebar {
    grid-template-columns: 1fr;
}

.filters-sidebar {
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    position: sticky;
    top: 140px;
    /* Evita ficar por baixo da navbar dupla */
    max-height: calc(100vh - 160px);
    /* Garante que caiba na tela */
    overflow-y: auto;
    /* Permite rolar os filtros caso a tela seja pequena */
}

/* Scrollbar customizada para a sidebar */
.filters-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 10px;
}

.sidebar-categories a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    display: block;
}

.sidebar-categories a:hover,
.sidebar-categories a.active {
    color: #fff;
    padding-left: 5px;
}

.filter-subgroup {
    margin-bottom: 20px;
}

.filter-subgroup h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #fff;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.filter-label:hover {
    color: #fff;
}

.filter-label input {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.size-grid .filter-label {
    flex-direction: column;
    gap: 0;
}

.size-grid input {
    display: none;
}

.size-grid span.size-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    transition: var(--transition);
}

.size-grid input:checked+span.size-box {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    font-weight: bold;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-field {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 5px 10px;
    flex: 1;
}

.price-field span {
    color: #888;
    font-size: 0.8rem;
    margin-right: 5px;
}

.price-field input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 0.85rem;
}

.btn-apply-price {
    background: var(--primary-color);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #222;
}

.active-filters-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    background: #222;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-tag i {
    cursor: pointer;
    color: #888;
}

.filter-tag i:hover {
    color: #e63946;
}

.clear-filters-btn {
    background: transparent;
    border: none;
    color: #e63946;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
}

/* Mobile Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
    backdrop-filter: blur(5px);
}

.drawer-overlay.active {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #0f0f0f;
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    border-right: 1px solid #222;
}

.mobile-drawer.active {
    transform: translateX(320px);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #222;
    background: #0a0a0a;
}

.drawer-header h2 {
    font-size: 1.2rem;
    margin: 0;
}

.close-drawer {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.drawer-section {
    margin-bottom: 25px;
}

.drawer-links {
    list-style: none;
}

.drawer-links li {
    margin-bottom: 5px;
}

.drawer-nav-link {
    display: block;
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    transition: var(--transition);
    border-left: 0 solid var(--primary-color);
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    color: var(--primary-color);
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        display: none;
        /* Hidden on mobile, moved to drawer */
    }
}

@media (min-width: 993px) {
    .desktop-only {
        display: flex !important;
    }

    #mobileMenuBtn {
        display: none;
    }
}

/* Global Button Animations & Shimmer */
button,
.btn,
.btn-comprar,
.btn-calcular {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.btn,
.btn-comprar,
.btn-full,
.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn::before,
.btn-comprar::before,
.btn-full::before,
.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

button:hover:not(.modal-close):not(.remove-item):not(.quantity-selector button):not(.categories-btn):not(.gallery-nav-btn),
.btn:hover,
.btn-comprar:hover,
.btn-calcular:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.gallery-nav-btn:hover {
    transform: translateY(-50%) !important;
}

button:active:not(.modal-close):not(.remove-item):not(.quantity-selector button):not(.categories-btn):not(.gallery-nav-btn),
.btn:active,
.btn-comprar:active,
.btn-calcular:active {
    transform: scale(0.93) !important;
}


/* Glass & Floating Labels Form */
.floating-label-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-label-group input,
.floating-label-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 22px 15px 10px 15px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: var(--transition);
    text-align: center;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.floating-label-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 30px;
}

.floating-label-group label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 18px;
    color: #aaa;
    font-size: 0.95rem;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 500;
    white-space: nowrap;
    /* Evita quebra de linha em telas estreitas */
}

.floating-label-group input:focus,
.floating-label-group textarea:focus,
.floating-label-group input:not(:placeholder-shown),
.floating-label-group textarea:not(:placeholder-shown) {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.03);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.floating-label-group input:focus~label,
.floating-label-group textarea:focus~label,
.floating-label-group input:not(:placeholder-shown)~label,
.floating-label-group textarea:not(:placeholder-shown)~label {
    top: 5px;
    font-size: 0.65rem;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Contact Redesign */
.glass-container {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-card {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.btn-animated-send {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-animated-send:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* Premium Payment Section */
.premium-payment-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 15, 0.85); /* Preto fosco */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px 40px;
    margin: 40px 5% 30px 5%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.payment-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
}

.premium-payment-cards {
    display: flex;
    gap: 12px;
    align-items: center;
}

.premium-card {
    width: 80px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.premium-card:hover::after {
    opacity: 1;
}

/* Specific Card Styles */
.premium-card.visa { background: #1a1f71; color: #ffffff; }
.premium-card.visa i { font-size: 3rem; }

.premium-card.mastercard { background: #eb001b; color: #ffffff; flex-direction: column; gap: 0; }
.premium-card.mastercard i { font-size: 2.2rem; margin-bottom: -5px; }
.premium-card.mastercard span { font-size: 0.55rem; font-weight: 700; }

.premium-card.amex { background: #2e77bc; color: #ffffff; }
.premium-card.amex i { font-size: 2.8rem; }

.premium-card.bradesco {
    background: #ffffff; color: #cc092f; font-weight: 900;
    font-size: 0.95rem; font-family: 'Arial', sans-serif; letter-spacing: -0.5px;
}

.premium-card.elo {
    background: #000000; font-weight: 800; font-size: 1.5rem; letter-spacing: 1px;
}
.premium-card.elo span:nth-child(1) { color: #00a4e0; }
.premium-card.elo span:nth-child(2) { color: #fca311; }
.premium-card.elo span:nth-child(3) { color: #e63946; }

.premium-card.pix {
    background: #222222; color: #ffffff; font-weight: 800; font-size: 1.2rem; gap: 6px; text-transform: lowercase;
}
.premium-card.pix i { color: #32bcad; font-size: 1.4rem; }

@media (max-width: 992px) {
    .premium-payment-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    .premium-payment-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Dashboard Esgotado Styles */
.product-card.esgotado .product-image { filter: grayscale(70%) opacity(0.6); }
.product-card.esgotado .add-to-cart { opacity: 0.4; pointer-events: none; cursor: not-allowed; }
.product-card.esgotado .product-title::after { content: " — Esgotado"; color: #e63946; font-size: 0.8em; }


/* ============================================================ */
/* === BUNDLED PREMIUM UPGRADES === */
/* ============================================================ */

/* ============================================================
   ARTIGO DE GRIFE — PREMIUM UPGRADE CSS
   Paste this at the END of your style.css file
   ============================================================ */

/* ── FONTS ──────────────────────────────────────────────── */
/* Cormorant Garamond + DM Sans fonts loaded via <link> in index.html for faster rendering */

/* Override root fonts to use premium pairing */
:root {
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFF8DC 45%, #D4A017 100%);
  --gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.4) 50%, transparent 100%);
  --shadow-gold: 0 0 40px rgba(255,215,0,0.15), 0 20px 60px rgba(0,0,0,0.6);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
}

body { font-family: var(--font-body); }

/* ── PREMIUM LOADER ────────────────────────────────────── */
#premium-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77,0,0.175,1), visibility 0.8s;
}

#premium-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #1a1200 0%, #000 70%);
}

.loader-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}

.loader-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-ring-outer {
  animation: spin-slow 3s linear infinite;
  transform-origin: 60px 60px;
}

.loader-ring-inner {
  animation: spin-slow 2s linear infinite reverse;
  transform-origin: 60px 60px;
}

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

.loader-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  animation: loader-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(255,215,0,0.6));
}

@keyframes loader-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loader-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  opacity: 0;
  animation: loader-fade-up 0.8s 0.4s forwards;
}

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

.loader-progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,215,0,0.15);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  animation: loader-fade-up 0.5s 0.7s forwards;
}

.loader-progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 1px;
  animation: loader-progress 2.2s cubic-bezier(0.25,0.46,0.45,0.94) 0.9s forwards;
  width: 0;
}

@keyframes loader-progress {
  0%   { width: 0; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

.loader-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,215,0,0.4);
  margin-top: 20px;
  opacity: 0;
  animation: loader-fade-up 0.5s 1s forwards;
}

/* Curtain reveal */
.loader-curtain {
  position: absolute;
  inset: 0;
  background: #000;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: curtain-close 0.6s 2.8s cubic-bezier(0.77,0,0.175,1) forwards;
}

@keyframes curtain-close {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,215,0,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear, width 0.3s, height 0.3s, opacity 0.3s;
}

body:hover .custom-cursor { opacity: 1; }

/* ── HEADER UPGRADES ───────────────────────────────────── */
.header {
  background: rgba(0,0,0,0.6) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255,215,0,0.08) !important;
  transition: background 0.4s ease, box-shadow 0.4s ease !important;
}

.header.scrolled {
  background: rgba(5,5,5,0.92) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6) !important;
  border-bottom-color: rgba(255,215,0,0.12) !important;
}

/* Animated logo */
.logo-container .ag-logo {
  transition: filter 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
  filter: drop-shadow(0 0 0 transparent);
}
.logo-container:hover .ag-logo {
  transform: scale(1.08) !important;
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.4)) !important;
}

/* Nav link active indicator */
.bottom-nav-links li a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.78rem !important;
  letter-spacing: 1.5px !important;
}

/* Nav social link luxury hover matching footer style */
.nav-social-link {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-social-link:hover {
  background: var(--gold-gradient) !important;
  border-color: transparent !important;
  color: #000 !important;
  transform: translateY(-5px) rotate(8deg) !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25), 0 0 0 4px rgba(255, 215, 0, 0.05) !important;
}

/* Glow search box */
.search-box {
  border-radius: 6px !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}
.search-box:focus-within {
  border-color: rgba(255,215,0,0.5) !important;
  box-shadow: 0 0 0 3px rgba(255,215,0,0.08), 0 0 20px rgba(255,215,0,0.12) !important;
}

/* ── HERO SECTION UPGRADES ─────────────────────────────── */
.hero-logo-container img {
  animation: hero-float 8s ease-in-out infinite !important;
  filter: drop-shadow(0 0 40px rgba(255,215,0,0.3)) !important;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}

.scroll-down-indicator {
  animation: scroll-bounce 2s ease-in-out infinite !important;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ── SECTION TITLE UPGRADES ────────────────────────────── */
.section-title {
  font-family: var(--font-display) !important;
  font-size: 3.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

/* ── PRODUCT CARD UPGRADES ─────────────────────────────── */
.product-card {
  background: linear-gradient(145deg, #141414 0%, #0d0d0d 100%) !important;
  border: 1px solid rgba(255,215,0,0.1) !important;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), 
              box-shadow 0.4s ease, 
              border-color 0.3s ease !important;
  overflow: hidden;
  position: relative;
}

/* Gold shimmer on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.05), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

.product-card:hover::before {
  left: 160%;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(255,215,0,0.4) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(255,215,0,0.1) !important;
}

.product-image {
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94) !important;
}

.product-card:hover .product-image {
  transform: scale(1.1) !important;
}

/* Premium product title font */
.product-title {
  font-family: var(--font-body);
  font-size: 0.95rem !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.product-category {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  font-weight: 600;
}

/* Badge improvements */
.product-badge {
  font-family: var(--font-body);
  font-size: 0.65rem !important;
  letter-spacing: 0.1em !important;
  padding: 4px 10px !important;
  border-radius: 3px !important;
  backdrop-filter: blur(8px);
}

.badge-lancamento {
  background: linear-gradient(135deg, #0055ff, #0033cc) !important;
  box-shadow: 0 2px 12px rgba(0,85,255,0.4) !important;
}

.badge-oferta {
  background: linear-gradient(135deg, #e60000, #cc0000) !important;
  box-shadow: 0 2px 12px rgba(230,0,0,0.4) !important;
}

.badge-mais-vendido {
  background: linear-gradient(135deg, #FFD700, #D4A017) !important;
  color: #000 !important;
  box-shadow: 0 2px 12px rgba(255,215,0,0.4) !important;
}

/* Add to cart button micro-animation */
.add-to-cart {
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,0.06);
}

.add-to-cart:hover {
  transform: rotate(12deg) scale(1.2) !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 16px rgba(255,215,0,0.4) !important;
}

.add-to-cart:active {
  transform: scale(0.9) !important;
}

/* ── FILTER SIDEBAR UPGRADES ───────────────────────────── */
.filters-sidebar {
  background: linear-gradient(160deg, #111 0%, #0d0d0d 100%) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 12px !important;
}

.sidebar-categories a.active {
  color: var(--primary-color) !important;
  padding-left: 10px !important;
  border-left: 2px solid var(--primary-color);
}

.size-grid input:checked + span.size-box {
  background: linear-gradient(135deg, #FFD700, #D4A017) !important;
  box-shadow: 0 2px 12px rgba(255,215,0,0.3) !important;
}

/* ── CONTACT SECTION ───────────────────────────────────── */
.contact-channel-item:hover {
  background: rgba(255, 215, 0, 0.04) !important;
  border-color: rgba(255, 215, 0, 0.25) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-social-link:hover {
  background: rgba(255, 215, 0, 0.1) !important;
  border-color: rgba(255, 215, 0, 0.4) !important;
  color: var(--primary-color) !important;
  transform: scale(1.1);
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08) !important;
}

.form-group-custom input:focus ~ span,
.form-group-custom textarea:focus ~ span {
  color: var(--primary-color) !important;
}

#btnSubmitContact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4) !important;
  background: linear-gradient(135deg, #FFE033, #E6B819) !important;
}

#btnSubmitContact:active {
  transform: translateY(-1px);
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 992px) {
  .contact-grid-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 480px) {
  .form-row-mobile {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .contact-sidebar-card, .contact-form-card {
    padding: 25px !important;
  }
}

/* ── MODAL UPGRADES ────────────────────────────────────── */
.modal-content {
  background: linear-gradient(160deg, #141414 0%, #0f0f0f 100%) !important;
  border: 1px solid rgba(255,215,0,0.12) !important;
  box-shadow: 0 30px 100px rgba(0,0,0,0.8), 0 0 40px rgba(255,215,0,0.05) !important;
}

.modal-overlay.active .modal-content {
  animation: modal-enter 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards !important;
}

@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.btn-comprar {
  background: linear-gradient(135deg, #FFD700 0%, #D4A017 100%) !important;
  border-radius: 6px !important;
  letter-spacing: 0.1em !important;
  font-size: 0.9rem !important;
  transition: filter 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.btn-comprar:hover {
  filter: brightness(1.1) !important;
  box-shadow: 0 8px 24px rgba(255,215,0,0.35) !important;
  transform: translateY(-2px) !important;
}

/* ── CART SIDEBAR UPGRADES ─────────────────────────────── */
.cart-sidebar {
  background: linear-gradient(160deg, #131313 0%, #0e0e0e 100%) !important;
  border-left: 1px solid rgba(255,215,0,0.08) !important;
}

.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}

.cart-item {
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 10px !important;
  transition: border-color 0.3s, transform 0.3s !important;
}
.cart-item:hover {
  border-color: rgba(255,215,0,0.2) !important;
  transform: translateX(-3px);
}

/* ── FOOTER UPGRADES ───────────────────────────────────── */
.site-footer {
  background: radial-gradient(circle at top, #0f0f0f 0%, #020202 100%) !important;
  border-top: 1px solid rgba(255, 215, 0, 0.1) !important;
  position: relative;
  overflow: hidden;
  padding-top: 5rem !important;
  padding-bottom: 2rem !important;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.35) 50%, transparent 100%) !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  transform: none !important;
  width: 100% !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.8fr 1fr 1.8fr !important;
  gap: 4rem !important;
  padding: 0 8% 4rem !important;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .footer-logo {
  height: 55px !important;
  width: auto !important;
  margin-bottom: 1.5rem !important;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.25)) !important;
  transition: transform 0.4s ease !important;
}

.footer-brand .footer-logo:hover {
  transform: scale(1.05) !important;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  margin-bottom: 2rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
}

.footer-brand p i {
  color: #FFD700 !important;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Luxury Social Icons */
.social-icons {
  display: flex !important;
  gap: 1.2rem !important;
}

.social-icons a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 1.1rem !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05) !important;
  transform: none !important;
}

.social-icons a:hover {
  background: var(--gold-gradient) !important;
  border-color: transparent !important;
  color: #000 !important;
  transform: translateY(-5px) rotate(8deg) !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25), 0 0 0 4px rgba(255, 215, 0, 0.05) !important;
}

/* Footer Links & Navigation */
.footer-links-col h3,
.footer-newsletter h3 {
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  margin-bottom: 2rem !important;
  text-transform: uppercase !important;
  position: relative !important;
  padding-bottom: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.footer-links-col h3::after,
.footer-newsletter h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.footer-links-col ul li {
  margin-bottom: 1rem !important;
}

.footer-links-col ul a {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  align-items: center !important;
}

.footer-links-col ul a i {
  color: rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}

.footer-links-col ul a:hover {
  color: #fff !important;
  transform: translateX(8px) !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2) !important;
}

.footer-links-col ul a:hover i {
  color: #FFD700 !important;
  transform: scale(1.2) !important;
}

/* Premium Newsletter Box */
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
  font-weight: 300 !important;
}

.newsletter-form {
  display: flex !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 215, 0, 0.12) !important;
  border-radius: 12px !important;
  padding: 4px !important;
  transition: all 0.3s ease !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.newsletter-form:focus-within {
  border-color: rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08), inset 0 1px 2px rgba(0, 0, 0, 0.5) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.newsletter-form input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  padding: 14px 18px !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  outline: none !important;
  font-family: var(--font-body) !important;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.newsletter-form button {
  background: var(--gold-gradient) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 8px !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  padding: 0 !important;
}

.newsletter-form button:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

.newsletter-form button i {
  font-size: 1.1rem !important;
  transition: transform 0.3s ease !important;
}

.newsletter-form button:hover i {
  transform: translateX(3px) scale(1.05) !important;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: #020202 !important;
  padding: 1.8rem 8% !important;
  border-top: 1px solid rgba(255, 255, 255, 0.02) !important;
}

.footer-bottom-bar p {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.85rem !important;
  font-weight: 350 !important;
  letter-spacing: 0.01em !important;
}

.secure-badge span {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
}

.secure-badge span i {
  color: #22c55e !important;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.4) !important;
}

/* Responsive Footer overrides */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    padding: 0 4% 3rem !important;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 0 5% 2.5rem !important;
  }
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  .footer-links-col {
    text-align: center !important;
  }
  .footer-links-col h3 {
    justify-content: center !important;
  }
  .footer-links-col h3::after,
  .footer-newsletter h3::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .footer-links-col ul a {
    justify-content: center !important;
  }
  .footer-links-col ul a:hover {
    transform: translateY(-2px) !important;
  }
  .footer-newsletter {
    text-align: center !important;
  }
  .footer-newsletter h3 {
    justify-content: center !important;
  }
}

/* ── FLOATING WHATSAPP UPGRADE ─────────────────────────── */
.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #128C7E) !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 40px rgba(37,211,102,0.1) !important;
  animation: whatsapp-pulse 3s ease-in-out infinite !important;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── SECTION DIVIDER UPGRADE ───────────────────────────── */
.section-divider {
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), rgba(255,215,0,0.8), rgba(255,215,0,0.5), transparent) !important;
  box-shadow: 0 0 20px rgba(255,215,0,0.2), 0 0 60px rgba(255,215,0,0.05) !important;
  height: 1px !important;
  margin: 3rem auto 4rem !important;
}

/* ── PARTICLES LAYER FIX ───────────────────────────────── */
#particles-js { opacity: 0.6; }

/* ── SCROLL REVEAL BASE ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }

/* ── MARQUEE TRUST BAR (new component) ─────────────────── */
.trust-bar {
  overflow: hidden;
  padding: 14px 0;
  background: rgba(255,215,0,0.03);
  border-top: 1px solid rgba(255,215,0,0.06);
  border-bottom: 1px solid rgba(255,215,0,0.06);
  position: relative;
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(90deg, var(--bg-color), transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(-90deg, var(--bg-color), transparent); }

.trust-bar-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.trust-bar-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,215,0,0.7);
}
.trust-item i { font-size: 1rem; color: var(--primary-color); }

/* ── TESTIMONIALS SECTION (new) ─────────────────────────── */
.testimonials-section {
  padding: 6rem 5%;
  position: relative;
}

.testimonials-grid {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 25px; /* Space for scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #222;
}

.testimonials-grid::-webkit-scrollbar {
  height: 6px;
}
.testimonials-grid::-webkit-scrollbar-track {
  background: #111;
  border-radius: 8px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 8px;
}

.testimonials-grid > .testimonial-card {
  min-width: 320px;
  max-width: 380px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.testimonial-card {
  background: linear-gradient(145deg, #111, #0d0d0d);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(255,215,0,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(255,215,0,0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars i { color: var(--primary-color); font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.05));
  border: 1px solid rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-display);
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem !important; }
}
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SCROLL PROGRESS BAR ───────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #D4A017);
  width: 0%;
  z-index: 99999;
  box-shadow: 0 0 8px rgba(255,215,0,0.6);
  transition: width 0.1s linear;
}

/* ── BACK TO TOP BUTTON ────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
  transform: translateY(-4px);
}

/* ── PRICE TAG ANIMATION ───────────────────────────────── */
.product-price {
  background: linear-gradient(135deg, #FFD700, #D4A017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-body);
  font-weight: 800;
}

/* ── SMOOTH PAGE TRANSITIONS ───────────────────────────── */
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body { animation: page-in 0.5s ease forwards; }

/* ── MOBILE IMPROVEMENTS ───────────────────────────────── */
@media (max-width: 768px) {
  .header-top { padding: 12px 4% !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  
  .product-card:hover {
    transform: translateY(-4px) scale(1.01) !important;
  }

  #back-to-top { bottom: 90px; right: 16px; }
  .floating-whatsapp { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.6rem; }

  .trust-bar-track { animation-duration: 18s; }
}

/* ── LENIS SMOOTH SCROLL SUPPORT ───────────────────────── */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ── PREMIUM DRAWER UPGRADE ────────────────────────────── */
.mobile-drawer {
  background: linear-gradient(160deg, #0d0d0d 0%, #080808 100%) !important;
  border-right: 1px solid rgba(255,215,0,0.06) !important;
}
.drawer-header { background: #070707 !important; border-bottom: 1px solid rgba(255,215,0,0.06) !important; }

/* ── TESTIMONIAL ENTRY ANIMATION ──────────────────────── */
@keyframes slideInUpPremium {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.new-review-card-anim {
  animation: slideInUpPremium 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* ── INTERACTIVE STAR GLOW ANIMATION ──────────────────── */
@keyframes starPulseGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0)); }
  50% { transform: scale(1.3); filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.2)); }
}

.star-pulse-glow {
  animation: starPulseGlow 0.4s ease-out;
}

/* ── MODAL SIZE/COLOR BTNS ── */
.size-btn, .color-btn {
  background: #111;
  border: 1px solid #333;
  color: #888;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.size-btn {
  width: 48px;
  height: 48px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
}
.size-btn:hover, .color-btn:hover {
  border-color: rgba(255,215,0,0.4);
  background: rgba(255,215,0,0.05);
  color: #ccc;
  transform: translateY(-2px);
}
.size-btn.active, .color-btn.active {
  border-color: #FFD700;
  background: rgba(255,215,0,0.1);
  color: #FFD700;
  box-shadow: 0 4px 12px rgba(255,215,0,0.15);
  transform: translateY(-2px);
}

/* Sidebar Filters Visual Upgrade */
.filter-list li {
  margin-bottom: 12px !important;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.filter-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateX(4px);
}

.filter-label {
  gap: 12px !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  width: 100%;
}

.filter-label input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  cursor: pointer;
  border-radius: 4px;
  accent-color: #FFD700;
}

.modal-color-section {
  margin-bottom: 25px !important;
}

/* ──────────────────────────────────────────
   MOBILE FIXES
   ────────────────────────────────────────── */
@media (max-width: 992px) {
  /* Botão "Avaliar Loja" — grade da seção de avaliações vira coluna única */
  .summary-grid-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Remove separadores verticais que ficam soltos em mobile */
  .summary-left-col {
    border-right: none !important;
    padding-right: 0 !important;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .summary-bars-col {
    border-right: none !important;
    padding-right: 0 !important;
  }

  /* Botão "Avaliar Loja" centralizado e visível */
  .summary-right-col {
    display: block !important;
    text-align: center !important;
    padding-left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  #btnOpenReviewModal {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Painel dashboard de avaliações */
  .reviews-summary-dashboard {
    padding: 20px 16px !important;
  }
}

/* --- MOBILE HOTFIXES (5 BUGS) --- */
@media (max-width: 1024px) {
  /* Bug 1: Remove stuck custom cursor on mobile */
  .custom-cursor, .custom-cursor-ring {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {

  /* Bug 3: Fix modal items overlapping image */
  .modal-main-content {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    overflow-y: auto !important;
  }
  .modal-image-container {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    background: #111 !important;
    border-radius: 8px 8px 0 0 !important;
  }
  .modal-gallery-layout {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
  }
  .modal-info {
    position: relative !important;
    background: linear-gradient(160deg, #141414 0%, #0f0f0f 100%) !important;
    padding: 20px !important;
    z-index: 10 !important;
    border-radius: 0 0 8px 8px !important;
  }
  
  /* Bug 4: Fix Contact Section Layout */
  .contact-section {
    padding: 3rem 5% !important;
  }
  .contact-grid-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .contact-sidebar-card, .contact-form-card {
    width: 100% !important;
  }

  /* Bug 5: Fix Footer Layout */
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    text-align: center !important;
    padding: 0 5% 3rem !important;
  }
  .footer-brand {
    align-items: center !important;
  }
  .social-icons {
    justify-content: center !important;
    margin-bottom: 20px !important;
  }
  .footer-links-col h3::after, .footer-newsletter h3::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* ── INTERACTIVE ANIMATED CREDIT CARD ───────────────────── */
.card-container-wrapper {
  perspective: 1000px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.animated-card-tilt {
  width: 100%;
  max-width: 320px;
  height: 200px;
  perspective: 1000px;
  transition: transform 0.1s ease;
}

.animated-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  user-select: none;
}

.animated-card.flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 15px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Clipa o brilho/sheen para dentro do cartão (evita o painel translúcido vazando para fora) */
  overflow: hidden;
}

.card-front {
  /* Preto profundo com brilho dourado sutil nos cantos — visual "black card" premium */
  background:
    radial-gradient(130% 90% at 12% 0%, rgba(255, 215, 0, 0.11) 0%, transparent 48%),
    radial-gradient(110% 110% at 100% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 42%),
    linear-gradient(135deg, #1d1d21 0%, #0a0a0c 55%, #101014 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #fff;
}

.card-back {
  background:
    radial-gradient(110% 110% at 0% 100%, rgba(255, 215, 0, 0.07) 0%, transparent 42%),
    linear-gradient(135deg, #0a0a0c 0%, #1d1d21 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #fff;
  transform: rotateY(180deg);
  padding: 18px 0;
}

/* Selo holográfico no verso (como nos cartões reais) */
.card-back::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #ffd700, #7dd3fc, #f0abfc, #86efac, #ffd700);
  opacity: 0.5;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

/* Chip EMV realista: metal escovado + trilhas de contato + reflexo passante */
.card-chip {
  width: 46px;
  height: 33px;
  background: linear-gradient(135deg, #f6e27a 0%, #ffd700 30%, #b8860b 65%, #e8c84e 100%);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.card-chip::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(70, 45, 0, 0.5);
  border-radius: 4px;
  background:
    linear-gradient(rgba(70, 45, 0, 0.5), rgba(70, 45, 0, 0.5)) center / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(70, 45, 0, 0.5), rgba(70, 45, 0, 0.5)) center / 1px 100% no-repeat;
}

.card-chip::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -60%;
  width: 45%;
  height: 140%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: chipGlint 5.5s ease-in-out infinite;
}

@keyframes chipGlint {
  0%, 70%  { left: -60%; }
  85%, 100% { left: 130%; }
}

#cardNumDisplay {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.9), 0 0 14px rgba(255, 215, 0, 0.12);
  margin: 10px 0;
  color: #f8f8f2;
  text-align: center;
}

.card-front-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-label {
  font-size: 0.62rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

.card-value {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f4f4f5;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card brand styles */
#cardBrandLogo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-style: italic;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255,215,0,0.2);
}

/* Marca da loja "gravada" no cartão enquanto a bandeira não é detectada */
#cardBrandLogo:empty::before {
  content: 'ARTIGO DE GRIFE';
  font-size: 0.58rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  color: rgba(255, 215, 0, 0.7);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

/* Varredura de luz: já existe em .card-front::after (mais abaixo neste arquivo) */

/* Card Highlight Frames */
#cardNumDisplay, .card-value, #cardCscDisplay {
  border: 1.5px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  padding: 2px 4px;
}
#cardNumDisplay.active, .card-value.active, #cardCscDisplay.active {
  border-color: rgba(255, 215, 0, 0.65) !important;
  background: rgba(255, 215, 0, 0.08) !important;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.25) !important;
}

/* Card face gloss reflection effect */
.card-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
}

/* Ensure card text elements stay above the reflection layer */
#cardBrandLogo, #cardNumDisplay, .card-front-footer, .card-chip, .card-label, .card-value {
  position: relative;
  z-index: 2;
}

/* Card Brand Themes */
.animated-card.visa .card-front {
  background: linear-gradient(135deg, #0e2b75 0%, #051030 100%) !important;
  border-color: rgba(0, 164, 224, 0.4) !important;
  color: #fff !important;
}
.animated-card.visa .card-back {
  background: linear-gradient(135deg, #051030 0%, #0e2b75 100%) !important;
  border-color: rgba(0, 164, 224, 0.4) !important;
  color: #fff !important;
}

.animated-card.master .card-front {
  background: linear-gradient(135deg, #23252a 0%, #0f1013 100%) !important;
  border-color: rgba(255, 95, 0, 0.4) !important;
  color: #fff !important;
}
.animated-card.master .card-back {
  background: linear-gradient(135deg, #0f1013 0%, #23252a 100%) !important;
  border-color: rgba(255, 95, 0, 0.4) !important;
  color: #fff !important;
}

.animated-card.amex .card-front {
  background: linear-gradient(135deg, #1b3d39 0%, #091715 100%) !important;
  border-color: rgba(0, 164, 224, 0.3) !important;
  color: #fff !important;
}
.animated-card.amex .card-back {
  background: linear-gradient(135deg, #091715 0%, #1b3d39 100%) !important;
  border-color: rgba(0, 164, 224, 0.3) !important;
  color: #fff !important;
}

.animated-card.elo .card-front {
  background: linear-gradient(135deg, #300f54 0%, #120424 100%) !important;
  border-color: rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
}
.animated-card.elo .card-back {
  background: linear-gradient(135deg, #120424 0%, #300f54 100%) !important;
  border-color: rgba(255, 215, 0, 0.3) !important;
  color: #fff !important;
}

.animated-card.hipercard .card-front {
  background: linear-gradient(135deg, #7c0b1d 0%, #3d030c 100%) !important;
  border-color: rgba(227, 6, 19, 0.3) !important;
  color: #fff !important;
}
.animated-card.hipercard .card-back {
  background: linear-gradient(135deg, #3d030c 0%, #7c0b1d 100%) !important;
  border-color: rgba(227, 6, 19, 0.3) !important;
  color: #fff !important;
}

/* ── Tema NUBANK (roxinho) — sobrepõe o tema da bandeira ── */
.animated-card.bank-nubank .card-front {
  background: linear-gradient(135deg, #a020e0 0%, #820ad1 55%, #5b0a99 100%) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}
.animated-card.bank-nubank .card-back {
  background: linear-gradient(135deg, #5b0a99 0%, #820ad1 100%) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
}
/* Chip e contactless ficam bem sobre o roxo */
.animated-card.bank-nubank .card-chip {
  background: linear-gradient(135deg, #f6e27a 0%, #ffe9a8 40%, #c9a34a 100%) !important;
}
.animated-card.bank-nubank .card-label { color: rgba(255,255,255,0.75) !important; }
/* "nu" gravado como marca quando o logo da bandeira ainda não apareceu */
.animated-card.bank-nubank #cardBrandLogo:empty::before {
  content: "nu";
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── C6 BANK (carbono preto) ── */
.animated-card.bank-c6 .card-front {
  background: linear-gradient(135deg, #33343a 0%, #1a1b1f 50%, #050506 100%) !important;
  border-color: rgba(255,255,255,0.22) !important; color: #fff !important;
}
.animated-card.bank-c6 .card-back {
  background: linear-gradient(135deg, #050506 0%, #26272b 100%) !important;
  border-color: rgba(255,255,255,0.22) !important; color: #fff !important;
}

/* ── BANCO INTER (laranja) ── */
.animated-card.bank-inter .card-front {
  background: linear-gradient(135deg, #ff9a3c 0%, #ff7a00 55%, #d95f00 100%) !important;
  border-color: rgba(255,255,255,0.28) !important; color: #fff !important;
}
.animated-card.bank-inter .card-back {
  background: linear-gradient(135deg, #d95f00 0%, #ff7a00 100%) !important;
  border-color: rgba(255,255,255,0.28) !important; color: #fff !important;
}

/* ── ITAÚ (laranja + azul) ── */
.animated-card.bank-itau .card-front {
  background: linear-gradient(135deg, #f57b20 0%, #ec7000 45%, #123a75 100%) !important;
  border-color: rgba(255,255,255,0.25) !important; color: #fff !important;
}
.animated-card.bank-itau .card-back {
  background: linear-gradient(135deg, #123a75 0%, #ec7000 100%) !important;
  border-color: rgba(255,255,255,0.25) !important; color: #fff !important;
}

/* ── BRADESCO (vermelho) ── */
.animated-card.bank-bradesco .card-front {
  background: linear-gradient(135deg, #e63950 0%, #cc092f 55%, #7d0620 100%) !important;
  border-color: rgba(255,255,255,0.25) !important; color: #fff !important;
}
.animated-card.bank-bradesco .card-back {
  background: linear-gradient(135deg, #7d0620 0%, #cc092f 100%) !important;
  border-color: rgba(255,255,255,0.25) !important; color: #fff !important;
}

/* ── SANTANDER (vermelho vivo) ── */
.animated-card.bank-santander .card-front {
  background: linear-gradient(135deg, #ff3b3b 0%, #ec0000 55%, #8c0000 100%) !important;
  border-color: rgba(255,255,255,0.25) !important; color: #fff !important;
}
.animated-card.bank-santander .card-back {
  background: linear-gradient(135deg, #8c0000 0%, #ec0000 100%) !important;
  border-color: rgba(255,255,255,0.25) !important; color: #fff !important;
}

/* ── BANCO DO BRASIL (azul + amarelo) ── */
.animated-card.bank-bb .card-front {
  background: linear-gradient(135deg, #1a5fd0 0%, #0038a8 55%, #001f5c 100%) !important;
  border-color: rgba(250,225,40,0.55) !important; color: #fff !important;
}
.animated-card.bank-bb .card-back {
  background: linear-gradient(135deg, #001f5c 0%, #0038a8 100%) !important;
  border-color: rgba(250,225,40,0.55) !important; color: #fff !important;
}

/* ── PICPAY (verde) ── */
.animated-card.bank-picpay .card-front {
  background: linear-gradient(135deg, #21e08a 0%, #11c76f 55%, #0a7a45 100%) !important;
  border-color: rgba(255,255,255,0.28) !important; color: #fff !important;
}
.animated-card.bank-picpay .card-back {
  background: linear-gradient(135deg, #0a7a45 0%, #11c76f 100%) !important;
  border-color: rgba(255,255,255,0.28) !important; color: #fff !important;
}

/* Legibilidade dos rótulos em qualquer tema de banco */
.animated-card[class*="bank-"] .card-label { color: rgba(255,255,255,0.78) !important; }
.animated-card[class*="bank-"] .card-value,
.animated-card[class*="bank-"] #cardNumDisplay { color: #fff !important; }




/* ============================================================ */
/* === BUNDLED VISUAL FIXES === */
/* ============================================================ */

/* ARTIGO DE GRIFE — VISUAL FIXES v3
   Adicione no <head> do index.html APÓS premium-upgrades.css:
   <link rel="stylesheet" href="visual-fixes.css">
*/

:root {
  --bg-deep: #0f0d0a; /* Rich luxury dark gold-bronze */
}

/* FUNDO BODY — profundo com atmosfera dourada sutil */
body {
  background-color: #0f0d0a !important;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,215,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(212,175,55,0.03) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 55%, rgba(184,134,11,0.03) 0%, transparent 55%) !important;
  background-attachment: fixed !important;
}

/* PARTICULAS — garantir visibilidade e posicionamento correto */
#particles-js { 
  opacity: 1 !important; 
  z-index: 0 !important; 
  background: transparent !important;
}

/* HERO — fundo transparente para revelar partículas e orbs atrás do WebGL */
.hero {
  background-color: transparent !important;
  background-image:
    radial-gradient(ellipse 110% 65% at 50% -5%, rgba(255,215,0,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 8% 55%, rgba(212,175,55,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 92% 65%, rgba(184,134,11,0.03) 0%, transparent 50%) !important;
}

/* GRADIENT CANVAS — fix crítico para partículas aparecerem */
.gradient-canvas { opacity: 0.95 !important; mix-blend-mode: screen !important; }

/* HEADER */
.header { background: rgba(11,10,9,0.6) !important; border-bottom: 1px solid rgba(255,215,0,0.09) !important; }
.header.scrolled { background: rgba(11,10,9,0.94) !important; }

/* PRODUCT CARDS */
.product-card {
  background: linear-gradient(150deg,#13110e 0%,#0d0c0a 100%) !important;
  border: 1px solid rgba(255,215,0,0.11) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
}
.product-card:hover {
  background: linear-gradient(150deg,#181512 0%,#110f0c 100%) !important;
  border-color: rgba(255,215,0,0.42) !important;
  box-shadow: 0 20px 55px rgba(0,0,0,0.8), 0 0 35px rgba(255,215,0,0.11), inset 0 1px 0 rgba(255,215,0,0.07) !important;
}

/* SIDEBAR, MODALS, CART */
.filters-sidebar { background: linear-gradient(160deg,#13110e 0%,#0d0c0a 100%) !important; border: 1px solid rgba(255,215,0,0.08) !important; }
.modal-content { background: linear-gradient(160deg,#13110e 0%,#0b0a09 100%) !important; border: 1px solid rgba(255,215,0,0.14) !important; }
.cart-sidebar { background: linear-gradient(160deg,#13110e 0%,#0b0a09 100%) !important; border-left: 1px solid rgba(255,215,0,0.09) !important; }
.cart-footer { background: #0b0a09 !important; }
.cart-item { background: #13110e !important; border: 1px solid rgba(255,215,0,0.07) !important; }

/* DIVIDERS — mais brilhantes */
.section-divider {
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.18) 25%, rgba(255,215,0,0.65) 50%, rgba(255,215,0,0.18) 75%, transparent) !important;
  box-shadow: 0 0 28px rgba(255,215,0,0.22), 0 0 70px rgba(255,215,0,0.06) !important;
  height: 1px !important;
}

/* FOOTER */
.site-footer { background: linear-gradient(180deg,#0b0a09 0%,#060504 100%) !important; border-top: 1px solid rgba(255,215,0,0.09) !important; }
.footer-bottom-bar { background: #060504 !important; }

/* CHECKOUT */
.checkout-header { background: #0d0c0a !important; }
.checkout-summary-section { background: #0d0c0a !important; border: 1px solid rgba(255,215,0,0.09) !important; }
.checkout-step input { background: #13110e !important; border: 1px solid rgba(255,215,0,0.08) !important; }
.checkout-step input:focus { border-color: rgba(255,215,0,0.5) !important; box-shadow: 0 0 0 3px rgba(255,215,0,0.07) !important; }
.payment-method-option { background: rgba(19,17,14,0.7) !important; border: 1px solid rgba(255,255,255,0.06) !important; }
.payment-method-option.active { border: 2px solid rgba(255,215,0,0.7) !important; background: rgba(255,215,0,0.04) !important; }

/* TRUST BAR */
.trust-bar { background: rgba(255,215,0,0.022) !important; border-top: 1px solid rgba(255,215,0,0.07) !important; border-bottom: 1px solid rgba(255,215,0,0.07) !important; }
.trust-bar::before { background: linear-gradient(90deg,#0b0a09,transparent) !important; }
.trust-bar::after { background: linear-gradient(-90deg,#0b0a09,transparent) !important; }

/* REVIEWS */
.testimonial-card { background: linear-gradient(145deg,#13110e 0%,#0b0a09 100%) !important; }
.reviews-summary-dashboard { background: linear-gradient(135deg,rgba(19,17,14,0.85) 0%,rgba(11,10,9,0.85) 100%) !important; border: 1px solid rgba(255,215,0,0.11) !important; }

/* DRAWER */
.mobile-drawer { background: linear-gradient(160deg,#0d0c0a 0%,#0b0a09 100%) !important; }
.drawer-header { background: #0b0a09 !important; }

/* PAYMENT + CONTACT */
.premium-payment-section { background: linear-gradient(135deg,rgba(19,17,14,0.92) 0%,rgba(11,10,9,0.92) 100%) !important; border: 1px solid rgba(255,215,0,0.09) !important; }
.contact-sidebar-card, .contact-form-card { background: rgba(19,17,14,0.88) !important; border: 1px solid rgba(255,215,0,0.09) !important; }

/* LOADER */
#premium-loader { background: #0b0a09 !important; }
.loader-bg { background: radial-gradient(ellipse at 50% 50%,#171410 0%,#0b0a09 70%) !important; }

/* HERO LOGO GLOW ANIMATION */
.hero-logo-container img {
  filter: drop-shadow(0 0 32px rgba(255,215,0,0.42)) drop-shadow(0 0 80px rgba(255,215,0,0.14)) !important;
  animation: hero-logo-glow-v2 5s ease-in-out infinite !important;
}
@keyframes hero-logo-glow-v2 {
  0%,100% { filter: drop-shadow(0 0 26px rgba(255,215,0,0.33)) drop-shadow(0 0 62px rgba(255,215,0,0.1)); transform: translateY(0px) rotate(-0.8deg); }
  50%      { filter: drop-shadow(0 0 58px rgba(255,215,0,0.62)) drop-shadow(0 0 135px rgba(255,215,0,0.22)); transform: translateY(-20px) rotate(0.8deg); }
}

/* SECTION TITLE */
.section-title { filter: drop-shadow(0 0 22px rgba(255,215,0,0.22)) !important; }

/* SCROLL PROGRESS */
#scroll-progress { background: linear-gradient(90deg,#b8860b,#FFD700,#FFF8DC,#FFD700,#b8860b) !important; box-shadow: 0 0 16px rgba(255,215,0,0.75) !important; }

/* BACK TO TOP */
#back-to-top { background: rgba(255,215,0,0.07) !important; border: 1px solid rgba(255,215,0,0.18) !important; backdrop-filter: blur(16px) !important; }
#back-to-top:hover { background: rgba(255,215,0,0.85) !important; color: #000 !important; }

/* WHATSAPP PULSE */
@keyframes wa-pulse-v2 {
  0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.28); }
  50%      { box-shadow: 0 6px 22px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
}
.floating-whatsapp { animation: wa-pulse-v2 3.5s ease-in-out infinite !important; }

/* ORBS ATMOSFERICOS — efeito visual de profundidade (estilo ouro líquido e âmbar) */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; filter: blur(90px); }
.hero-orb-1 { width:600px;height:600px;top:-180px;left:-200px; background:radial-gradient(circle,rgba(255,215,0,0.07) 0%,transparent 65%); animation:orb-drift 14s ease-in-out infinite; }
.hero-orb-2 { width:450px;height:450px;bottom:-80px;right:-120px; background:radial-gradient(circle,rgba(212,175,55,0.05) 0%,transparent 65%); animation:orb-drift 18s ease-in-out infinite reverse; }
.hero-orb-3 { width:320px;height:320px;top:35%;right:8%; background:radial-gradient(circle,rgba(255,165,0,0.05) 0%,transparent 65%); animation:orb-drift 10s ease-in-out infinite; animation-delay:-5s; }
@keyframes orb-drift {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(28px,-22px) scale(1.06); }
  66%      { transform:translate(-18px,16px) scale(0.96); }
}

/* SEARCH BOX */
.search-box { background: rgba(19,17,14,0.8) !important; border: 1px solid rgba(255,215,0,0.08) !important; }
.search-box:focus-within { border-color: rgba(255,215,0,0.45) !important; box-shadow: 0 0 0 3px rgba(255,215,0,0.07), 0 0 25px rgba(255,215,0,0.1) !important; }

/* FILTER LIST */
.filter-list li { background: rgba(19,17,14,0.6) !important; border: 1px solid rgba(255,215,0,0.06) !important; }
.filter-list li:hover { background: rgba(255,215,0,0.04) !important; border-color: rgba(255,215,0,0.18) !important; }

/* PIX / CREDIT */
#creditCardForm { background: #12100d !important; border: 1px solid rgba(255,215,0,0.08) !important; }
#pixInstructions { background: rgba(50,188,173,0.06) !important; border: 1px solid rgba(50,188,173,0.22) !important; }

/* MOBILE */
@media (max-width:768px) {
  .hero-orb-1 { width:350px;height:350px;left:-120px; }
  .hero-orb-2 { width:280px;height:280px;right:-80px; }
  .hero-orb-3 { display:none; }
}



/* ============================================================ */
/* === BUNDLED GOLD ATMOSPHERE === */
/* ============================================================ */

/* ============================================================
   ARTIGO DE GRIFE — GOLD ATMOSPHERE v1.0.6
   Adicione no <head> após visual-fixes.css:
   <link rel="stylesheet" href="gold-atmosphere.css">
   ============================================================ */

/* ── FUNDO CORPO: preto puro com pontos de luz dourados elegantes ── */
:root {
  --gold-primary: #FFD700;
  --gold-mid: #D4A017;
  --gold-deep: #8B6914;
  --noir: #000000;      /* Preto Puro */
  --noir-2: #050505;    /* Preto Profundo */
  --noir-3: #0a0a0a;    /* Off-Black Rico */
  --noir-4: #101010;    /* Carvão Escuro */

  /* Sobrescrever style.css e visual-fixes.css */
  --primary-color: #FFD700;
  --primary-hover: #D4A017;
  --bg-color: #000000;
  --card-bg: #080808;
  --border-color: rgba(255, 215, 0, 0.12);
  --bg-deep: #000000;
}

body {
  background-color: var(--noir) !important;
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -10%, rgba(255, 215, 0, 0.10) 0%, transparent 50%), /* Pontos de Luz Dourados */
    radial-gradient(circle 600px at 15% 45%, rgba(255, 215, 0, 0.05) 0%, transparent 100%),
    radial-gradient(circle 600px at 85% 75%, rgba(212, 160, 23, 0.04) 0%, transparent 100%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 60%) !important;
  background-attachment: fixed !important;
}

/* ── PARTÍCULAS FLUTUANTES EM CSS PURO ── */
.gold-particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gp {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0;
  animation: gp-float linear infinite;
}

@keyframes gp-float {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  5%   { opacity: 1; }
  80%  { opacity: 0.6; }
  95%  { opacity: 0; }
  100% { transform: translateY(-10vh) translateX(var(--drift, 30px)) scale(1); opacity: 0; }
}

/* 100 partículas com posições/tamanhos/durações variadas */
.gp:nth-child(1) { left: 1.5%; width: 2px; height: 2px; animation-duration: 9s; animation-delay: 0.8s; --drift: -22px; }
.gp:nth-child(2) { left: 2.5%; width: 2.5px; height: 2.5px; animation-duration: 14s; animation-delay: 1.6s; --drift: 29px; }
.gp:nth-child(3) { left: 3.4%; width: 4.2px; height: 4.2px; animation-duration: 15s; animation-delay: 2.4s; --drift: -36px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(4) { left: 4.4%; width: 2.5px; height: 2.5px; animation-duration: 16s; animation-delay: 3.2s; --drift: 43px; }
.gp:nth-child(5) { left: 5.4%; width: 2.2px; height: 2.2px; animation-duration: 13s; animation-delay: 4s; --drift: -50px; }
.gp:nth-child(6) { left: 6.3%; width: 3.5px; height: 3.5px; animation-duration: 18s; animation-delay: 4.8s; --drift: 57px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(7) { left: 7.3%; width: 7px; height: 7px; animation-duration: 25s; animation-delay: 5.6s; --drift: -15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(8) { left: 8.3%; width: 2.5px; height: 2.5px; animation-duration: 20s; animation-delay: 6.4s; --drift: 22px; }
.gp:nth-child(9) { left: 9.3%; width: 4.2px; height: 4.2px; animation-duration: 21s; animation-delay: 7.2s; --drift: -29px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(10) { left: 10.2%; width: 2.5px; height: 2.5px; animation-duration: 22s; animation-delay: 8s; --drift: 36px; }
.gp:nth-child(11) { left: 11.2%; width: 2.2px; height: 2.2px; animation-duration: 11s; animation-delay: 8.8s; --drift: -43px; }
.gp:nth-child(12) { left: 12.2%; width: 3.5px; height: 3.5px; animation-duration: 24s; animation-delay: 9.6s; --drift: 50px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(13) { left: 13.1%; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 10.4s; --drift: -57px; }
.gp:nth-child(14) { left: 14.1%; width: 8px; height: 8px; animation-duration: 22s; animation-delay: 11.2s; --drift: 15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(15) { left: 15.1%; width: 4.2px; height: 4.2px; animation-duration: 12s; animation-delay: 12s; --drift: -22px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(16) { left: 16%; width: 2.5px; height: 2.5px; animation-duration: 13s; animation-delay: 12.8s; --drift: 29px; }
.gp:nth-child(17) { left: 17%; width: 2.2px; height: 2.2px; animation-duration: 9s; animation-delay: 13.6s; --drift: -36px; }
.gp:nth-child(18) { left: 18%; width: 3.5px; height: 3.5px; animation-duration: 15s; animation-delay: 14.4s; --drift: 43px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(19) { left: 19%; width: 2px; height: 2px; animation-duration: 11s; animation-delay: 15.2s; --drift: -50px; }
.gp:nth-child(20) { left: 19.9%; width: 2.5px; height: 2.5px; animation-duration: 17s; animation-delay: 16s; --drift: 57px; }
.gp:nth-child(21) { left: 20.9%; width: 6px; height: 6px; animation-duration: 19s; animation-delay: 16.8s; --drift: -15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(22) { left: 21.9%; width: 2.5px; height: 2.5px; animation-duration: 19s; animation-delay: 17.6s; --drift: 22px; }
.gp:nth-child(23) { left: 22.8%; width: 2.2px; height: 2.2px; animation-duration: 15s; animation-delay: 0s; --drift: -29px; }
.gp:nth-child(24) { left: 23.8%; width: 3.5px; height: 3.5px; animation-duration: 21s; animation-delay: 0.8s; --drift: 36px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(25) { left: 24.8%; width: 2px; height: 2px; animation-duration: 9s; animation-delay: 1.6s; --drift: -43px; }
.gp:nth-child(26) { left: 25.8%; width: 2.5px; height: 2.5px; animation-duration: 23s; animation-delay: 2.4s; --drift: 50px; }
.gp:nth-child(27) { left: 26.7%; width: 4.2px; height: 4.2px; animation-duration: 24s; animation-delay: 3.2s; --drift: -57px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(28) { left: 27.7%; width: 7px; height: 7px; animation-duration: 26s; animation-delay: 4s; --drift: 15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(29) { left: 28.7%; width: 2.2px; height: 2.2px; animation-duration: 13s; animation-delay: 4.8s; --drift: -22px; }
.gp:nth-child(30) { left: 29.6%; width: 3.5px; height: 3.5px; animation-duration: 12s; animation-delay: 5.6s; --drift: 29px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(31) { left: 30.6%; width: 2px; height: 2px; animation-duration: 15s; animation-delay: 6.4s; --drift: -36px; }
.gp:nth-child(32) { left: 31.6%; width: 2.5px; height: 2.5px; animation-duration: 14s; animation-delay: 7.2s; --drift: 43px; }
.gp:nth-child(33) { left: 32.5%; width: 4.2px; height: 4.2px; animation-duration: 15s; animation-delay: 8s; --drift: -50px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(34) { left: 33.5%; width: 2.5px; height: 2.5px; animation-duration: 16s; animation-delay: 8.8s; --drift: 57px; }
.gp:nth-child(35) { left: 34.5%; width: 8px; height: 8px; animation-duration: 23s; animation-delay: 9.6s; --drift: -15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(36) { left: 35.4%; width: 3.5px; height: 3.5px; animation-duration: 18s; animation-delay: 10.4s; --drift: 22px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(37) { left: 36.4%; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 11.2s; --drift: -29px; }
.gp:nth-child(38) { left: 37.4%; width: 2.5px; height: 2.5px; animation-duration: 20s; animation-delay: 12s; --drift: 36px; }
.gp:nth-child(39) { left: 38.4%; width: 4.2px; height: 4.2px; animation-duration: 21s; animation-delay: 12.8s; --drift: -43px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(40) { left: 39.3%; width: 2.5px; height: 2.5px; animation-duration: 22s; animation-delay: 13.6s; --drift: 50px; }
.gp:nth-child(41) { left: 40.3%; width: 2.2px; height: 2.2px; animation-duration: 9s; animation-delay: 14.4s; --drift: -57px; }
.gp:nth-child(42) { left: 41.3%; width: 6px; height: 6px; animation-duration: 20s; animation-delay: 15.2s; --drift: 15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(43) { left: 42.2%; width: 2px; height: 2px; animation-duration: 11s; animation-delay: 16s; --drift: -22px; }
.gp:nth-child(44) { left: 43.2%; width: 2.5px; height: 2.5px; animation-duration: 26s; animation-delay: 16.8s; --drift: 29px; }
.gp:nth-child(45) { left: 44.2%; width: 4.2px; height: 4.2px; animation-duration: 12s; animation-delay: 17.6s; --drift: -36px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(46) { left: 45.1%; width: 2.5px; height: 2.5px; animation-duration: 13s; animation-delay: 0s; --drift: 43px; }
.gp:nth-child(47) { left: 46.1%; width: 2.2px; height: 2.2px; animation-duration: 15s; animation-delay: 0.8s; --drift: -50px; }
.gp:nth-child(48) { left: 47.1%; width: 3.5px; height: 3.5px; animation-duration: 15s; animation-delay: 1.6s; --drift: 57px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(49) { left: 48.1%; width: 7px; height: 7px; animation-duration: 27s; animation-delay: 2.4s; --drift: -15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(50) { left: 49%; width: 2.5px; height: 2.5px; animation-duration: 17s; animation-delay: 3.2s; --drift: 22px; }
.gp:nth-child(51) { left: 50%; width: 4.2px; height: 4.2px; animation-duration: 18s; animation-delay: 4s; --drift: -29px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(52) { left: 51%; width: 2.5px; height: 2.5px; animation-duration: 19s; animation-delay: 4.8s; --drift: 36px; }
.gp:nth-child(53) { left: 51.9%; width: 2.2px; height: 2.2px; animation-duration: 13s; animation-delay: 5.6s; --drift: -43px; }
.gp:nth-child(54) { left: 52.9%; width: 3.5px; height: 3.5px; animation-duration: 21s; animation-delay: 6.4s; --drift: 50px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(55) { left: 53.9%; width: 2px; height: 2px; animation-duration: 15s; animation-delay: 7.2s; --drift: -57px; }
.gp:nth-child(56) { left: 54.9%; width: 8px; height: 8px; animation-duration: 24s; animation-delay: 8s; --drift: 15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(57) { left: 55.8%; width: 4.2px; height: 4.2px; animation-duration: 24s; animation-delay: 8.8s; --drift: -22px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(58) { left: 56.8%; width: 2.5px; height: 2.5px; animation-duration: 25s; animation-delay: 9.6s; --drift: 29px; }
.gp:nth-child(59) { left: 57.8%; width: 2.2px; height: 2.2px; animation-duration: 11s; animation-delay: 10.4s; --drift: -36px; }
.gp:nth-child(60) { left: 58.7%; width: 3.5px; height: 3.5px; animation-duration: 12s; animation-delay: 11.2s; --drift: 43px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(61) { left: 59.7%; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 12s; --drift: -50px; }
.gp:nth-child(62) { left: 60.7%; width: 2.5px; height: 2.5px; animation-duration: 14s; animation-delay: 12.8s; --drift: 57px; }
.gp:nth-child(63) { left: 61.6%; width: 6px; height: 6px; animation-duration: 21s; animation-delay: 13.6s; --drift: -15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(64) { left: 62.6%; width: 2.5px; height: 2.5px; animation-duration: 16s; animation-delay: 14.4s; --drift: 22px; }
.gp:nth-child(65) { left: 63.6%; width: 2.2px; height: 2.2px; animation-duration: 9s; animation-delay: 15.2s; --drift: -29px; }
.gp:nth-child(66) { left: 64.5%; width: 3.5px; height: 3.5px; animation-duration: 18s; animation-delay: 16s; --drift: 36px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(67) { left: 65.5%; width: 2px; height: 2px; animation-duration: 11s; animation-delay: 16.8s; --drift: -43px; }
.gp:nth-child(68) { left: 66.5%; width: 2.5px; height: 2.5px; animation-duration: 20s; animation-delay: 17.6s; --drift: 50px; }
.gp:nth-child(69) { left: 67.5%; width: 4.2px; height: 4.2px; animation-duration: 21s; animation-delay: 0s; --drift: -57px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(70) { left: 68.4%; width: 7px; height: 7px; animation-duration: 18s; animation-delay: 0.8s; --drift: 15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(71) { left: 69.4%; width: 2.2px; height: 2.2px; animation-duration: 15s; animation-delay: 1.6s; --drift: -22px; }
.gp:nth-child(72) { left: 70.4%; width: 3.5px; height: 3.5px; animation-duration: 24s; animation-delay: 2.4s; --drift: 29px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(73) { left: 71.3%; width: 2px; height: 2px; animation-duration: 9s; animation-delay: 3.2s; --drift: -36px; }
.gp:nth-child(74) { left: 72.3%; width: 2.5px; height: 2.5px; animation-duration: 26s; animation-delay: 4s; --drift: 43px; }
.gp:nth-child(75) { left: 73.3%; width: 4.2px; height: 4.2px; animation-duration: 12s; animation-delay: 4.8s; --drift: -50px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(76) { left: 74.3%; width: 2.5px; height: 2.5px; animation-duration: 13s; animation-delay: 5.6s; --drift: 57px; }
.gp:nth-child(77) { left: 75.2%; width: 8px; height: 8px; animation-duration: 25s; animation-delay: 6.4s; --drift: -15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(78) { left: 76.2%; width: 3.5px; height: 3.5px; animation-duration: 15s; animation-delay: 7.2s; --drift: 22px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(79) { left: 77.2%; width: 2px; height: 2px; animation-duration: 15s; animation-delay: 8s; --drift: -29px; }
.gp:nth-child(80) { left: 78.1%; width: 2.5px; height: 2.5px; animation-duration: 17s; animation-delay: 8.8s; --drift: 36px; }
.gp:nth-child(81) { left: 79.1%; width: 4.2px; height: 4.2px; animation-duration: 18s; animation-delay: 9.6s; --drift: -43px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(82) { left: 80.1%; width: 2.5px; height: 2.5px; animation-duration: 19s; animation-delay: 10.4s; --drift: 50px; }
.gp:nth-child(83) { left: 81%; width: 2.2px; height: 2.2px; animation-duration: 11s; animation-delay: 11.2s; --drift: -57px; }
.gp:nth-child(84) { left: 82%; width: 6px; height: 6px; animation-duration: 22s; animation-delay: 12s; --drift: 15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(85) { left: 83%; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 12.8s; --drift: -22px; }
.gp:nth-child(86) { left: 84%; width: 2.5px; height: 2.5px; animation-duration: 23s; animation-delay: 13.6s; --drift: 29px; }
.gp:nth-child(87) { left: 84.9%; width: 4.2px; height: 4.2px; animation-duration: 24s; animation-delay: 14.4s; --drift: -36px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(88) { left: 85.9%; width: 2.5px; height: 2.5px; animation-duration: 25s; animation-delay: 15.2s; --drift: 43px; }
.gp:nth-child(89) { left: 86.9%; width: 2.2px; height: 2.2px; animation-duration: 9s; animation-delay: 16s; --drift: -50px; }
.gp:nth-child(90) { left: 87.8%; width: 3.5px; height: 3.5px; animation-duration: 12s; animation-delay: 16.8s; --drift: 57px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(91) { left: 88.8%; width: 7px; height: 7px; animation-duration: 19s; animation-delay: 17.6s; --drift: -15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(92) { left: 89.8%; width: 2.5px; height: 2.5px; animation-duration: 14s; animation-delay: 0s; --drift: 22px; }
.gp:nth-child(93) { left: 90.7%; width: 4.2px; height: 4.2px; animation-duration: 15s; animation-delay: 0.8s; --drift: -29px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(94) { left: 91.7%; width: 2.5px; height: 2.5px; animation-duration: 16s; animation-delay: 1.6s; --drift: 36px; }
.gp:nth-child(95) { left: 92.7%; width: 2.2px; height: 2.2px; animation-duration: 15s; animation-delay: 2.4s; --drift: -43px; }
.gp:nth-child(96) { left: 93.6%; width: 3.5px; height: 3.5px; animation-duration: 18s; animation-delay: 3.2s; --drift: 50px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(97) { left: 94.6%; width: 2px; height: 2px; animation-duration: 9s; animation-delay: 4s; --drift: -57px; }
.gp:nth-child(98) { left: 95.6%; width: 8px; height: 8px; animation-duration: 26s; animation-delay: 4.8s; --drift: 15px; box-shadow: 0 0 12px rgba(255,215,0,0.85), 0 0 20px rgba(255,215,0,0.4); background: rgba(255, 215, 0, 0.9); }
.gp:nth-child(99) { left: 96.6%; width: 4.2px; height: 4.2px; animation-duration: 21s; animation-delay: 5.6s; --drift: -22px; box-shadow: 0 0 6px rgba(255,215,0,0.6); }
.gp:nth-child(100) { left: 97.5%; width: 2.5px; height: 2.5px; animation-duration: 22s; animation-delay: 6.4s; --drift: 29px; }

/* ── LINHA DOURADA SUPERIOR (accent de luxo) ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,215,0,0.0) 10%,
    rgba(255,215,0,0.8) 30%,
    #FFD700 50%,
    rgba(255,215,0,0.8) 70%,
    rgba(255,215,0,0.0) 90%,
    transparent 100%
  );
  z-index: 99999;
  pointer-events: none;
  animation: gold-line-pulse 4s ease-in-out infinite;
}

@keyframes gold-line-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ── CARDS: preto quente com bordas douradas vivas ── */
.product-card {
  background: linear-gradient(160deg, var(--noir-4) 0%, var(--noir-3) 60%, var(--noir-2) 100%) !important;
  border: 1px solid rgba(255,215,0,0.13) !important;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,215,0,0.04) !important;
}

.product-card:hover {
  background: linear-gradient(160deg, var(--noir-3) 0%, var(--noir-2) 60%, var(--noir) 100%) !important;
  border-color: rgba(255,215,0,0.5) !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.9),
    0 0 40px rgba(255,215,0,0.18),
    inset 0 1px 0 rgba(255,215,0,0.15) !important;
}

/* Fio dourado na borda superior ao hover */
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
}
.product-card:hover::after { opacity: 1; }

/* ── HEADER: noir com brilho sutil ── */
.header {
  background: rgba(0,0,0,0.8) !important;
  border-bottom: 1px solid rgba(255,215,0,0.1) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5) !important;
}

.header.scrolled {
  background: rgba(0,0,0,0.98) !important;
  border-bottom-color: rgba(255,215,0,0.18) !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.8), 0 1px 0 rgba(255,215,0,0.12) !important;
}

/* ── HERO: atmosphere dourada mais intensa ── */
.hero {
  background-color: transparent !important;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255,215,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(180,120,0,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 70%, rgba(180,120,0,0.04) 0%, transparent 55%) !important;
}

/* ── DIVIDERS: mais ricos ── */
.section-divider {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,215,0,0.05) 10%,
    rgba(255,215,0,0.25) 25%,
    rgba(255,215,0,0.8) 50%,
    rgba(255,215,0,0.25) 75%,
    rgba(255,215,0,0.05) 90%,
    transparent 100%) !important;
  box-shadow:
    0 0 30px rgba(255,215,0,0.25),
    0 0 80px rgba(255,215,0,0.07) !important;
}

/* ── SIDEBAR FILTROS ── */
.filters-sidebar {
  background: linear-gradient(170deg, var(--noir-4) 0%, var(--noir-3) 100%) !important;
  border: 1px solid rgba(255,215,0,0.09) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(255,215,0,0.025) !important;
  border-top: 1px solid rgba(255,215,0,0.08) !important;
  border-bottom: 1px solid rgba(255,215,0,0.08) !important;
}
.trust-bar::before { background: linear-gradient(90deg, var(--noir), transparent) !important; }
.trust-bar::after  { background: linear-gradient(-90deg, var(--noir), transparent) !important; }

/* ── CART / MODAIS ── */
.cart-sidebar {
  background: linear-gradient(180deg, var(--noir-4) 0%, var(--noir-2) 100%) !important;
  border-left: 1px solid rgba(255,215,0,0.1) !important;
}
.modal-content {
  background: linear-gradient(160deg, var(--noir-4) 0%, var(--noir-2) 100%) !important;
  border: 1px solid rgba(255,215,0,0.15) !important;
  box-shadow: 0 30px 100px rgba(0,0,0,0.9), 0 0 50px rgba(255,215,0,0.06) !important;
}
.cart-item {
  background: var(--noir-4) !important;
  border: 1px solid rgba(255,215,0,0.08) !important;
}

/* ── REVIEWS DASHBOARD ── */
.reviews-summary-dashboard {
  background: linear-gradient(145deg, rgba(10,10,10,0.9) 0%, rgba(5,5,5,0.9) 100%) !important;
  border: 1px solid rgba(255,215,0,0.12) !important;
}
.testimonial-card {
  background: linear-gradient(150deg, var(--noir-4) 0%, var(--noir-3) 100%) !important;
  border: 1px solid rgba(255,215,0,0.08) !important;
}
.testimonial-card:hover {
  border-color: rgba(255,215,0,0.3) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 25px rgba(255,215,0,0.07) !important;
}

/* ── CONTATO ── */
.contact-sidebar-card, .contact-form-card {
  background: rgba(10,10,10,0.9) !important;
  border: 1px solid rgba(255,215,0,0.1) !important;
}

/* ── CHECKOUT ── */
.checkout-header { background: var(--noir-3) !important; }
.checkout-summary-section {
  background: var(--noir-3) !important;
  border: 1px solid rgba(255,215,0,0.1) !important;
}
.checkout-step input {
  background: var(--noir-4) !important;
  border: 1px solid rgba(255,215,0,0.1) !important;
}
.checkout-step input:focus {
  border-color: rgba(255,215,0,0.55) !important;
  box-shadow: 0 0 0 3px rgba(255,215,0,0.08) !important;
}

/* ── PAYMENT SECTION ── */
.premium-payment-section {
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(5,5,5,0.95) 100%) !important;
  border: 1px solid rgba(255,215,0,0.1) !important;
}

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(180deg, var(--noir-2) 0%, #000000 100%) !important;
  border-top: 1px solid rgba(255,215,0,0.1) !important;
}
.footer-bottom-bar { background: #000000 !important; }

/* ── DRAWER MOBILE ── */
.mobile-drawer {
  background: linear-gradient(170deg, var(--noir-3) 0%, var(--noir-2) 100%) !important;
  border-right: 1px solid rgba(255,215,0,0.08) !important;
}
.drawer-header { background: var(--noir-2) !important; }

/* ── LOADER ── */
#premium-loader { background: var(--noir) !important; }
.loader-bg { background: radial-gradient(ellipse at 50% 50%, rgba(255,215,0,0.08) 0%, var(--noir) 75%) !important; }

/* ── SEARCH ── */
.search-box {
  background: rgba(10,10,10,0.9) !important;
  border: 1px solid rgba(255,215,0,0.09) !important;
}
.search-box:focus-within {
  border-color: rgba(255,215,0,0.5) !important;
  box-shadow: 0 0 0 3px rgba(255,215,0,0.08), 0 0 20px rgba(255,215,0,0.08) !important;
}

/* ── ANIMAÇÃO: brilho pulsante nos títulos de seção ── */
.section-title {
  animation: title-glow 5s ease-in-out infinite !important;
}
@keyframes title-glow {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(255,215,0,0.18)); }
  50%       { filter: drop-shadow(0 0 28px rgba(255,215,0,0.38)); }
}

/* ── ANIMAÇÃO: partícula de luz nos botões ao hover ── */
.btn-comprar, .btn {
  overflow: hidden;
}
.btn-comprar::after, .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.btn-comprar:hover::after, .btn:hover::after { opacity: 1; }

/* ── ORBS: upgrade de profundidade ── */
.hero-orb-1 {
  background: radial-gradient(circle, rgba(255,215,0,0.09) 0%, transparent 65%) !important;
  animation: orb-drift-1 16s ease-in-out infinite !important;
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(200,140,0,0.065) 0%, transparent 65%) !important;
  animation: orb-drift-2 20s ease-in-out infinite !important;
}
.hero-orb-3 {
  background: radial-gradient(circle, rgba(255,165,0,0.06) 0%, transparent 65%) !important;
  animation: orb-drift-3 12s ease-in-out infinite !important;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(35px,-28px) scale(1.08); }
  66%      { transform: translate(-22px,20px) scale(0.94); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-30px,25px) scale(1.1); }
  75%      { transform: translate(18px,-15px) scale(0.97); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-35px) scale(1.05); }
}

/* ── BADGE DE PRODUTOS: brilho extra ── */
.badge-lancamento {
  box-shadow: 0 2px 14px rgba(0,85,255,0.5) !important;
  animation: badge-glow-blue 3s ease-in-out infinite;
}
.badge-oferta {
  box-shadow: 0 2px 14px rgba(230,0,0,0.5) !important;
  animation: badge-glow-red 3s ease-in-out infinite;
}
.badge-mais-vendido {
  box-shadow: 0 2px 14px rgba(255,215,0,0.5) !important;
  animation: badge-glow-gold 3s ease-in-out infinite;
}
@keyframes badge-glow-blue {
  0%, 100% { box-shadow: 0 2px 10px rgba(0,85,255,0.4); }
  50%      { box-shadow: 0 2px 20px rgba(0,85,255,0.7); }
}
@keyframes badge-glow-red {
  0%, 100% { box-shadow: 0 2px 10px rgba(230,0,0,0.4); }
  50%      { box-shadow: 0 2px 20px rgba(230,0,0,0.7); }
}
@keyframes badge-glow-gold {
  0%, 100% { box-shadow: 0 2px 10px rgba(255,215,0,0.4); }
  50%      { box-shadow: 0 2px 20px rgba(255,215,0,0.8); }
}

/* ── SCROLL PROGRESS: dourado ── */
#scroll-progress {
  background: linear-gradient(90deg, #8B6914, #FFD700, #FFF8DC, #FFD700, #8B6914) !important;
  box-shadow: 0 0 12px rgba(255,215,0,0.7), 0 0 30px rgba(255,215,0,0.3) !important;
}

/* ── BACK TO TOP ── */
#back-to-top {
  background: rgba(255,215,0,0.08) !important;
  border: 1px solid rgba(255,215,0,0.2) !important;
}
#back-to-top:hover {
  background: var(--gold-primary) !important;
  color: #000 !important;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4) !important;
}

/* ── INPUTS GERAIS ── */
input, textarea, select {
  caret-color: var(--gold-primary);
}

/* ── FILTRO DE LISTA ── */
.filter-list li {
  background: rgba(10,10,10,0.85) !important;
  border: 1px solid rgba(255,215,0,0.12) !important;
}
.filter-list li:hover {
  background: rgba(255,215,0,0.08) !important;
  border-color: rgba(255,215,0,0.4) !important;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  /* Distribui as partículas por toda a largura da tela no mobile.
     Ocultamos as pares (even) para reduzir a densidade e otimizar o desempenho,
     mantendo 50 partículas elegantes espalhadas uniformemente por toda a resolução. */
  .gp:nth-child(even) { display: none; }
  .hero-orb-3 { display: none !important; }
}

/* ── STOCK ALERT: fogo com pulso vermelho/laranja ── */
@keyframes fire-pulse-glow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px rgba(255, 59, 48, 0.5));
  }
  50% {
    transform: scale(1.18);
    filter: drop-shadow(0 0 8px rgba(255, 100, 30, 0.95));
  }
}
.fire-pulse-icon {
  animation: fire-pulse-glow 1.2s ease-in-out infinite !important;
  color: #ff3b30 !important;
  display: inline-block !important;
}

/* =====================================================================
   PERFORMANCE — Seção "Nossos Produtos"
   Evita travamento no carregamento: o navegador só renderiza/pinta os
   cards que estão (ou prestes a entrar) na viewport. Os de fora usam um
   tamanho reservado (contain-intrinsic-size) para não causar saltos de
   layout. Combinado com loading="lazy" + decoding="async" nas imagens,
   o carregamento da grade fica fluido mesmo com muitas fotos.
   ===================================================================== */
.product-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
@media (max-width: 768px) {
  .product-card { contain-intrinsic-size: auto 560px; }
}

/* ============================================================
   REFINEMENT LAYER v2 — Artigo de Grife (loja)
   Polimento visual + micro-interações, mantendo escuro + dourado.
   ============================================================ */
:root {
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-grad: linear-gradient(135deg, #FFD700 0%, #FFE98A 50%, #E6B800 100%);
}

/* Foco acessível e elegante (segue o raio do próprio elemento) */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.35), 0 0 0 1px rgba(255, 215, 0, 0.55) !important;
}

/* CTA principal: gradiente dourado com brilho interno + clique tátil */
.btn:not(.btn-outline) {
  background: var(--gold-grad) !important;
  border-color: transparent !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 22px rgba(255, 215, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  transition: transform 0.25s var(--ease-lux), box-shadow 0.3s var(--ease-lux), filter 0.25s !important;
}
.btn:not(.btn-outline):hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
.btn:not(.btn-outline):active { transform: translateY(-1px) scale(0.98) !important; }

.btn-outline { border-radius: 10px !important; background: rgba(255, 255, 255, 0.02) !important; }

/* Categorias: hover sutil, ativo em ouro pleno com glow */
.category-btn { transition: all 0.3s var(--ease-lux); }
.category-btn:not(.active):hover {
  background: rgba(255, 215, 0, 0.07);
  color: #fff;
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: none;
}
.category-btn.active {
  background: var(--gold-grad);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Card de produto: elevação mais suave no hover */
.product-card { transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux); }
.product-card:hover { transform: translateY(-6px); }

/* Botão "+carrinho" do card: preenche em ouro com bounce */
.add-to-cart { transition: all 0.3s var(--ease-lux) !important; border: 1px solid rgba(255, 215, 0, 0.22) !important; }
.add-to-cart:not(:disabled):hover {
  background: var(--gold-grad) !important;
  color: #0a0907 !important;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.35);
}
.add-to-cart:not(:disabled):active { transform: scale(0.9); }

/* Ícones flutuantes do card (favorito / espiar) */
.wishlist-btn, .quick-view-btn { transition: all 0.3s var(--ease-lux) !important; }
.wishlist-btn:hover, .quick-view-btn:hover {
  background: var(--gold-grad) !important;
  color: #0a0907 !important;
  border-color: transparent !important;
  transform: scale(1.12) translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.4);
}
.wishlist-btn:hover i { color: #0a0907 !important; }

/* Links de navegação: sublinhado que cresce */
.nav-filter-link { position: relative; transition: color 0.25s var(--ease-lux); }
.nav-filter-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--gold-grad); transition: width 0.3s var(--ease-lux);
}
.nav-filter-link:hover::after { width: 100%; }
.nav-filter-link:hover { color: var(--primary-color); }

/* Paginação (botões inline gerados via JS) */
.pag-btn { transition: all 0.25s var(--ease-lux) !important; }
.pag-btn:not(.active):hover { transform: translateY(-2px); }

/* Campos de formulário: foco dourado suave */
input, select, textarea { transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
input:focus, select:focus, textarea:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15) !important;
}

/* Seletor de quantidade */
.quantity-selector button { transition: all 0.2s var(--ease-lux) !important; }
.quantity-selector button:hover { background: rgba(255, 215, 0, 0.15) !important; color: var(--primary-color) !important; }
.quantity-selector button:active { transform: scale(0.85); }

/* Botões finais de compra com cantos coerentes */
.btn-checkout, .btn-confirm-purchase, .btn-comprar { border-radius: 12px !important; }

/* Seleção de texto + scrollbar coerentes com a marca */
::selection { background: rgba(255, 215, 0, 0.25); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0907; }
::-webkit-scrollbar-thumb { background: rgba(255, 215, 0, 0.25); border-radius: 999px; border: 2px solid #0a0907; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

/* Acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================= */
/* === BANNER DE EVENTO / CUPOM (faixa flutuante no topo)    === */
/* ============================================================= */
#coupon-event-banner {
  position: fixed;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9990;
  width: min(92%, 760px);
  animation: coupon-banner-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes coupon-banner-in {
  from { opacity: 0; transform: translate(-50%, -16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.coupon-banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20,17,10,0.96), rgba(10,9,7,0.96));
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 26px rgba(255,215,0,0.10), inset 0 1px 0 rgba(255,215,0,0.08);
  backdrop-filter: blur(12px);
}
.coupon-banner-emoji { font-size: 1.6rem; flex-shrink: 0; }
.coupon-banner-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.coupon-banner-text strong { color: #FFD700; font-size: 0.98rem; font-weight: 800; letter-spacing: 0.3px; }
.coupon-banner-text span { color: #d8d2c4; font-size: 0.84rem; line-height: 1.35; }
.coupon-banner-code {
  flex-shrink: 0;
  background: linear-gradient(135deg, #c87f0a, #FFD700);
  color: #111;
  border: none;
  font-weight: 800;
  font-family: monospace;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.coupon-banner-code:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,215,0,0.35); }
.coupon-banner-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: #888;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s ease;
}
.coupon-banner-close:hover { color: #fff; }
@media (max-width: 640px) {
  #coupon-event-banner { top: 70px; width: 94%; }
  .coupon-banner-inner { gap: 10px; padding: 10px 12px; flex-wrap: wrap; }
  .coupon-banner-emoji { font-size: 1.3rem; }
  .coupon-banner-text strong { font-size: 0.88rem; }
  .coupon-banner-text span { font-size: 0.78rem; }
  .coupon-banner-code { font-size: 0.78rem; padding: 8px 12px; }
}

/* ============================================================= */
/* === CARTÃO DE CRÉDITO — visual premium realista (v2)      === */
/* ============================================================= */

/* Flutuação suave em repouso (o tilt do mouse continua por cima) */
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.animated-card-tilt { animation: card-float 5s ease-in-out infinite; }
.animated-card-tilt:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .animated-card-tilt { animation: none; }
}

/* Brilho/sheen que percorre o cartão lentamente */
.card-front::after {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 50%; height: 220%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.10) 45%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.10) 55%, transparent 100%);
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 1;
  /* Começa invisível: se a animação não rodar (alguns dispositivos), o painel translúcido não aparece parado */
  opacity: 0;
  animation: card-sheen 6s ease-in-out infinite;
}
@keyframes card-sheen {
  0%, 75%, 100% { left: -40%; opacity: 0; }
  82% { opacity: 1; }
  92% { left: 120%; opacity: 0; }
}

/* Linha superior: chip + contactless à esquerda, bandeira à direita */
.card-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  z-index: 2;
}
.card-top-row #cardBrandLogo { margin-left: auto; }

/* Chip dourado realista (com trilhas internas) */
.card-chip {
  width: 46px;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f9e29c 0%, #d4af37 38%, #b8860b 60%, #f0d77a 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.28);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.55), 0 2px 4px rgba(0,0,0,0.35);
}
.card-chip::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.35);
  background:
    linear-gradient(90deg, transparent 48%, rgba(0,0,0,0.35) 49%, rgba(0,0,0,0.35) 51%, transparent 52%),
    linear-gradient(0deg, transparent 30%, rgba(0,0,0,0.3) 31%, rgba(0,0,0,0.3) 33%, transparent 34%, transparent 66%, rgba(0,0,0,0.3) 67%, rgba(0,0,0,0.3) 69%, transparent 70%);
}

/* Ícone contactless (ondas NFC) */
.card-contactless {
  position: relative;
  width: 22px;
  height: 26px;
  z-index: 2;
}
.card-contactless span {
  position: absolute;
  top: 50%;
  left: 0;
  border: 2px solid rgba(255, 225, 130, 0.9);
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.card-contactless span:nth-child(1) { width: 8px;  height: 8px;  }
.card-contactless span:nth-child(2) { width: 15px; height: 15px; opacity: 0.7; }
.card-contactless span:nth-child(3) { width: 22px; height: 22px; opacity: 0.45; }

/* ---- Logos de bandeira realistas ---- */
/* Mastercard: dois círculos sobrepostos */
.mc-logo { display: inline-flex; align-items: center; }
.mc-logo .mc-c1, .mc-logo .mc-c2 {
  width: 26px; height: 26px; border-radius: 50%; display: block;
}
.mc-logo .mc-c1 { background: #eb001b; }
.mc-logo .mc-c2 { background: #f79e1b; margin-left: -12px; mix-blend-mode: screen; }
/* Visa */
.visa-logo {
  font-family: 'Arial Black', Arial, sans-serif;
  font-style: italic; font-weight: 900; font-size: 1.45rem;
  color: #ffffff; letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
/* Elo */
.elo-logo {
  font-weight: 900; font-size: 1.2rem; font-style: italic;
  color: #ffd200; letter-spacing: 0.5px;
}
.elo-logo span { color: #00a4e0; }
/* Amex */
.amex-logo {
  font-weight: 800; font-size: 0.7rem; line-height: 1; text-align: center;
  background: #2e77bb; color: #fff; padding: 6px 7px; border-radius: 4px;
  letter-spacing: 0.5px;
}
/* Genérico (bandeira não detectada) */
.generic-logo { font-size: 1.3rem; color: rgba(255,255,255,0.6); }

/* Número do cartão com fonte mais "embossada" */
#cardNumDisplay {
  font-family: 'OCR A Std', 'Courier New', monospace;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6), 0 0 1px rgba(255,255,255,0.2);
}

/* ============================================================= */
/* === FORMA DE PAGAMENTO — animações + PIX em 3D           === */
/* ============================================================= */
.payment-method-option {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.payment-method-option:hover { transform: translateY(-3px); }
.payment-method-option.active { transform: translateY(-2px); }
.payment-method-content i { transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.payment-method-option:hover .payment-method-content i { transform: scale(1.12) translateY(-1px); }

/* PIX Icon: Estilo simples e estático sem animações */
.payment-method-content .fa-pix {
  color: #32bcad !important;
  display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
  .payment-method-content .fa-pix { animation: none; }
  .card-front::after { animation: none; }
}

/* ============================================================= */
/* === CHECKOUT — obrigatórios, dicas e card de frete         === */
/* ============================================================= */

/* Marcador de campo obrigatório (*) */
#checkoutForm .req {
  color: #e63946;
  font-weight: 800;
  margin-left: 2px;
}
/* Marcador de campo opcional */
#checkoutForm .opt {
  color: #777;
  font-weight: 400;
  font-size: 0.8em;
}
/* Dica abaixo do campo (ex.: CPF / CEP) */
#checkoutForm .field-hint {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  color: #8a8a8a;
  line-height: 1.35;
}
#checkoutForm .field-hint i { color: var(--primary-color); margin-right: 3px; }

/* Aviso (card) enquanto o cliente não preenche o CEP para ver o frete */
.shipping-empty-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px dashed rgba(255, 215, 0, 0.35);
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.04);
  color: #cfcfcf;
  font-size: 0.85rem;
  line-height: 1.4;
}
.shipping-empty-hint i { color: var(--primary-color); font-size: 1.15rem; flex-shrink: 0; }
.shipping-empty-hint strong { color: #fff; }

/* ===== Catálogo 2 — Perfumes: chips de filtro ===== */
.perfume-cat-link {
  background: rgba(255, 255, 255, 0.04);
  color: #cfcfcf;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.perfume-cat-link:hover {
  border-color: var(--primary-color);
  color: #fff;
}
.perfume-cat-link.active {
  background: var(--primary-color);
  color: #1a1a1a;
  border-color: var(--primary-color);
}

.perfume-filter-caption {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  min-width: 62px;
  text-align: right;
  opacity: 0.85;
}

/* Sidebar de perfumes: reaproveita o visual do catálogo 1 no desktop.
   No mobile (≤992px) ela fica escondida (herda de .filters-sidebar) e os
   filtros vão para o menu (drawer), via #mobilePerfumeFiltersContainer. */

/* ===== Menu mobile (drawer): seções de filtro recolhíveis ===== */
#mobileDrawer #mobileFiltersContainer .filter-group,
#mobileDrawer #mobilePerfumeFiltersContainer .filter-group {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
  padding-bottom: 0;
}
#mobileDrawer #mobileFiltersContainer .filter-group > h3,
#mobileDrawer #mobilePerfumeFiltersContainer .filter-group > h3 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 15px 2px;
  user-select: none;
}
#mobileDrawer .filter-group > h3::after {
  content: "\203A"; /* › */
  transform: rotate(90deg);
  transition: transform .25s ease;
  color: var(--primary-color);
  font-size: 1.3rem;
  line-height: 1;
}
#mobileDrawer .filter-group.collapsed > h3::after {
  transform: rotate(0deg);
}
#mobileDrawer .filter-group.collapsed > *:not(h3) {
  display: none !important;
}
#mobileDrawer .filter-group:not(.collapsed) > *:not(h3) {
  padding-bottom: 15px;
}

/* ===== Menu mobile: caixas principais ROUPAS / PERFUMES ===== */
#mobileDrawer .drawer-filter-box {
  border: 1px solid rgba(255,215,0,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  margin-top: 14px;
  overflow: hidden;
}
#mobileDrawer .drawer-filter-box-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 16px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
}
#mobileDrawer .drawer-filter-box-title::after {
  content: "\203A"; /* › */
  transform: rotate(90deg);
  transition: transform .25s ease;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}
#mobileDrawer .drawer-filter-box.collapsed .drawer-filter-box-title::after {
  transform: rotate(0deg);
}
#mobileDrawer .drawer-filter-box-body {
  padding: 0 14px 10px;
}
#mobileDrawer .drawer-filter-box.collapsed .drawer-filter-box-body {
  display: none;
}
/* Dentro da caixa, as seções não precisam de borda dupla no topo */
#mobileDrawer .drawer-filter-box .filter-group:first-child > h3 { padding-top: 6px; }
