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

:root {
    --primary-color: #FFD700;
    --primary-hover: #e6c200;
    --bg-color: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --border-color: #333333;
    --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 Section */
.about-section {
    padding: 6rem 5%;
    background-color: transparent;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.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;
}

.visual-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.feature-box p {
    font-size: 0.85rem !important;
    color: var(--text-muted);
    margin: 0 !important;
}

.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;
}

.flagship-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.flagship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.flagship-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.flagship-image {
    background: #000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.flagship-image img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.flagship-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flagship-info p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

@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%);
}

.stock-alert {
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.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;
}

.shipping-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.shipping-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shipping-method-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.shipping-method-time {
    color: #aaa;
    font-size: 0.85rem;
}

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

.shipping-card-price {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.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;
    }

    .about-container {
        grid-template-columns: 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: 10px;
    }

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

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

/* 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;
    }

    .mobile-horizontal-scroll {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding-bottom: 15px !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box !important;
    }

    .mobile-horizontal-scroll::-webkit-scrollbar {
        height: 4px;
    }

    .mobile-horizontal-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 4px;
    }

    .mobile-horizontal-scroll>* {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
    }

    .flagship-card,
    .mobile-compact-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

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

.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);
}

/* Mobile About Section Optimization */
@media (max-width: 768px) {
    .desktop-only-collage {
        display: none !important;
    }

    .mobile-horizontal-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .mobile-horizontal-scroll::-webkit-scrollbar {
        height: 4px;
    }

    .mobile-horizontal-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 4px;
    }

    .mobile-horizontal-scroll>* {
        min-width: 80%;
        scroll-snap-align: start;
        margin: 0 !important;
    }

    .about-stats.mobile-horizontal-scroll>* {
        min-width: 40%;
    }

    .mobile-compact-card {
        padding: 15px !important;
        margin-top: 0 !important;
        margin-bottom: 20px;
    }
}

/* 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; }