/* ============================================
   RESET E CONFIGURAÇÕES GERAIS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores */
    --color-orange: #f6ab45;
    --color-beige: #FBEAD1;
    --color-brown: #97372A;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #f5f5f5;
    --color-gray: #666666;
    --color-gray-dark: #333333;
    --color-dark-gray: #2d2d2d;
    --color-blue-bright: #3b82f6;
    --color-purple-pink: #a855f7;
    --color-purple-dark: #7c3aed;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Bordas */
    --border-radius: 16px;
    --border-radius-lg: 20px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    padding-top: 100px; /* Espaço para o top-bar fixo */
}

/* Padding removido - banner começa logo após o top-bar */
body.has-top-bar {
    padding-top: 100px;
}

body.has-header {
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Responsividade do Container */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

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

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

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 0.5rem 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

/* Ajustar top-bar quando há announcement bar */
.black-friday-page .top-bar {
    top: 1.5rem; /* Altura da announcement bar */
}

/* Ajustar breadcrumb quando há announcement bar */
.black-friday-page .breadcrumb {
    padding-top: 7rem;
}

.top-bar {
    position: fixed !important;
    transform: none !important;
    opacity: 1 !important;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

/* Logo removido do top-bar - agora está no banner hero */

.top-nav {
    display: flex;
    gap: var(--spacing-md);
}

.top-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.top-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-logo a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.top-logo .logo-img {
    height: 85px;
    max-width: 300px;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.35));
}

.top-nav a:hover {
    opacity: 0.8;
}

.top-icons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: opacity 0.3s;
}

.icon-btn:hover {
    opacity: 0.8;
}

.icon-btn svg {
    display: block;
}

.icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ef4444;
    color: var(--color-white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.icon-badge:empty {
    display: none;
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    display: block;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
    background-color: transparent;
    padding: 1rem 0 var(--spacing-xs) 0;
    font-size: 0.875rem;
    margin-top: 0;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #111827;
}

.breadcrumb span {
    color: #9ca3af;
}

.cart-page .breadcrumb {
    padding: 1rem 0 0.5rem 0;
    margin-top: 0;
}

/* ============================================
   PÁGINAS INSTITUCIONAIS
   ============================================ */

.info-hero {
    margin: 0 0 var(--spacing-lg);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    border-radius: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.info-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 55%);
    opacity: 0.6;
}

.info-hero .container {
    position: relative;
    z-index: 2;
}

.info-hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.info-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 0 0 0.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.info-hero-subtitle {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.info-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.info-hero-badge {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    min-width: 180px;
}

.info-hero-badge span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.info-hero-badge strong {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.info-hero--sunset,
.info-hero--violet,
.info-hero--mint,
.info-hero--navy,
.info-hero--amber,
.info-hero--aqua,
.info-hero--slate {
    background: linear-gradient(135deg, #334155, #0f172a);
}

.info-content {
    background: #f5f7fb;
    padding: var(--spacing-xxl) 0;
}

.info-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 2.1fr);
    gap: var(--spacing-xl);
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.info-sidebar-card li + li {
    margin-top: 0.35rem;
}

.info-sidebar-note {
    font-size: 0.85rem;
    color: #6b7280;
}

.info-sidebar-nav {
    background: #fff;
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-sidebar-nav span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.info-nav-link {
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: all 0.25s ease;
}

.info-nav-link:hover,
.info-nav-link.active {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.info-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-panel {
    background: #fff;
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.info-panel h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.info-panel p {
    color: #4b5563;
    line-height: 1.7;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.info-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.info-stat {
    background: #f9fafb;
    border-radius: 18px;
    padding: var(--spacing-md);
    border: 1px solid #e5e7eb;
}

.info-stat span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: #94a3b8;
    text-transform: uppercase;
}

.info-stat strong {
    font-size: 1.7rem;
    color: #111827;
}

.info-checklist {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0;
}

.info-checklist li {
    position: relative;
    padding-left: 1.75rem;
    color: #475569;
    line-height: 1.6;
}

.info-checklist li + li {
    margin-top: 0.75rem;
}

.info-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.info-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.info-accordion details {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    background: #f9fafb;
}

.info-accordion summary {
    cursor: pointer;
    font-weight: 600;
    color: #0f172a;
    list-style: none;
}

.info-accordion summary::-webkit-details-marker {
    display: none;
}

.info-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.info-contact-card {
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.info-contact-card span {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.info-contact-card a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.info-contact-card p {
    margin: 0.35rem 0 0;
    color: #475569;
    font-size: 0.95rem;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

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

.info-form input,
.info-form textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-form input:focus,
.info-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

.info-form button {
    align-self: flex-start;
    border: none;
    background: linear-gradient(135deg, #f97316, #db2777);
    color: #fff;
    font-weight: 600;
    padding: 0.95rem 2.5rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(219, 39, 119, 0.35);
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.info-step {
    background: #f9fafb;
    border-radius: 18px;
    padding: var(--spacing-md);
    border: 1px solid #e5e7eb;
}

.info-step strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.35rem;
}

.info-step p {
    margin: 0;
    color: #475569;
}

/* ============================================
   BANNERS PROMOCIONAIS
   ============================================ */
.seasonal-banner {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    background: #f8fafc;
    margin-bottom: var(--spacing-xl);
}

.seasonal-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
    align-items: stretch;
}

.seasonal-banner-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.seasonal-banner-card--text {
    background: #050505;
    color: #fff;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.seasonal-banner-kicker {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.seasonal-banner-card--text h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.2;
}

.seasonal-banner-card--text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.seasonal-banner-btn {
    align-self: flex-start;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seasonal-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.3);
}

.seasonal-banner-card--image {
    background: #fff;
    display: flex;
}

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

@media (max-width: 991px) {
    .seasonal-banner-grid {
        grid-template-columns: 1fr;
    }

    .seasonal-banner-card {
        border-radius: 24px;
    }
}

/* ============================================
   DEPOIMENTOS DE CLIENTES
   ============================================ */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    margin-bottom: calc(var(--spacing-xxl) * 2.5);
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 var(--spacing-sm);
    line-height: 1.1;
}

.testimonials-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    align-items: stretch;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    height: 100%;
    align-items: stretch;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.testimonial-text {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
    max-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: nowrap;
    height: 48px;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    flex: 1;
    height: 48px;
}

.testimonial-author strong {
    color: #111827;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    display: block;
}

.testimonial-badge {
    background: #10b981;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.testimonial-product {
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: var(--spacing-sm);
    margin-top: auto;
    align-items: flex-start;
    flex-shrink: 0;
    height: 100px;
}

.testimonial-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.testimonial-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    height: 100px;
}

.testimonial-product-name {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.testimonial-product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #10b981;
}

.testimonial-product-old-price {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
    margin-top: 0.25rem;
    margin-left: 0;
    line-height: 1.2;
    min-height: 1.2em;
    height: 1.2em;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: var(--spacing-xl) 0;
    }

    .testimonials-header {
        margin-bottom: var(--spacing-lg);
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

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

    .testimonial-card {
        padding: var(--spacing-lg);
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }

    .testimonial-product-image {
        width: 70px;
        height: 70px;
    }
}

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

    .info-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .info-hero {
        border-radius: 24px;
    }

    .info-panel {
        padding: var(--spacing-lg);
    }
}

/* ============================================
   BANNER
   ============================================ */

.banner {
    width: 100%;
    margin-bottom: var(--spacing-xl);
}

.banner-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

/* ============================================
   BANNER HERO (NOVO DESIGN)
   ============================================ */

.banner-hero {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

.banner-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin-top: 0;
    overflow: hidden;
}

.banner-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Flocos de Neve */
.snowflakes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #ffffff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0.8;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; font-size: 0.8em; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; font-size: 1em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 11s; animation-delay: 2s; font-size: 0.9em; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 13s; animation-delay: 0.5s; font-size: 1.1em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 10s; animation-delay: 1.5s; font-size: 0.85em; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 12s; animation-delay: 2.5s; font-size: 1em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 11s; animation-delay: 0.8s; font-size: 0.95em; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 13s; animation-delay: 1.8s; font-size: 1.05em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 10s; animation-delay: 3s; font-size: 0.9em; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 12s; animation-delay: 0.3s; font-size: 1em; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 11s; animation-delay: 1.3s; font-size: 0.85em; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 13s; animation-delay: 2.3s; font-size: 1.1em; }
.snowflake:nth-child(13) { left: 45%; animation-duration: 10s; animation-delay: 0.7s; font-size: 0.95em; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 12s; animation-delay: 1.7s; font-size: 1em; }
.snowflake:nth-child(15) { left: 65%; animation-duration: 11s; animation-delay: 2.7s; font-size: 0.9em; }
.snowflake:nth-child(16) { left: 75%; animation-duration: 13s; animation-delay: 0.2s; font-size: 1.05em; }
.snowflake:nth-child(17) { left: 85%; animation-duration: 10s; animation-delay: 1.2s; font-size: 0.88em; }
.snowflake:nth-child(18) { left: 95%; animation-duration: 12s; animation-delay: 2.2s; font-size: 1em; }
.snowflake:nth-child(19) { left: 5%; animation-duration: 11s; animation-delay: 0.6s; font-size: 0.92em; }
.snowflake:nth-child(20) { left: 95%; animation-duration: 13s; animation-delay: 1.6s; font-size: 1.08em; }

@keyframes snowfall {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(800px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.banner-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
    padding-top: 100px; /* Espaço para o top-bar fixo */
    padding-bottom: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.banner-hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 0;
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.banner-hero-logo a {
    display: inline-block;
    line-height: 0;
}

.banner-logo-img {
    height: 90px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.banner-hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.banner-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #fbbf24;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
    animation: pulse-glow 2s ease-in-out infinite;
}

.banner-hero-badge span {
    font-weight: 700;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.9));
    }
}

.banner-hero-badge span {
    font-weight: 700;
}

.banner-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.banner-hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.banner-hero-subtitle svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #fbbf24;
    opacity: 0.9;
}

.banner-hero-subtitle span {
    font-weight: 500;
}

.banner-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    background: #fff;
    color: #1e3a8a;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

.banner-hero-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: currentColor;
}

.banner-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    background: #f6ab45;
    color: #fff;
}

.banner-hero-btn:hover svg {
    transform: rotate(-15deg) scale(1.1);
}

/* Banner da frente removido - apenas o background permanece */

/* ============================================
   VIDEO HIGHLIGHT (SHOPIFY STYLE)
   ============================================ */
.sec__video {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.sec__video .sec__inner {
    position: relative;
    border-radius: clamp(18px, 2.8vw, 32px);
    overflow: hidden;
    min-height: clamp(260px, 32vw, 360px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.25);
    padding: clamp(24px, 4vw, 48px);
}

.sec__video .banner__media {
    position: absolute;
    inset: 0;
}

.sec__video .banner__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 12, 24, 0.8) 15%, rgba(7, 12, 24, 0.45) 55%, rgba(7, 12, 24, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.sec__video .banner__media video,
.sec__video .banner__media .video-foreground,
.sec__video .banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sec__video .sec__content {
    position: relative;
    z-index: 2;
    min-height: clamp(260px, 32vw, 360px);
    display: flex;
    align-items: center;
}

.sec__video .sec__content-inner {
    max-width: min(520px, 90%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sec__video .sec__kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.8);
}

.sec__video .sec__content-heading {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.15;
    margin: 0;
    font-weight: 800;
}

.sec__video .sec__content-des {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.sec__video .video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.4rem;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec__video .video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
}

@media (max-width: 768px) {
    .sec__video .sec__inner {
        min-height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .sec__video .banner__media {
        position: relative;
        height: 280px;
        min-height: 280px;
    }

    .sec__video .sec__content {
        position: relative;
        min-height: 0;
        padding: var(--spacing-lg);
        align-items: flex-start;
        background: #f5f7fb;
    }

    .sec__video .sec__content-inner {
        max-width: 100%;
        gap: 0.75rem;
        color: #0f172a;
    }

    .sec__video .sec__kicker {
        color: #6b7280;
    }

    .sec__video .sec__content-heading {
        font-size: 1.6rem;
        color: #0f172a;
    }

    .sec__video .sec__content-des {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #4b5563;
    }

    .sec__video .video-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .sec__video .banner__media {
        height: 240px;
        min-height: 240px;
    }

    .sec__video .sec__content {
        padding: var(--spacing-md);
    }

    .sec__video .sec__content-inner {
        gap: 0.6rem;
    }

    .sec__video .sec__kicker {
        font-size: 0.7rem;
    }

    .sec__video .sec__content-heading {
        font-size: 1.35rem;
    }

    .sec__video .sec__content-des {
        font-size: 0.9rem;
    }

    .sec__video .video-btn {
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
    }
}

/* ============================================
   SEÇÕES
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-top: var(--spacing-xs);
}

/* ============================================
   CATEGORIAS
   ============================================ */

.categories {
    padding: 0;
    padding-top: var(--spacing-xl);
    margin-top: 0;
    background-color: var(--color-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    align-items: stretch;
}

.category-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    position: relative;
    background-color: #f3f4f6;
    display: flex;
    flex-direction: column;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.category-info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-count {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PÁGINA DE CATEGORIAS
   ============================================ */

.categories-page {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    min-height: 60vh;
}

.categories-page .page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.5px;
}

.categories-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card-large {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: row;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.category-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.category-card-large:hover::before {
    opacity: 1;
}

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

.category-card-large:hover .category-link {
    color: #3b82f6;
    transform: translateX(8px);
}

.category-image-large {
    width: 45%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    flex-shrink: 0;
}

.category-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.category-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.category-info-large {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.category-info-large h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.category-info-large p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.category-link::after {
    content: '→';
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.category-card-large:hover .category-link::after {
    transform: translateX(4px);
}

/* Benefícios da Página de Categorias */
.categories-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   OFERTAS
   ============================================ */

.offers {
    padding: var(--spacing-xl) 0;
    padding-top: calc(var(--spacing-xl) + 100px); /* Adiciona espaço para o header fixo */
    background-color: var(--color-gray-light);
}

.offers-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    font-family: inherit;
}

.tab-btn.active {
    color: var(--color-orange);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--color-orange);
    border-radius: 2px 2px 0 0;
}

.tab-btn span {
    margin-right: 0.25rem;
}

/* ============================================
   PRODUTOS
   ============================================ */

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

.products-grid .product-card-wrapper {
    height: auto !important;
}

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

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

/* ============================================
   CARDS DE PRODUTOS - DESIGN PREMIUM E-COMMERCE
   ============================================ */

.product-card-wrapper {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-image-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9fafb;
    overflow: hidden;
    flex: 0 0 auto;
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.product-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.product-card .product-badge,
.product-image-section .product-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 300;
    color: #ffffff !important;
    background: #8b5cf6 !important;
    z-index: 10;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.3;
    border: none !important;
}

.product-badge-new {
    background: #a855f7;
}

.product-quick-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
    z-index: 15;
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.product-action-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.product-action-btn.active {
    background: #f6ab45;
    border-color: #f6ab45;
    color: #ffffff;
}

.product-action-btn.active svg {
    fill: currentColor;
}

.product-action-btn svg {
    width: 14px;
    height: 14px;
    color: #374151;
    transition: color 0.2s ease;
}

.product-action-btn.active svg {
    color: #ffffff;
}

.product-info-section {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    justify-content: space-between;
    flex: 1 1 auto;
}

.product-name-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
    margin-bottom: 4px;
}

.product-name-link h3,
.product-name {
    font-size: 11px;
    font-weight: 400;
    color: #1f2937;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    flex-shrink: 0;
    word-break: break-word;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: nowrap;
    flex-shrink: 0;
    margin: 0 0 4px 0;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-price-old {
    font-size: 10px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
    line-height: 1;
}

.product-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 5px 8px;
    margin: 0;
    margin-top: auto;
    background: #ef4444;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    height: 28px;
    min-height: 28px;
    max-height: 28px;
}

.product-buy-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.product-buy-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(239, 68, 68, 0.2);
}

.product-buy-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.product-variations {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    flex-shrink: 0;
    height: 28px;
    min-height: 28px;
    max-height: 28px;
    overflow: hidden;
}

.variation-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: inline-block;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    overflow: hidden;
    background-color: #f3f4f6;
}

.variation-dot:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.variation-dot.active {
    border-color: #3b82f6;
    border-width: 2px;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Responsividade dos Cards Premium - Removido para restaurar estilo original */

@media (max-width: 767px) and (min-width: 481px) {
    /* Estilos removidos para restaurar cards da página principal ao estado original */
    
    /* Aplicar os mesmos estilos aos cards relacionados */
    .related-products-grid .product-card-wrapper {
        height: auto !important;
    }
    
    .related-products-grid .product-card {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .related-products-grid .product-image-section {
        flex: 0 0 auto !important;
        width: 100% !important;
        padding-bottom: 100% !important;
        position: relative !important;
        height: 0 !important;
        max-height: none !important;
        min-height: 0 !important;
        background: #f8f9fa;
        border-radius: 12px 12px 0 0;
    }
    
    .related-products-grid .product-image-link {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .related-products-grid .product-image-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 14px;
        box-sizing: border-box;
    }
    
    .related-products-grid .product-image {
        object-fit: cover;
        border-radius: 8px;
        width: 100%;
        height: 100%;
    }
    
    .related-products-grid .product-info-section {
        padding: 12px;
        gap: 6px;
        flex: 1 1 auto !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        justify-content: flex-start;
    }
    
    .related-products-grid .product-name-link h3,
    .related-products-grid .product-name {
        font-size: 13px;
        min-height: auto;
        max-height: 40px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 1.4;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .related-products-grid .product-buy-btn {
        padding: 10px 14px;
        font-size: 12px;
        height: auto;
        min-height: 40px;
        max-height: none;
        margin: 0;
        margin-top: 10px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .related-products-grid .product-buy-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .related-products-grid .product-price {
        font-size: 17px;
        font-weight: 700;
    }
    
    .related-products-grid .product-price-old {
        font-size: 12px;
    }
    
    .related-products-grid .product-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .related-products-grid .product-quick-actions {
        top: 8px;
        right: 8px;
        gap: 5px;
    }
    
    .related-products-grid .product-action-btn {
        width: 28px;
        height: 28px;
    }
    
    .related-products-grid .product-action-btn svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    /* Estilos removidos para restaurar cards da página principal ao estado original */
}

/* ============================================
   DETALHE DO PRODUTO - DESIGN MINIMALISTA PREMIUM
   ============================================ */

.product-detail {
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.product-page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.product-breadcrumb {
    margin-bottom: 4rem;
    font-size: 0.75rem;
    color: #999;
    padding: 2rem 2rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
}

.product-breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
    color: #000;
}

.product-breadcrumb span {
    color: #000;
    font-weight: 400;
}

.product-main-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 0 2rem 8rem;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 2px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Galeria de Imagens - Minimalista */
.product-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 4rem;
}

.product-main-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-discount-badge,
.product-status-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.75rem;
    color: #000;
    background-color: #fff;
    z-index: 10;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #000;
}

.product-status-badge.promoção,
.product-status-badge.promocao {
    top: 4rem;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.product-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
    background-color: #fafafa;
}

.product-thumb:hover {
    border-color: #000;
}

.product-thumb.active {
    border-color: #000;
}

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

/* Informações do Produto - Minimalista */
.product-info-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 0;
}

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

.product-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #000;
    width: fit-content;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #000;
    background: transparent;
}

.product-badge.discount {
    border: none;
    border-radius: 50px;
    background: #8b5cf6;
    color: #ffffff;
    font-weight: 300;
}

.product-badge.promoção,
.product-badge.promocao {
    border-color: #000;
    color: #000;
}

.product-badge.novo {
    border-color: #000;
    color: #000;
}

.product-category-tag {
    display: inline-block;
    padding: 0;
    background-color: transparent;
    color: #666;
    font-size: 0.75rem;
    font-weight: 400;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.5px;
}

.product-rating-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.stars-rating {
    display: flex;
    gap: 2px;
    color: #000;
}

.stars-rating svg {
    width: 16px;
    height: 16px;
}

.rating-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.product-price-section {
    padding: 2.5rem;
    border: 3px solid rgba(246, 171, 69, 0.3);
    background: linear-gradient(135deg, rgba(246, 171, 69, 0.12) 0%, rgba(251, 234, 209, 0.25) 100%);
    border-radius: 20px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(246, 171, 69, 0.15);
}

.product-price-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 171, 69, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.discount-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #8b5cf6;
    color: #fff;
    border-radius: 50px;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.discount-badge-large svg {
    width: 20px;
    height: 20px;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    line-height: 1;
}

.currency-symbol {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.25rem;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.price-cents {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.old-price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.old-price-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
}

.old-price {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    position: relative;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #999;
    transform: translateY(-50%);
}

.savings-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.15) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #16a34a;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.savings-info svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #16a34a;
}

.savings-info strong {
    font-weight: 700;
    font-size: 1.05rem;
}

.installment-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid rgba(246, 171, 69, 0.3);
    border-radius: 12px;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.installment-info svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-orange);
}

.installment-info strong {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.05rem;
}

.price-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(246, 171, 69, 0.2);
    color: var(--color-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.price-tagline svg {
    width: 16px;
    height: 16px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    border-top: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    background: #ffffff;
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(246, 171, 69, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(246, 171, 69, 0.1);
    transform: translateX(5px);
}

.highlight-item svg {
    color: var(--color-orange);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.product-actions-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.quantity-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quantity-label {
    font-weight: 400;
    color: #000;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #000;
    padding: 0;
    width: fit-content;
}

.qty-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #000;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 300;
    border-right: 1px solid #000;
}

.qty-button:last-of-type {
    border-right: none;
    border-left: 1px solid #000;
}

.qty-button:hover {
    background-color: #f5f5f5;
}

.quantity-input {
    border: none;
    width: 80px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    background: transparent;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-add-to-cart {
    flex: 1;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-brown) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(246, 171, 69, 0.3);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(246, 171, 69, 0.4);
    background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-orange) 100%);
}

.btn-favorite {
    width: 56px;
    height: 56px;
    border: 2px solid var(--color-orange);
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-orange);
    box-shadow: 0 2px 8px rgba(246, 171, 69, 0.2);
}

.btn-favorite:hover {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-brown) 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(246, 171, 69, 0.3);
}

.product-shipping-calculator {
    padding: 2rem 0;
    background: transparent;
    border: none;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.shipping-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.shipping-title svg {
    color: #000;
    width: 18px;
    height: 18px;
}

.shipping-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cep-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
    color: #000;
}

.cep-input:focus {
    outline: none;
    border-color: #000;
}

.cep-input::placeholder {
    color: #999;
}

.btn-calculate-shipping {
    padding: 1rem 1.5rem;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-calculate-shipping:hover {
    background-color: #fff;
    color: #000;
}

.shipping-info-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    margin: 1rem 0 0 0;
    font-weight: 400;
}

.shipping-info-text svg {
    color: #000;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0 0;
    border-top: 2px solid #e5e5e5;
    font-size: 0.85rem;
}

.product-guarantee-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(246, 171, 69, 0.1) 0%, rgba(251, 234, 209, 0.2) 100%);
    border: 2px solid rgba(246, 171, 69, 0.2);
    border-radius: 12px;
    color: var(--color-gray-dark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    background: linear-gradient(135deg, rgba(246, 171, 69, 0.15) 0%, rgba(251, 234, 209, 0.3) 100%);
    border-color: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 171, 69, 0.2);
}

.guarantee-badge svg {
    color: var(--color-orange);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.meta-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(246, 171, 69, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(246, 171, 69, 0.08);
}

.meta-label {
    color: var(--color-gray);
    font-weight: 500;
    min-width: 140px;
    letter-spacing: 0.3px;
}

.meta-value {
    color: var(--color-gray-dark);
    font-weight: 500;
}

.meta-value.in-stock {
    color: #22c55e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-value.in-stock::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
}

/* Seção de Detalhes - Melhorado */
.product-details-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6rem 2rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

.details-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-tab {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: inherit;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px 8px 0 0;
}

.detail-tab:hover {
    color: var(--color-orange);
    background: rgba(246, 171, 69, 0.05);
}

.detail-tab.active {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
    background: rgba(246, 171, 69, 0.1);
    font-weight: 600;
}

.details-content {
    min-height: 400px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.detail-panel.active {
    display: block;
}

.detail-panel h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.detail-panel h4 {
    font-size: 1.1rem;
    color: #000;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.detail-panel p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.reviews-summary {
    background: linear-gradient(135deg, rgba(246, 171, 69, 0.1) 0%, rgba(251, 234, 209, 0.2) 100%);
    padding: 3rem 2rem;
    border: 2px solid rgba(246, 171, 69, 0.2);
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stars-display {
    font-size: 1.5rem;
    color: var(--color-orange);
    letter-spacing: 3px;
    margin: 0.5rem 0;
}

.reviews-count-text {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Estilos para avaliações */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    border-color: var(--color-orange);
    box-shadow: 0 4px 16px rgba(246, 171, 69, 0.15);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-brown) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author-name {
    color: var(--color-gray-dark);
    font-size: 1rem;
    font-weight: 600;
}

.review-verified {
    color: var(--color-orange);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-rating-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.review-stars {
    color: var(--color-orange);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-date {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.review-comment {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.review-helpful-btn {
    background: none;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--color-gray);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.review-helpful-btn:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    background: rgba(246, 171, 69, 0.05);
}

.review-helpful-btn svg {
    width: 16px;
    height: 16px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specs-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.specs-table td {
    padding: 1rem 0;
    color: #000;
    font-weight: 300;
}

.specs-table td:first-child {
    width: 40%;
    color: #666;
    font-weight: 400;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.product-gallery-main {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    background-color: var(--color-gray-light);
}

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

.product-badge-large {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-white);
    z-index: 10;
}

.product-badge-large.promoção,
.product-badge-large.promocao {
    background-color: var(--color-purple-pink);
}

.product-badge-large.discount {
    background-color: #8b5cf6;
    top: 4.5rem;
}

.product-gallery-thumbs {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-xs) 0;
}

.product-gallery-thumb {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s;
    flex-shrink: 0;
    background-color: var(--color-gray-light);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--color-orange);
}

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

/* ============================================
   NOVO LAYOUT DE PRODUTO (ESTILO DA IMAGEM)
   ============================================ */

.product-gallery-new {
    display: flex;
    gap: var(--spacing-md);
    align-items: start;
}

.product-gallery-thumbs-vertical {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    max-height: 600px;
    overflow-y: auto;
    padding-right: var(--spacing-xs);
}

.product-gallery-thumb-vertical {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
    background-color: var(--color-gray-light);
}

.product-gallery-thumb-vertical:hover,
.product-gallery-thumb-vertical.active {
    border-color: var(--color-orange);
}

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

.product-gallery-main-new {
    position: relative;
    width: 600px;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--color-gray-light);
}

.product-gallery-main-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge-new {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-white);
    z-index: 10;
}

.discount-badge {
    background-color: #8b5cf6;
    top: var(--spacing-sm);
    border-radius: 50px;
    font-weight: 300;
}

.novo-badge {
    background-color: var(--color-purple-pink);
    top: 4rem;
}

.product-detail-info-new {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 600px;
}

.product-badges-top {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.badge-discount-top {
    background-color: #8b5cf6;
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 300;
}

.badge-novo-top {
    background-color: var(--color-purple-pink);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-brand {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.product-title-new {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.product-sales-indicator {
    margin-bottom: var(--spacing-sm);
}

.sales-count {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.product-price-section-new {
    margin-bottom: var(--spacing-sm);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.price-current-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
}

.price-old-new {
    font-size: 1.5rem;
    color: var(--color-gray);
    text-decoration: line-through;
}

.product-shipping-info-new {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--color-beige);
    border-bottom: 1px solid var(--color-beige);
}

.shipping-estimate,
.discount-code,
.free-shipping-info {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.free-shipping-info svg {
    color: var(--color-orange);
    flex-shrink: 0;
}

.discount-code strong {
    color: var(--color-orange);
    font-weight: 600;
}

.product-viewers {
    margin-bottom: var(--spacing-sm);
}

.viewers-count {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-style: italic;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--color-beige);
    border-bottom: 1px solid var(--color-beige);
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.option-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-xs);
}

.option-selected {
    color: var(--color-orange);
    font-weight: 400;
}

.color-swatches {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.color-swatch:hover,
.color-swatch.active {
    border-color: var(--color-orange);
    transform: scale(1.1);
}

.compare-colors-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    color: var(--color-gray);
    text-decoration: none;
    margin-top: var(--spacing-xs);
}

.compare-colors-link:hover {
    color: var(--color-orange);
}

.model-selector {
    display: flex;
    gap: var(--spacing-xs);
}

.model-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-beige);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-dark);
    transition: all 0.3s;
    font-family: inherit;
}

.model-btn:hover {
    border-color: var(--color-orange);
}

.model-btn.active {
    border-color: var(--color-orange);
    background-color: rgba(246, 171, 69, 0.1);
    color: var(--color-orange);
}

.product-actions-links {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.action-link:hover {
    color: var(--color-orange);
}

.quantity-selector-new {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.quantity-selector-new label {
    font-weight: 600;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.quantity-controls-new {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    border: 2px solid var(--color-beige);
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.qty-btn-new {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-brown);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.qty-btn-new:hover {
    background-color: var(--color-beige);
}

.quantity-controls-new input {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.product-actions-new {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.btn-add-cart {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.btn-favorite-new {
    width: 56px;
    height: 56px;
    border: 2px solid var(--color-beige);
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--color-gray);
}

.btn-favorite-new:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    background-color: rgba(246, 171, 69, 0.05);
}

.product-details-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--color-beige);
    border-bottom: 1px solid var(--color-beige);
    font-size: 0.9rem;
}

.detail-row {
    display: flex;
    gap: var(--spacing-sm);
}

.detail-label {
    color: var(--color-gray);
    font-weight: 500;
    min-width: 100px;
}

.detail-value {
    color: var(--color-gray-dark);
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--color-gray);
}

.secure-checkout svg {
    color: var(--color-orange);
}

.collapsible-sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.collapsible-item {
    border: 1px solid var(--color-beige);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.collapsible-btn {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    transition: background-color 0.3s;
    font-family: inherit;
}

.collapsible-btn:hover {
    background-color: var(--color-beige);
}

.collapsible-btn svg {
    transition: transform 0.3s;
    color: var(--color-gray);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--spacing-md);
}

.collapsible-item.active .collapsible-content {
    padding: var(--spacing-md);
    max-height: 500px;
}

.collapsible-content p {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin: 0;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.product-header {
    border-bottom: 2px solid var(--color-beige);
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.product-category {
    display: inline-block;
    color: var(--color-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.product-detail-info h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.stars {
    color: var(--color-orange);
    font-size: 1.1rem;
}

.rating-text {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.product-price-section {
    padding: var(--spacing-lg) 0;
    border-bottom: 2px solid var(--color-beige);
    margin-bottom: var(--spacing-sm);
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.price-current {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-orange);
    letter-spacing: -1px;
}

.price-old {
    font-size: 1.5rem;
    color: var(--color-gray);
    text-decoration: line-through;
}

.price-discount {
    color: var(--color-brown);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-bottom: 2px solid var(--color-beige);
    margin-bottom: var(--spacing-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-dark);
    font-size: 1rem;
    padding: var(--spacing-xs) 0;
}

.feature-item svg {
    color: var(--color-orange);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
}

.quantity-selector-large {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.quantity-selector-large label {
    font-weight: 600;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    border: 2px solid var(--color-beige);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    width: fit-content;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-brown);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: var(--color-beige);
}

.quantity-controls input {
    border: none;
    width: 80px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-large {
    padding: 1.3rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.product-shipping-info {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(246, 171, 69, 0.05) 0%, rgba(251, 234, 209, 0.3) 100%);
    border: 2px solid var(--color-beige);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-md);
}

.product-shipping-info h4 {
    color: var(--color-brown);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.shipping-calculator {
    margin-bottom: var(--spacing-sm);
}

.cep-input-wrapper {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.cep-input-wrapper input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-beige);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.cep-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(246, 171, 69, 0.1);
}

.cep-input-wrapper .btn {
    padding: 0.875rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cep-input-wrapper .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.shipping-results {
    margin-top: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.shipping-results-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    background-color: transparent;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 1.5rem;
}

.shipping-results-header svg {
    color: #000;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.shipping-results-header div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shipping-results-header strong {
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
}

.shipping-region {
    color: #666;
    font-size: 0.75rem;
    font-weight: 300;
}

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

.shipping-option-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shipping-option-card:hover {
    border-color: #000;
}

.shipping-option-card.selected {
    border-color: #000;
    background-color: #fff;
}

.shipping-option-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.shipping-option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    flex-shrink: 0;
}

.shipping-option-icon.standard {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.shipping-option-icon.express {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.shipping-option-icon.free {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.shipping-option-info {
    flex: 1;
    text-align: left;
}

.shipping-option-info h5 {
    margin: 0 0 0.25rem 0;
    color: var(--color-gray-dark);
    font-size: 1rem;
    font-weight: 600;
}

.shipping-option-info p {
    margin: 0;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.shipping-option-price {
    text-align: right;
    margin-right: var(--spacing-md);
}

.shipping-option-price strong {
    color: #000;
    font-size: 1.1rem;
    font-weight: 300;
}

.shipping-option-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.shipping-option-card.selected .shipping-option-check {
    opacity: 1;
}

.shipping-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    background-color: rgba(246, 171, 69, 0.1);
    border-radius: 12px;
    color: var(--color-orange);
}

.shipping-note {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.shipping-note svg {
    color: var(--color-orange);
    flex-shrink: 0;
}

/* ============================================
   TABS DE INFORMAÇÕES DO PRODUTO
   ============================================ */

.product-info-tabs {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-gray-light);
}

.info-tabs-nav {
    display: flex;
    gap: var(--spacing-sm);
    border-bottom: 2px solid var(--color-beige);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.info-tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    font-family: inherit;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.info-tab-btn:hover {
    color: var(--color-orange);
}

.info-tab-btn.active {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}

.info-tabs-content {
    min-height: 300px;
}

.info-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.info-tab-panel.active {
    display: block;
}

.info-tab-panel h3 {
    font-size: 2rem;
    color: var(--color-brown);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.info-tab-panel h4 {
    font-size: 1.4rem;
    color: var(--color-gray-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.info-tab-panel p {
    color: var(--color-gray-dark);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 300;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-md);
}

.specs-table tr {
    border-bottom: 1px solid var(--color-beige);
}

.specs-table td {
    padding: var(--spacing-sm) 0;
    color: var(--color-gray-dark);
}

.specs-table td:first-child {
    width: 40%;
    color: var(--color-gray);
}

.reviews-summary {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.rating-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-orange);
}

.stars-big {
    font-size: 1.5rem;
    color: var(--color-orange);
}

.reviews-count {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.review-item {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    color: var(--color-gray-dark);
}

.stars-small {
    color: var(--color-orange);
    font-size: 0.9rem;
}

.review-date {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.review-item p {
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin: 0;
}

.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.shipping-option-info {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.shipping-option-info h4 {
    color: var(--color-brown);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.shipping-option-info p {
    margin: var(--spacing-xs) 0;
    color: var(--color-gray-dark);
}

.shipping-policy {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
}

.shipping-policy ul {
    list-style: none;
    padding: 0;
}

.shipping-policy li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-gray-dark);
}

.shipping-policy li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px) translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(20px) translateY(-4px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    font-family: inherit;
}

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

.btn-primary:hover {
    background-color: var(--color-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-beige);
    color: var(--color-brown);
}

.btn-secondary:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #ffffff;
    color: #1f2937;
    margin-top: var(--spacing-xl);
    position: relative;
}

/* Footer Features Section */
.footer-features {
    background-color: #f9fafb;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Esconder cards do footer na página do carrinho */
body.cart-page .footer-features {
    display: none;
}

.footer-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-feature {
    text-align: center;
}

.footer-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b82f6;
    border-radius: 50%;
    color: #ffffff;
}

.footer-feature-icon svg {
    width: 32px;
    height: 32px;
}

.footer-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-xs);
    font-family: 'Poppins', sans-serif;
}

.footer-feature p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Footer Main Section */
.footer-main {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-sm);
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-sm);
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

/* Privacy Button */
.privacy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: var(--spacing-md);
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.privacy-btn:hover {
    background-color: #2563eb;
}

.privacy-btn svg {
    width: 16px;
    height: 16px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #6b7280;
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin: var(--spacing-sm) 0;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: #3b82f6;
}

.footer-contact-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #6b7280;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 50%;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 4px;
}

/* Newsletter Form */
.footer-newsletter {
    display: flex;
    gap: 8px;
    margin: var(--spacing-sm) 0;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.footer-newsletter input:focus {
    border-color: #3b82f6;
}

.footer-newsletter button {
    padding: 12px 24px;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.footer-newsletter button:hover {
    background-color: #111827;
}

.footer-newsletter-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: var(--spacing-xs);
    line-height: 1.4;
}

/* Footer Bottom Section */
.footer-bottom-section {
    background-color: #f9fafb;
    padding: var(--spacing-md) 0;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: flex-start;
    justify-content: space-between;
}

.footer-bottom-left p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 4px 0;
}

.footer-bottom-logos {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 280px;
}

.footer-bottom {
    background-color: #f9fafb;
    padding: var(--spacing-md) 0;
    border-top: 1px solid #e5e7eb;
    margin-top: var(--spacing-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* selos:start */
.selos-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.selos {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    min-width: 0;
}

.titulos {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1f2937;
}

.selos_item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.selos_item svg {
    height: auto;
    max-width: 56px;
}

.selos_item img {
    height: 40px;
    width: auto;
}

.selos_item.pagamento {
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.selos_item.pagamento svg {
    width: 39px;
    height: 26px;
    flex-shrink: 0;
}

/* Responsividade dos ícones de pagamento */
@media (max-width: 768px) {
    .selos_item.pagamento {
        gap: 6px;
    }
    
    .selos_item.pagamento svg {
        width: 32px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .selos_item.pagamento {
        gap: 4px;
    }
    
    .selos_item.pagamento svg {
        width: 28px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .selos_item.pagamento svg {
        width: 26px;
        height: 18px;
    }
}

.envio {
    width: 120px;
}

.selos-caption {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #6b7280;
    max-width: 320px;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .selos-footer {
        gap: 32px;
    }
    
    .selos {
        min-width: 200px;
        flex: 1 1 200px;
    }
}

@media screen and (max-width: 768px) {
    .selos {
        min-width: 160px;
    }

    .envio {
        width: 100px;
    }
    
    .selos-caption {
        max-width: 260px;
    }
}
/* selos:end */

/* ============================================
   NOTIFICAÇÕES DE COMPRA
   ============================================ */

.purchase-notifications {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
    pointer-events: none;
}

.purchase-notification {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    animation: slideInLeft 0.4s ease, fadeOut 0.4s ease 4.6s forwards;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.purchase-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #059669;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.purchase-notification-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.purchase-notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.purchase-notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.purchase-notification-text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #374151;
}

.purchase-notification-text strong {
    color: #111827;
    font-weight: 600;
}

.purchase-notification-product {
    color: #059669;
    font-weight: 500;
    margin-top: 0.25rem;
}

.purchase-notification-time {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.purchase-notification-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.purchase-notification-verified svg {
    width: 12px;
    height: 12px;
}

.purchase-notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0;
}

.purchase-notification:hover .purchase-notification-close {
    opacity: 1;
}

.purchase-notification-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.purchase-notification-close svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .purchase-notifications {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .purchase-notification {
        max-width: 100%;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-bottom-logos {
        justify-content: center;
    }
    
    .footer-newsletter {
        flex-direction: column;
    }
    
    .footer-newsletter button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-features {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-main {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .footer-feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .footer-feature h3 {
        font-size: 1.1rem;
    }
    
    .footer-feature p {
        font-size: 0.85rem;
    }
    
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 16px;
    }
}

/* ============================================
   PRODUTOS RELACIONADOS - MELHORADO
   ============================================ */

.related-products {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e5e5e5;
}

.related-products .container {
    max-width: 1600px;
    margin: 0 auto;
}

.related-products .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 2.5rem;
    text-align: left;
    letter-spacing: -0.5px;
    text-transform: none;
    position: relative;
    padding-bottom: 1rem;
}

.related-products .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-brown));
    border-radius: 2px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Removido - usando os mesmos estilos dos cards da página principal */

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .top-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar-content {
        flex-wrap: wrap;
    }
    
    .top-nav {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    
    .top-logo {
        order: 2;
        width: 100%;
    }
    
    .top-icons {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .logo-img {
        height: 100px;
        max-width: 350px;
    }
    
    .banner-image {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .product-main-container {
        grid-template-columns: 1fr;
        padding: 0 1rem 4rem;
        gap: 2rem;
    }
    
    .product-gallery-container {
        padding-right: 0;
    }
    
    .product-breadcrumb {
        padding: 1.5rem 1rem 0;
        margin-bottom: 2rem;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.8rem;
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: row;
    }
    
    .btn-favorite {
        width: 60px;
    }
    
    .info-tabs-nav {
        flex-direction: column;
        border-bottom: none;
    }
    
    .info-tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: 2px solid var(--color-beige);
        border-left: 3px solid transparent;
    }
    
    .info-tab-btn.active {
        border-left-color: var(--color-orange);
        border-bottom-color: var(--color-beige);
    }
    
    .shipping-info-grid {
        grid-template-columns: 1fr;
    }
    
    .cep-input-wrapper {
        flex-direction: column;
    }
    
    .cep-input-wrapper .btn {
        width: 100%;
        justify-content: center;
    }
    
    .shipping-option-header {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .shipping-option-price {
        margin-right: 0;
        width: 100%;
        text-align: left;
        margin-top: var(--spacing-xs);
    }
    
    .shipping-option-check {
        position: absolute;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .shipping-option-card {
        position: relative;
    }
}

@media (max-width: 768px) {
    .product-page-wrapper {
        padding: 0 var(--spacing-sm);
    }
    
    .product-main-container {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .product-name {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
    
    .old-price {
        font-size: 1.4rem;
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-favorite {
        width: 100%;
        height: 56px;
    }
    
    .product-shipping-calculator {
        padding: var(--spacing-sm);
    }
    
    .shipping-input-group {
        flex-direction: column;
    }
    
    .btn-calculate-shipping {
        width: 100%;
        justify-content: center;
    }
    
    .details-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .detail-tab {
        white-space: nowrap;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .product-details-section {
        padding: 4rem 1rem;
    }
    
    .related-products {
        padding: 4rem 1rem;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .product-guarantee-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .guarantee-badge {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .review-rating-date {
        align-items: flex-start;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .banner-image {
        height: 250px;
    }
    
    .product-page-wrapper {
        padding: 0 var(--spacing-xs);
    }
    
    .product-breadcrumb {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-xs) 0;
    }
    
    .product-main-container {
        grid-template-columns: 1fr;
        padding: var(--spacing-sm);
        gap: var(--spacing-md);
        border-radius: var(--border-radius);
    }
    
    .product-gallery-container {
        order: 1;
        gap: var(--spacing-sm);
    }
    
    .product-info-container {
        order: 2;
        gap: var(--spacing-md);
    }
    
    .product-main-image-wrapper {
        aspect-ratio: 1;
        border-radius: var(--border-radius);
    }
    
    .product-discount-badge,
    .product-status-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        top: var(--spacing-xs);
        left: var(--spacing-xs);
    }
    
    .product-status-badge.promoção,
    .product-status-badge.promocao {
        top: 3.5rem;
    }
    
    .product-thumbnails {
        justify-content: flex-start;
        gap: var(--spacing-xs);
        padding: var(--spacing-xs) 0;
    }
    
    .product-thumb {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }
    
    .product-header-section {
        gap: var(--spacing-xs);
    }
    
    .product-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .product-category-tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .product-name {
        font-size: 1.5rem;
        line-height: 1.3;
        margin: var(--spacing-xs) 0;
    }
    
    .product-rating-section {
        gap: var(--spacing-xs);
        margin-top: 0;
    }
    
    .stars-rating {
        gap: 1px;
    }
    
    .stars-rating svg {
        width: 16px;
        height: 16px;
    }
    
    .rating-text {
        font-size: 0.85rem;
    }
    
    .product-price-section {
        padding: var(--spacing-sm) 0;
    }
    
    .price-container {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .currency-symbol {
        font-size: 1.2rem;
    }
    
    .price-cents {
        font-size: 1.5rem;
    }
    
    .old-price {
        font-size: 1.1rem;
    }
    
    .product-price-section {
        padding: 1.5rem;
    }
    
    .discount-badge-large {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .savings-info,
    .installment-info {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .savings-info {
        font-size: 0.9rem;
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm) 0;
    }
    
    .highlight-item {
        font-size: 0.9rem;
        gap: var(--spacing-xs);
    }
    
    .highlight-item svg {
        width: 18px;
        height: 18px;
    }
    
    .product-actions-section {
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) 0;
    }
    
    .quantity-section {
        gap: var(--spacing-xs);
    }
    
    .quantity-label {
        font-size: 0.9rem;
    }
    
    .quantity-control {
        padding: 0.4rem;
    }
    
    .qty-button {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    
    .quantity-input {
        width: 60px;
        font-size: 1.1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .btn-add-to-cart {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-add-to-cart svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-favorite {
        width: 100%;
        height: 50px;
    }
    
    .btn-favorite svg {
        width: 20px;
        height: 20px;
    }
    
    .product-shipping-calculator {
        padding: var(--spacing-sm);
        border-radius: var(--border-radius);
    }
    
    .shipping-title {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .shipping-title svg {
        width: 18px;
        height: 18px;
    }
    
    .shipping-input-group {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .cep-input {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-calculate-shipping {
        width: 100%;
        padding: 0.75rem 1rem;
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .shipping-info-text {
        font-size: 0.85rem;
        margin-top: var(--spacing-xs);
    }
    
    .product-meta-info {
        padding: var(--spacing-sm) 0;
        gap: var(--spacing-xs);
        font-size: 0.85rem;
    }
    
    .meta-label {
        min-width: 100px;
        font-size: 0.85rem;
    }
    
    .meta-value {
        font-size: 0.85rem;
    }
    
    .product-details-section {
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: var(--border-radius);
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-page-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 var(--spacing-xs);
    }
    
    .product-main-container {
        width: 100%;
        max-width: 100%;
    }
    
    .product-gallery-container {
        width: 100%;
    }
    
    .product-main-image-wrapper {
        width: 100%;
    }
    
    .details-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        margin-bottom: var(--spacing-md);
        gap: var(--spacing-xs);
    }
    
    .detail-tab {
        white-space: nowrap;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .details-content {
        min-height: 200px;
    }
    
    .detail-panel h3 {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .detail-panel h4 {
        font-size: 1.1rem;
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }
    
    .detail-panel p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-sm);
    }
    
    .features-list {
        padding-left: var(--spacing-md);
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: var(--spacing-xs) 0;
    }
    
    .specs-table {
        font-size: 0.9rem;
    }
    
    .specs-table td {
        padding: var(--spacing-xs) 0;
    }
    
    .reviews-summary {
        padding: var(--spacing-md);
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .stars-display {
        font-size: 1.2rem;
    }
    
    .reviews-count-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   NOVA PÁGINA DE PRODUTO - DESIGN PROFISSIONAL
   ============================================ */

.breadcrumb-product {
    background-color: #f8f8f8;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-product a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.breadcrumb-product a:hover {
    color: #000;
}

.breadcrumb-product span {
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-detail-page {
    padding: 3rem 0;
    background-color: #fff;
}

/* ============================================
   PÁGINA DE PRODUTO - ESTILO AMORACASA (IDÊNTICO)
   ============================================ */

/* Reset e Container Principal */
.amoracasa-product-page {
    background: #fff;
    padding: 0;
}

.amoracasa-product-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* COLUNA ESQUERDA */
.amoracasa-left-column {
    position: sticky;
    top: 100px;
    align-self: start;
}

.amoracasa-gallery {
    margin-bottom: 30px;
}

.amoracasa-main-image-wrapper {
    position: relative;
    margin-bottom: 15px;
    max-width: 100%;
    width: 100%;
}

.amoracasa-main-image {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1;
    background: #f5f5f5;
}

.amoracasa-main-image-wrapper video {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1;
    background: #f5f5f5;
}

.amoracasa-image-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.amoracasa-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.amoracasa-thumb {
    width: 60px;
    height: 60px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.amoracasa-thumb img,
.amoracasa-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amoracasa-thumb:hover,
.amoracasa-thumb.active {
    border-color: #000;
}

/* Descrição abaixo da galeria */
.amoracasa-description-section {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
}

.amoracasa-desc-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.amoracasa-desc-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.4;
}

.amoracasa-desc-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.amoracasa-desc-content ul {
    list-style: none;
    padding: 0;
}

.amoracasa-desc-content ul li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.amoracasa-desc-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* COLUNA DIREITA */
.amoracasa-right-column {
    padding-left: 20px;
}

/* Badges */
.amoracasa-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.amoracasa-badge-vendidos {
    background: #f5f5f5;
    color: #666;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.amoracasa-badge-promo {
    background: #7c3aed;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Título */
.amoracasa-product-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin-bottom: 16px;
}

/* Preço */
.amoracasa-price-section {
    margin-bottom: 16px;
}

.amoracasa-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.amoracasa-price-current {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.amoracasa-price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.amoracasa-discount-badge {
    background: #ef4444;
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.amoracasa-installments {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.amoracasa-installments strong {
    color: #111;
}

.amoracasa-payment-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.amoracasa-payment-link:hover {
    color: #111;
}

/* PIX Badge */
.amoracasa-pix-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    width: fit-content;
}

.amoracasa-pix-badge {
    background: transparent;
    color: #333;
    padding: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.amoracasa-pix-badge img {
    width: 20px;
    height: 20px;
}

.amoracasa-envio-badge {
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 16px;
}

/* Variações */
.amoracasa-variation {
    margin-bottom: 16px;
}

.amoracasa-var-label {
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
}

.amoracasa-var-label span {
    font-weight: 600;
}

.amoracasa-var-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.amoracasa-var-btn {
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s;
}

.amoracasa-var-btn:hover {
    border-color: #999;
}

.amoracasa-var-btn.active {
    border-color: #22c55e;
    color: #22c55e;
    background: #f0fdf4;
}

/* Barra de Estoque */
.amoracasa-stock-bar {
    margin-bottom: 16px;
    position: relative;
}

.amoracasa-stock-progress {
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.amoracasa-stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316, #ef4444);
    border-radius: 2px;
}

.amoracasa-stock-text {
    font-size: 13px;
    color: #666;
    text-align: center;
}

.amoracasa-stock-text strong {
    color: #ef4444;
}

/* Botão Comprar */
.amoracasa-add-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.amoracasa-add-cart-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Frete */
.amoracasa-shipping-section {
    margin-bottom: 20px;
}

.amoracasa-shipping-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-align: center;
}

.amoracasa-shipping-row {
    display: flex;
    gap: 10px;
}

.amoracasa-cep-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
}

.amoracasa-cep-input:focus {
    outline: none;
    border-color: #999;
}

.amoracasa-calc-btn {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #111;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.amoracasa-calc-btn:hover {
    background: #111;
    color: #fff;
}

/* Info Boxes */
.amoracasa-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.amoracasa-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.amoracasa-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amoracasa-info-icon.green {
    background: #dcfce7;
    color: #166534;
}

.amoracasa-info-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.amoracasa-info-text strong {
    font-weight: 600;
}

.amoracasa-info-text span {
    display: block;
    font-size: 12px;
    color: #666;
}

/* Formas de Pagamento */
.amoracasa-payment-section {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.amoracasa-payment-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.amoracasa-payment-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-icon {
    width: 40px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.pay-icon.visa { background-color: #1a1f71; }
.pay-icon.mastercard { background-color: #eb001b; }
.pay-icon.amex { background-color: #006fcf; }
.pay-icon.hipercard { background-color: #822124; }
.pay-icon.paypal { background-color: #003087; }
.pay-icon.pix { background-color: #32bcad; }
.pay-icon.boleto { background-color: #333; }

/* Accordions */
.amoracasa-accordions {
    border-top: 1px solid #e5e5e5;
}

.amoracasa-accordion {
    border-bottom: 1px solid #e5e5e5;
}

.amoracasa-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.amoracasa-accordion-header:hover {
    color: #666;
}

.amoracasa-accordion-header span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.amoracasa-accordion-icon {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    transition: transform 0.3s;
}

.amoracasa-accordion.active .amoracasa-accordion-icon {
    transform: rotate(45deg);
}

.amoracasa-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.amoracasa-accordion.active .amoracasa-accordion-content {
    max-height: 200px;
}

.amoracasa-accordion-content p {
    padding: 0 0 16px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Responsivo - Desktop e Tablet */
@media (max-width: 1200px) {
    .product-premium-container {
        gap: 2rem;
    }
    
    .product-price-current-amoracasa {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .product-premium-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery-premium {
        position: static;
    }
    
    .amoracasa-product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .amoracasa-left-column {
        position: static;
    }
    
    .amoracasa-right-column {
        padding-left: 0;
    }
    
    .product-thumbnails-premium {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .product-thumbnail-item {
        flex-shrink: 0;
    }
}

/* Responsivo - Tablet */
@media (max-width: 900px) {
    .product-premium-container {
        padding: 0 1rem;
    }
    
    .product-title-premium {
        font-size: 1.4rem;
    }
    
    .product-price-current-amoracasa {
        font-size: 1.4rem;
    }
    
    .amoracasa-pix-row {
        width: 100%;
    }
    
    .amoracasa-payment-icons {
        gap: 6px;
    }
    
    .amoracasa-payment-icons svg {
        width: 35px;
        height: 24px;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .product-premium-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-gallery-premium {
        position: static;
    }
    
    .product-main-image-premium {
        border-radius: 8px;
    }
    
    .product-thumbnails-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .product-thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    /* Reorganizar ordem no mobile: descrição depois da seção de compra */
    .amoracasa-product-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .amoracasa-left-column {
        position: static;
        display: contents;
    }
    
    .amoracasa-gallery {
        grid-row: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .amoracasa-right-column {
        grid-row: 2;
    }
    
    .amoracasa-description-section {
        grid-row: 3;
        border-top: 1px solid #e5e5e5;
        padding-top: 20px;
        margin-top: 20px;
        width: 100%;
    }
    
    /* Centralizar imagens no mobile */
    .amoracasa-main-image-wrapper {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .amoracasa-main-image {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        display: block;
        aspect-ratio: 1;
    }
    
    .amoracasa-thumbnails {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
    }
    
    .product-title-premium {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .product-price-section-amoracasa {
        margin-bottom: 14px;
    }
    
    .product-price-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .product-price-current-amoracasa {
        font-size: 1.5rem;
    }
    
    .product-price-old-amoracasa {
        font-size: 0.85rem;
    }
    
    .product-discount-badge-amoracasa {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .product-installments-amoracasa {
        font-size: 0.8rem;
    }
    
    .amoracasa-pix-row {
        width: 100%;
        padding: 8px 12px;
        margin-bottom: 16px;
    }
    
    .amoracasa-pix-badge {
        font-size: 13px;
    }
    
    .amoracasa-pix-badge img {
        width: 18px;
        height: 18px;
    }
    
    .amoracasa-envio-badge {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .amoracasa-variation {
        margin-bottom: 14px;
    }
    
    .amoracasa-var-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .amoracasa-var-options {
        gap: 6px;
    }
    
    .amoracasa-var-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .variation-btn-amoracasa {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .color-option-amoracasa {
        width: 45px;
        height: 45px;
    }
    
    .amoracasa-stock-bar {
        margin-bottom: 14px;
    }
    
    .amoracasa-stock-text {
        font-size: 12px;
    }
    
    .btn-add-cart-amoracasa {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .amoracasa-shipping-section {
        margin-bottom: 16px;
    }
    
    .amoracasa-shipping-title {
        font-size: 13px;
    }
    
    .amoracasa-shipping-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .amoracasa-cep-input {
        width: 100%;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .amoracasa-calc-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .amoracasa-info-boxes {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .amoracasa-info-box {
        padding: 10px 14px;
    }
    
    .amoracasa-info-icon {
        width: 32px;
        height: 32px;
    }
    
    .amoracasa-info-text {
        font-size: 12px;
    }
    
    .amoracasa-payment-section {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .amoracasa-payment-title {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .amoracasa-payment-icons {
        gap: 6px;
    }
    
    .amoracasa-payment-icons svg {
        width: 32px;
        height: 22px;
    }
    
    .amoracasa-accordion-header {
        padding: 14px 0;
    }
    
    .amoracasa-accordion-header span {
        font-size: 13px;
    }
    
    .amoracasa-accordion-content p {
        font-size: 12px;
        padding: 0 0 14px 0;
    }
    
    .gallery-badge {
        bottom: 60px;
        left: 8px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .product-badges-amoracasa {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .badge-amoracasa {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
}

/* Responsivo - Mobile Pequeno */
@media (max-width: 480px) {
    .product-premium-container {
        padding: 0 0.75rem;
        gap: 1.25rem;
    }
    
    .product-title-premium {
        font-size: 1.2rem;
    }
    
    .product-price-current-amoracasa {
        font-size: 1.35rem;
    }
    
    .product-price-old-amoracasa {
        font-size: 0.8rem;
    }
    
    .product-thumbnails-premium {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-thumbnail-item {
        width: 55px;
        height: 55px;
    }
    
    /* Garantir centralização das imagens */
    .amoracasa-gallery {
        align-items: center;
    }
    
    .amoracasa-main-image-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .amoracasa-main-image {
        width: 100%;
        max-width: 650px;
        aspect-ratio: 1;
    }
    
    .amoracasa-thumbnails {
        justify-content: center;
    }
    
    .amoracasa-description-section {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .amoracasa-pix-row {
        padding: 6px 10px;
        gap: 8px;
    }
    
    .amoracasa-pix-badge {
        font-size: 12px;
        gap: 4px;
    }
    
    .amoracasa-pix-badge img {
        width: 16px;
        height: 16px;
    }
    
    .amoracasa-envio-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .amoracasa-var-btn {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .variation-btn-amoracasa {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    
    .color-option-amoracasa {
        width: 40px;
        height: 40px;
    }
    
    .btn-add-cart-amoracasa {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .amoracasa-cep-input {
        padding: 9px 12px;
        font-size: 12px;
    }
    
    .amoracasa-calc-btn {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .amoracasa-info-box {
        padding: 8px 12px;
    }
    
    .amoracasa-info-icon {
        width: 28px;
        height: 28px;
    }
    
    .amoracasa-info-text {
        font-size: 11px;
    }
    
    .amoracasa-payment-icons {
        gap: 4px;
    }
    
    .amoracasa-payment-icons svg {
        width: 28px;
        height: 20px;
    }
    
    .amoracasa-accordion-header {
        padding: 12px 0;
    }
    
    .amoracasa-accordion-header span {
        font-size: 12px;
        gap: 8px;
    }
    
    .amoracasa-accordion-icon {
        font-size: 18px;
    }
    
    .amoracasa-accordion-content p {
        font-size: 11px;
        padding: 0 0 12px 0;
    }
    
    .gallery-badge {
        bottom: 50px;
        left: 6px;
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .product-badges-amoracasa {
        gap: 4px;
    }
    
    .badge-amoracasa {
        padding: 2px 6px;
        font-size: 0.6rem;
    }
}

/* Responsivo - Mobile Extra Pequeno */
@media (max-width: 360px) {
    .product-premium-container {
        padding: 0 0.5rem;
    }
    
    .product-title-premium {
        font-size: 1.1rem;
    }
    
    .product-price-current-amoracasa {
        font-size: 1.25rem;
    }
    
    .product-thumbnail-item {
        width: 50px;
        height: 50px;
    }
    
    .amoracasa-pix-badge {
        font-size: 11px;
    }
    
    .amoracasa-envio-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .amoracasa-var-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .variation-btn-amoracasa {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .color-option-amoracasa {
        width: 35px;
        height: 35px;
    }
    
    .btn-add-cart-amoracasa {
        padding: 11px 16px;
        font-size: 0.85rem;
    }
    
    .amoracasa-payment-icons svg {
        width: 26px;
        height: 18px;
    }
}

/* Container antigo - manter para compatibilidade */
.product-premium-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Galeria de Imagens */
.product-gallery-premium {
    position: sticky;
    top: 120px;
    height: fit-content;
    align-self: flex-start;
}

.product-main-image-premium {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: zoom-in;
    transition: transform 0.3s;
    display: block;
}

.product-main-image-premium:hover {
    transform: scale(1.02);
}

/* Badge Black Friday na imagem */
.product-gallery-premium {
    position: relative;
}

.gallery-badge {
    position: absolute;
    bottom: 80px;
    left: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    z-index: 10;
}

.gallery-badge::before {
    content: "🔥";
}

.product-thumbnails-premium {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.product-thumbnail-item {
    width: 70px;
    height: 70px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
    background: #f5f5f5;
}

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

.product-thumbnail-item:hover {
    border-color: #333;
}

.product-thumbnail-item.active {
    border-color: #000;
    border-width: 2px;
}

/* Informações do Produto */
.product-info-premium {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Badges do Produto */
.product-badges-amoracasa {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.badge-amoracasa {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.badge-mais-vendido {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.badge-promocao {
    background: #7c3aed;
    color: #fff;
}

.product-header-premium {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 16px;
}

.product-category-premium {
    display: none;
}

.product-title-premium {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.product-rating-premium {
    display: none;
}

.product-stars-premium {
    display: flex;
    gap: 0.25rem;
    color: #000;
}

.product-stars-premium svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.product-rating-text-premium {
    color: #666;
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
}

.product-rating-text-premium:hover {
    color: #000;
}

/* Seção de Preço - Estilo Amoracasa */
.product-price-section-amoracasa {
    margin-bottom: 16px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.product-price-current-amoracasa {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
}

.product-price-old-amoracasa {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
}

.product-discount-badge-amoracasa {
    background: #ef4444;
    color: #fff;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-discount-badge-amoracasa::before {
    content: "↓";
}

.product-installments-amoracasa {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

.product-payment-options-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    margin-bottom: 16px;
}

.product-payment-options-link svg {
    width: 16px;
    height: 16px;
}

/* Badges PIX e Envio */
.product-special-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pix-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pix-badge svg {
    width: 14px;
    height: 14px;
}

.envio-badge {
    background: #e3f2fd;
    color: #1565c0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Seletores de Variação - Estilo Amoracasa */
.variation-section-amoracasa {
    margin-bottom: 16px;
}

.variation-label-amoracasa {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 10px;
}

.variation-label-amoracasa span {
    font-weight: 600;
}

.variation-options-amoracasa {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.variation-btn-amoracasa {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    color: #333;
}

.variation-btn-amoracasa:hover {
    border-color: #333;
}

.variation-btn-amoracasa.active {
    border-color: #111;
    background: #111;
    color: #fff;
}

/* Seletor de Cor com imagens */
.color-options-amoracasa {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-option-amoracasa {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.color-option-amoracasa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-option-amoracasa:hover {
    border-color: #333;
}

.color-option-amoracasa.active {
    border-color: #111;
}

/* Barra de Urgência/Estoque */
.stock-urgency-bar {
    margin-bottom: 16px;
}

.stock-progress {
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stock-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316 0%, #ef4444 100%);
    border-radius: 3px;
    transition: width 0.3s;
}

.stock-text {
    font-size: 0.85rem;
    color: #666;
}

.stock-text strong {
    color: #ef4444;
    font-weight: 600;
}

/* Botão Adicionar ao Carrinho - Estilo Amoracasa */
.add-cart-section-amoracasa {
    margin-bottom: 20px;
}

.btn-add-cart-amoracasa {
    width: 100%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart-amoracasa:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-add-cart-amoracasa svg {
    width: 20px;
    height: 20px;
}

/* Calculadora de Frete - Estilo Amoracasa */
.shipping-section-amoracasa {
    margin-bottom: 20px;
}

.shipping-title-amoracasa {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.shipping-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.shipping-input-amoracasa {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.shipping-input-amoracasa:focus {
    outline: none;
    border-color: #333;
}

.btn-calculate-amoracasa {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #333;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-calculate-amoracasa:hover {
    background: #333;
    color: #fff;
}

/* Info boxes de frete e devolução */
.shipping-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.info-box-amoracasa {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.info-box-amoracasa .icon {
    width: 32px;
    height: 32px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box-amoracasa .icon svg {
    width: 16px;
    height: 16px;
    color: #2e7d32;
}

.info-box-amoracasa .content {
    flex: 1;
}

.info-box-amoracasa .title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.info-box-amoracasa .subtitle {
    font-size: 0.8rem;
    color: #666;
}

/* Formas de Pagamento */
.payment-methods-amoracasa {
    margin-bottom: 20px;
}

.payment-methods-title-amoracasa {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
    text-align: center;
}

.payment-icons-amoracasa {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icons-amoracasa img {
    height: 24px;
    object-fit: contain;
}

/* Accordions - Informações adicionais */
.accordion-section-amoracasa {
    border-top: 1px solid #e5e5e5;
}

.accordion-item-amoracasa {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-header-amoracasa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-header-amoracasa:hover {
    color: #666;
}

.accordion-header-amoracasa span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.accordion-header-amoracasa svg {
    width: 18px;
    height: 18px;
    color: #666;
    transition: transform 0.3s;
}

.accordion-item-amoracasa.active .accordion-header-amoracasa svg:last-child {
    transform: rotate(180deg);
}

.accordion-content-amoracasa {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item-amoracasa.active .accordion-content-amoracasa {
    max-height: 500px;
}

.accordion-content-amoracasa p {
    padding: 0 0 16px 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Quantidade e Ações */
.product-actions-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.quantity-selector-premium {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quantity-label-premium {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-controls-premium {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    width: fit-content;
}

.quantity-btn-premium {
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    font-size: 1.5rem;
    transition: background-color 0.2s;
}

.quantity-btn-premium:hover {
    background-color: #f8f8f8;
}

.quantity-input-premium {
    width: 80px;
    text-align: center;
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: transparent;
}

.quantity-input-premium:focus {
    outline: none;
}

.action-buttons-premium {
    display: flex;
    gap: 1rem;
}

.btn-add-cart-premium {
    flex: 1;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-add-cart-premium:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-add-cart-premium svg {
    width: 20px;
    height: 20px;
}

.btn-favorite-premium {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-favorite-premium:hover {
    background-color: #000;
    color: #fff;
}

.btn-favorite-premium.active {
    background-color: #f6ab45;
    border-color: #f6ab45;
    color: #fff;
}

.btn-favorite-premium.active:hover {
    background-color: #e59a35;
    border-color: #e59a35;
}

.btn-favorite-premium svg {
    width: 20px;
    height: 20px;
}

/* Informações de Entrega */
.product-shipping-premium {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
}

.shipping-title-premium {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-title-premium svg {
    width: 18px;
    height: 18px;
}

.shipping-calculator-premium {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shipping-cep-input-premium {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid #000;
    font-size: 0.875rem;
    font-family: inherit;
    background: #fff;
}

.shipping-cep-input-premium:focus {
    outline: none;
}

.btn-calculate-premium {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.btn-calculate-premium:hover {
    background-color: #333;
}

.shipping-results-premium {
    margin-top: 1rem;
    display: none;
}

.shipping-results-premium.active {
    display: block;
}

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

.shipping-option-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.2s;
}

.shipping-option-premium:hover {
    border-color: #000;
}

.shipping-option-premium.selected {
    border-color: #000;
    background-color: #f8f8f8;
}

.shipping-option-info-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shipping-option-info-premium strong {
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
}

.shipping-option-info-premium span {
    color: #666;
    font-size: 0.75rem;
}

.shipping-option-price-premium {
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
}

.shipping-note-premium {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
    color: #666;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-note-premium svg {
    width: 16px;
    height: 16px;
    color: #000;
}

/* Benefícios */
.product-benefits-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.benefit-item-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #000;
}

.benefit-item-premium svg {
    width: 20px;
    height: 20px;
    color: #000;
    flex-shrink: 0;
}

/* Seção de Bundle */
.bundle-section {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.bundle-header {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}

.bundle-header::before,
.bundle-header::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 80px);
    height: 1px;
    background-color: #000;
}

.bundle-header::before {
    left: 0;
}

.bundle-header::after {
    right: 0;
}

.bundle-title {
    display: inline-block;
    background-color: #fff;
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    position: relative;
    z-index: 1;
}

.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bundle-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bundle-option:hover {
    background-color: #ebebeb;
}

.bundle-option.active {
    background-color: #e0e0e0;
    border-color: #000;
}

.bundle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bundle-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.bundle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    flex: 1;
}

.bundle-price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.bundle-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.bundle-original-price {
    font-size: 0.85rem;
    color: #666;
    text-decoration: line-through;
}

.bundle-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(5deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bundle-option::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.bundle-option.active::before {
    background-color: #000;
    box-shadow: inset 0 0 0 4px #fff;
}

/* Descrição e Detalhes */
.product-details-premium {
    margin-top: 4rem;
}

.details-tabs-premium {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2rem;
}

.detail-tab-premium {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-family: inherit;
}

.detail-tab-premium:hover {
    color: #000;
}

.detail-tab-premium.active {
    color: #000;
    border-bottom-color: #000;
}

.detail-content-premium {
    padding: 2rem 0;
}

.detail-panel-premium {
    display: none;
}

.detail-panel-premium.active {
    display: block;
}

.detail-panel-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.detail-panel-premium p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.detail-panel-premium ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.detail-panel-premium ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.detail-panel-premium ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
}

/* Estilos específicos para descrição detalhada do produto 14 */
.detail-panel-premium .description {
    margin-bottom: 3rem;
    text-align: left;
}

.detail-panel-premium .description h4 {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #000;
}

.detail-panel-premium .description p {
    line-height: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.detail-panel-premium .list-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.detail-panel-premium .info-item h6 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000;
}

.detail-panel-premium .info-item ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    line-height: 1.75rem;
}

.detail-panel-premium .info-item ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.detail-panel-premium .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.detail-panel-premium .content-text h6 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.2;
}

.detail-panel-premium .content-text p {
    line-height: 1.75rem;
    margin-bottom: 1rem;
    color: #666;
}

/* Responsivo para telas médias e grandes */
@media (min-width: 768px) {
    .detail-panel-premium .list-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-panel-premium .content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-panel-premium .content-text:first-child {
        padding-right: 2.5rem;
    }
    
    .detail-panel-premium .content-text:last-child {
        padding-left: 3rem;
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1024px) {
    .detail-panel-premium .content-text h6 {
        font-size: 42px;
    }
}

/* Trust Section */
.trust-section {
    background-color: #f8f8f8;
    padding: 3rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-badge svg {
    width: 40px;
    height: 40px;
    color: #000;
    flex-shrink: 0;
}

.trust-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-badge strong {
    color: #000;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badge span {
    color: #666;
    font-size: 0.75rem;
}

/* Produtos Relacionados */
.related-products-section {
    padding: 4rem 0;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.related-products-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.related-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.related-products-grid .product-card-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.related-products-grid .product-card {
    width: 100%;
    box-sizing: border-box;
}

/* Media queries seguindo o mesmo padrão da página principal */
@media (min-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .related-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .related-products-section {
        padding: 2rem 0;
    }
    
    .related-products-section .container {
        padding: 0 0.75rem;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }
    
    /* Aplicar os mesmos estilos de mobile dos cards da página principal */
    .related-products-grid .product-card-wrapper {
        height: auto !important;
        width: 100%;
    }
    
    .related-products-grid .product-card {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .related-products-grid .product-image-section {
        flex: 0 0 auto !important;
        width: 100% !important;
        padding-bottom: 75% !important; /* Reduzido de 100% para 75% - imagem menor */
        position: relative !important;
        height: 0 !important;
        max-height: none !important;
        min-height: 0 !important;
        background: #f8f9fa;
        border-radius: 12px 12px 0 0;
    }
    
    .related-products-grid .product-image-link {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .related-products-grid .product-image-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 10px;
        box-sizing: border-box;
    }
    
    .related-products-grid .product-image {
        object-fit: cover;
        border-radius: 8px;
        width: 100%;
        height: 100%;
    }
    
    .related-products-grid .product-info-section {
        padding: 12px;
        gap: 6px;
        flex: 1 1 auto !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        justify-content: flex-start;
    }
    
    .related-products-grid .product-name-link h3,
    .related-products-grid .product-name {
        font-size: 13px;
        min-height: auto;
        max-height: 40px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 1.4;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .related-products-grid .product-buy-btn {
        padding: 10px 14px;
        font-size: 12px;
        height: auto;
        min-height: 40px;
        max-height: none;
        margin: 0;
        margin-top: 10px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .related-products-grid .product-buy-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .related-products-grid .product-price {
        font-size: 17px;
        font-weight: 700;
    }
    
    .related-products-grid .product-price-old {
        font-size: 12px;
    }
    
    .related-products-grid .product-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .related-products-grid .product-quick-actions {
        top: 8px;
        right: 8px;
        gap: 5px;
    }
    
    .related-products-grid .product-action-btn {
        width: 28px;
        height: 28px;
    }
    
    .related-products-grid .product-action-btn svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .related-products-section {
        padding: 1.5rem 0;
    }
    
    .related-products-section .container {
        padding: 0 0.5rem;
    }
    
    .related-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }
    
    /* Estilos adicionais para mobile pequeno - mesmos estilos da página principal */
    .related-products-grid .product-card-wrapper {
        height: auto !important;
        width: 100%;
    }
    
    .related-products-grid .product-card {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .related-products-grid .product-image-section {
        flex: 0 0 auto !important;
        width: 100% !important;
        padding-bottom: 70% !important; /* Reduzido de 100% para 70% - imagem menor */
        position: relative !important;
        height: 0 !important;
        max-height: none !important;
        min-height: 0 !important;
        background: #f8f9fa;
        border-radius: 12px 12px 0 0;
    }
    
    .related-products-grid .product-image-link {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .related-products-grid .product-image-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 8px;
        box-sizing: border-box;
    }
    
    .related-products-grid .product-image {
        object-fit: cover;
        border-radius: 6px;
        width: 100%;
        height: 100%;
    }
    
    .related-products-grid .product-info-section {
        padding: 8px;
        gap: 4px;
        flex: 1 1 auto !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        min-height: 100px;
    }
    
    .related-products-grid .product-name-link h3,
    .related-products-grid .product-name {
        font-size: 10px;
        min-height: auto;
        max-height: 28px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 1.2;
        font-weight: 600;
        color: #1f2937;
        margin: 0 0 4px 0;
    }
    
    .related-products-grid .product-price-wrapper {
        margin: 2px 0;
    }
    
    .related-products-grid .product-price {
        font-size: 12px;
        font-weight: 700;
        color: #059669;
    }
    
    .related-products-grid .product-price-old {
        font-size: 9px;
        color: #6b7280;
    }
    
    .related-products-grid .product-buy-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 6px 10px !important;
        font-size: 10px !important;
        font-weight: 600;
        height: auto !important;
        min-height: 28px;
        margin-top: auto;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    .related-products-grid .product-badge {
        padding: 3px 8px;
        font-size: 9px;
        border-radius: 50px;
        top: 8px;
        left: 8px;
        color: #ffffff !important;
        background: #8b5cf6 !important;
        border: none !important;
    }
    
    .related-products-grid .product-action-btn {
        width: 28px;
        height: 28px;
    }
    
    .related-products-grid .product-action-btn svg {
        width: 11px;
        height: 11px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .product-premium-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery-premium {
        position: static;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 2rem 0;
    }
    
    .product-title-premium {
        font-size: 1.75rem;
    }
    
    .product-price-current-premium {
        font-size: 2rem;
    }
    
    .action-buttons-premium {
        flex-direction: column;
    }
    
    .product-benefits-premium {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .details-tabs-premium {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .detail-tab-premium {
        white-space: nowrap;
        padding: 1rem 1.5rem;
    }
}

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

/* ============================================
   NOVO ESTILO DE PRODUTO (BASEADO NA IMAGEM)
   ============================================ */

.product-price-section-new-style {
    margin-bottom: 2rem;
}

.product-price-display-new {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-price-current-red {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: -0.5px;
}

.product-price-old-gray {
    font-size: 1.25rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-info-box {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-box-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.info-box-item svg {
    color: #666;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box-item strong {
    color: #e74c3c;
    font-weight: 600;
}

.product-viewers-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.product-viewers-indicator svg {
    color: #666;
    flex-shrink: 0;
}

/* Formas de Pagamento */
.product-payment-methods {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.payment-methods-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.payment-methods-title svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.payment-methods-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: #f8f8f8;
    border-radius: 6px;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 6px;
    flex-shrink: 0;
}

.payment-method-icon svg {
    width: 24px;
    height: 24px;
    color: #000;
}

.payment-method-icon.pix-icon {
    background-color: #fff;
}

.payment-method-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.payment-method-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}

.payment-method-desc {
    font-size: 0.85rem;
    color: #666;
}

.payment-method-desc.pix-discount {
    color: #059669;
    font-weight: 600;
}

.payment-cards-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.payment-cards-icons svg {
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsividade - Formas de Pagamento */
@media (max-width: 768px) {
    .product-payment-methods {
        padding: 1rem;
    }
    
    .payment-method-item {
        padding: 0.75rem;
    }
    
    .payment-cards-icons {
        flex-wrap: wrap;
    }
    
    .payment-cards-icons svg {
        width: 28px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .product-payment-methods {
        padding: 0.875rem;
    }
    
    .payment-method-item {
        padding: 0.5rem;
    }
    
    .payment-method-name {
        font-size: 0.875rem;
    }
    
    .payment-method-desc {
        font-size: 0.8rem;
    }
    
    .payment-cards-icons svg {
        width: 26px;
        height: 16px;
    }
}

.product-options-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.option-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-label-new {
    font-size: 0.9rem;
    color: #333;
    font-weight: 400;
}

.option-selected-new {
    color: #e74c3c;
    font-weight: 500;
}

.color-selector-new {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.color-option-new {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    pointer-events: auto;
    z-index: 1;
}

.color-option-new.active {
    border-color: #e74c3c;
}

.color-option-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.color-name-tooltip {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
}

.color-option-new:hover .color-name-tooltip {
    opacity: 1;
}

.size-selector-new {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-btn-new {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    min-width: 50px;
}

.size-btn-new:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.size-btn-new.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.product-action-links-new {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.action-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.action-link-new:hover {
    color: #e74c3c;
}

.action-link-new svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .product-price-current-red {
        font-size: 1.75rem;
    }
    
    .product-price-old-gray {
        font-size: 1.1rem;
    }
    
    .product-info-box {
        padding: 1rem;
    }
    
    .info-box-item {
        font-size: 0.85rem;
    }
    
    .size-btn-new {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .product-action-links-new {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   AVALIAÇÕES MINIMALISTAS E PROFISSIONAIS
   ============================================ */

.reviews-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card-minimal {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.review-card-minimal:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-author-info-minimal {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.review-avatar-minimal {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f3f4f6;
}

.review-author-details-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.review-author-name-minimal {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.review-verified-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
}

.review-verified-minimal svg {
    width: 14px;
    height: 14px;
    color: #059669;
    flex-shrink: 0;
}

.review-rating-date-minimal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.review-stars-minimal {
    display: flex;
    gap: 0.15rem;
    align-items: center;
}

.review-stars-minimal svg {
    flex-shrink: 0;
}

.review-date-minimal {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

.review-comment-minimal {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

.review-form-container {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.review-form-container h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-rating-input svg {
    cursor: pointer;
    transition: all 0.2s;
}

.star-rating-input svg:hover {
    transform: scale(1.1);
}

.review-form-container input[type="text"],
.review-form-container textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.review-form-container input[type="text"]:focus,
.review-form-container textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.review-form-container textarea {
    resize: vertical;
    min-height: 100px;
}

.review-form-container button[type="submit"] {
    background: #1f2937;
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.review-form-container button[type="submit"]:hover {
    background: #111827;
}

.review-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

@media (max-width: 768px) {
    .review-card-minimal {
        padding: 1.25rem;
    }
    
    .review-header-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .review-rating-date-minimal {
        align-items: flex-start;
        width: 100%;
    }
    
    .review-author-name-minimal {
        font-size: 0.9rem;
    }
    
    .review-comment-minimal {
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVIDADE COMPLETA - TODAS AS PÁGINAS
   ============================================ */

/* Breakpoint: Tablets e abaixo (768px) */
@media (max-width: 768px) {
    /* Container geral */
    .container {
        padding: 0 1rem;
    }
    
    /* Top Bar - Mobile */
    .top-bar {
        padding: 0.75rem 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .top-nav {
        order: 1;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    .top-logo {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .top-icons {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 85px;
        max-width: 280px;
    }
    
    /* Banner */
    .banner-image {
        height: 250px;
    }
    
    .banner-image img {
        object-fit: cover;
    }
    
    /* Seções */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Categorias Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        border-radius: 12px;
    }
    
    .category-image {
        min-height: 300px;
    }
    
    .category-info h3 {
        font-size: 1.2rem;
    }
    
    /* Categorias Large (página categorias) */
    .categories-grid-large {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card-large {
        flex-direction: column;
        height: auto;
        min-height: 400px;
    }
    
    .category-image-large {
        width: 100%;
        height: 250px;
    }
    
    .category-info-large {
        padding: 1.5rem;
    }
    
    .category-info-large h2 {
        font-size: 1.5rem;
    }
    
    .category-info-large p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .categories-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Produtos Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-name {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .product-price-current {
        font-size: 1.3rem;
    }
    
    /* Ofertas Tabs */
    .offers-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
    }
    
    /* Página de Produto */
    .product-premium-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-gallery-premium {
        position: static;
    }
    
    .product-main-image-premium {
        width: 100%;
        aspect-ratio: 1;
    }
    
    .product-thumbnails-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .product-title-premium {
        font-size: 1.75rem;
    }
    
    .product-price-current-premium {
        font-size: 2rem;
    }
    
    .product-price-old-premium {
        font-size: 1.1rem;
    }
    
    .product-benefits-premium {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .benefit-item-premium {
        font-size: 0.85rem;
    }
    
    .bundle-section {
        margin: 1rem 0;
        padding: 1rem 0;
    }
    
    .bundle-header::before,
    .bundle-header::after {
        width: calc(50% - 60px);
    }
    
    .bundle-title {
        font-size: 0.85rem;
        padding: 0 0.75rem;
    }
    
    .bundle-option {
        padding: 0.875rem 1rem;
    }
    
    .bundle-option-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bundle-price-info {
        align-items: flex-start;
        width: 100%;
    }
    
    .bundle-price {
        font-size: 1rem;
    }
    
    .bundle-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
        top: -6px;
        right: -6px;
    }
    
    .action-buttons-premium {
        flex-direction: column;
    }
    
    .btn-add-cart-premium {
        width: 100%;
    }
    
    .btn-favorite-premium {
        width: 100%;
    }
    
    .product-shipping-premium {
        padding: 1rem;
    }
    
    .shipping-calculator-premium {
        flex-direction: column;
    }
    
    .btn-calculate-premium {
        width: 100%;
    }
    
    /* Trust Badges */
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    /* Produtos Relacionados */
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    /* Detalhes do Produto - Tabs */
    .details-tabs-premium {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .detail-tab-premium {
        white-space: nowrap;
        padding: 0.875rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .detail-content-premium {
        padding: 1.5rem 0;
    }
    
    .detail-panel-premium h3 {
        font-size: 1.25rem;
    }
    
    .detail-panel-premium p {
        font-size: 0.9rem;
    }
}

/* Breakpoint: Mobile pequeno (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Top Bar - Mobile pequeno */
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-nav {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .top-nav a {
        padding: 0.25rem 0.5rem;
    }
    
    .logo-img {
        height: 70px;
        max-width: 240px;
    }
    
    .icon-btn {
        padding: 0.4rem;
    }
    
    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Banner */
    .banner-image {
        height: 200px;
    }
    
    /* Seções */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Categorias Grid */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-image {
        min-height: 250px;
    }
    
    /* Produtos Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image-wrapper {
        height: 250px;
    }
    
    /* Ofertas Tabs */
    .offers-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    /* Página de Produto */
    .product-premium-container {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .product-title-premium {
        font-size: 1.5rem;
    }
    
    .product-price-current-premium {
        font-size: 1.75rem;
    }
    
    .product-thumbnails-premium {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quantity-controls-premium {
        width: 100%;
    }
    
    .quantity-input-premium {
        width: 100%;
    }
    
    /* Trust Badges */
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Produtos Relacionados */
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Info Box do Produto */
    .product-info-box {
        padding: 1rem;
    }
    
    .info-box-item {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .info-box-item svg {
        width: 18px;
        height: 18px;
    }
    
    /* Seleção de Tamanho */
    .size-selector-new {
        flex-wrap: wrap;
    }
    
    .size-btn-new {
        flex: 1;
        min-width: 60px;
        padding: 0.6rem 1rem;
    }
    
    /* Action Links */
    .product-action-links-new {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .action-link-new {
        font-size: 0.85rem;
    }
}

/* Breakpoint: Desktop grande (1200px+) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .related-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Breakpoint: Desktop médio (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Breakpoint: Tablet (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-premium-container {
        grid-template-columns: 1fr;
    }
    
    .product-gallery-premium {
        position: static;
    }
}

/* Ajustes gerais para melhor responsividade */
@media (max-width: 768px) {
    /* Garantir que imagens não ultrapassem o container */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Melhorar espaçamento em seções */
    .categories,
    .offers,
    .product-detail-page {
        padding: 2rem 0;
    }
    
    /* Ajustar padding em cards */
    .product-info,
    .category-info {
        padding: 1rem;
    }
    
    /* Melhorar legibilidade em textos */
    p, span, a {
        font-size: 0.9rem;
    }
    
    /* Ajustar botões */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Melhorar formulários */
    input, textarea, select {
        font-size: 16px; /* Evita zoom no iOS */
    }
}

/* Melhorias para touch devices */
@media (hover: none) and (pointer: coarse) {
    /* Aumentar área de toque */
    .icon-btn,
    .tab-btn,
    .size-btn-new,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remover hover effects em touch */
    .product-card:hover,
    .category-card:hover {
        transform: none;
    }
}

/* Orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .banner-image {
        height: 200px;
    }
    
    .product-premium-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

.header {
    position: fixed !important;
    transform: none !important;
    opacity: 1 !important;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f6ab45;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.category-detail {
    padding: 2rem 0;
}

/* ============================================
   ESTILOS PARA CARRINHO E CHECKOUT
   ============================================ */

.cart,
.checkout {
    padding: 1rem 0;
    padding-top: 1rem;
    min-height: 60vh;
    background: #f9fafb;
}

.cart .container {
    max-width: 1200px;
}

.cart .page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.cart-content,
.checkout-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin-top: 1rem;
}

.cart-items,
.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

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

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

.cart-item-name {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
}

.cart-item-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.01em;
}

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

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.25rem;
    background: #ffffff;
}

.cart-item-quantity button {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.cart-item-quantity button:hover {
    background: #f3f4f6;
    color: #111827;
}

.cart-item-quantity input {
    border: none;
    width: 50px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
    background: transparent;
}

.remove-item {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    border-radius: 4px;
    font-weight: 400;
}

.remove-item:hover {
    color: #dc2626;
    background: #fef2f2;
}

.cart-summary,
.checkout-summary {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
    color: #4b5563;
}

.summary-row span:first-child {
    color: #6b7280;
    font-weight: 400;
}

.summary-row span:last-child {
    color: #111827;
    font-weight: 500;
}

.coupon-section {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    background: transparent !important;
}

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

.coupon-input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #111827;
    background: #ffffff !important;
    transition: all 0.2s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
    background: #ffffff !important;
}

.coupon-input:active,
.coupon-input:focus-visible {
    background: #ffffff !important;
}

.coupon-input::placeholder {
    color: #9ca3af;
}

.coupon-btn {
    padding: 0.625rem 1.25rem;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.coupon-btn:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.coupon-btn:active {
    transform: translateY(0);
}

.coupon-message {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    background: transparent !important;
    padding: 0;
}

.coupon-message.success {
    color: #059669;
    background: transparent !important;
}

.coupon-message.error {
    color: #dc2626;
    background: transparent !important;
}

.summary-row.discount-row {
    color: #059669;
    background: transparent !important;
}

.summary-row.discount-row span:first-child {
    color: #6b7280;
    font-weight: 400;
}

.summary-row.discount-row span:last-child {
    color: #059669;
    font-weight: 600;
    background: transparent !important;
}

.checkout-summary .summary-row.discount-row {
    color: #059669;
}

.checkout-summary .summary-row.discount-row span:last-child {
    color: #059669;
    font-weight: 600;
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.75rem;
    padding-top: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.summary-row.total span:first-child {
    color: #111827;
    font-weight: 600;
}

.summary-row.total span:last-child {
    color: #111827;
    font-weight: 700;
    font-size: 1.25rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cart-empty h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cart-empty p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

/* Botões profissionais para o carrinho */
.cart-page .summary-card .btn-primary {
    background-color: #111827;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.cart-page .summary-card .btn-primary:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cart-page .summary-card .btn-secondary {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.cart-page .summary-card .btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

/* ============================================
   CHECKOUT STEPS
   ============================================ */

.checkout-page .breadcrumb {
    padding: 1rem 0 0.5rem 0;
    margin-top: 0;
}

.checkout .page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.step-item.active .step-number {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.step-item.completed .step-number {
    background: #059669;
    color: #ffffff;
    border-color: #059669;
}

.step-label {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.step-item.active .step-label {
    color: #111827;
    font-weight: 600;
}

.step-item.completed .step-label {
    color: #059669;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 1rem;
    max-width: 100px;
    transition: background 0.3s ease;
}

.step-line.completed {
    background: #059669;
}

.checkout-form-section {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.checkout-step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-step h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

.checkout-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #111827;
    background: #ffffff;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

.checkout-form input:valid:not(:placeholder-shown) {
    border-color: #d1d5db;
}

.checkout-form .form-error {
    display: block;
    color: #dc2626;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    font-weight: 400;
}

.checkout-form input[style*="border-color: rgb(5, 150, 105)"] {
    border-color: #059669 !important;
}

.checkout-form input[style*="border-color: rgb(220, 38, 38)"] {
    border-color: #dc2626 !important;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.checkout-actions .btn {
    flex: 1;
}

.checkout-actions .btn-primary {
    background-color: #111827;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.checkout-actions .btn-primary:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.checkout-actions .btn-secondary {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.checkout-actions .btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

.shipping-option:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.shipping-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.shipping-option input[type="radio"]:checked + .shipping-info {
    color: #111827;
}

.shipping-option:has(input[type="radio"]:checked) {
    border-color: #111827;
    background: #f9fafb;
}

.shipping-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.shipping-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.9375rem;
}

.shipping-time {
    color: #6b7280;
    font-size: 0.875rem;
}

.shipping-price {
    font-weight: 600;
    color: #111827;
    font-size: 0.9375rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

.payment-option:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #111827;
    background: #f9fafb;
}

.payment-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.payment-option:has(input[type="radio"]:checked) .payment-icon {
    color: #111827;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.9375rem;
}

.payment-desc {
    color: #6b7280;
    font-size: 0.8125rem;
}

.payment-form {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.payment-form h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.pix-info {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 1.5rem;
}

.payment-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.checkout-summary {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.checkout-summary .summary-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.checkout-summary .summary-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.summary-items {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: #4b5563;
}

.summary-item-name {
    flex: 1;
}

.summary-item-price {
    font-weight: 500;
    color: #111827;
}

/* Responsividade para Carrinho e Checkout */
@media (max-width: 768px) {
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-summary,
    .checkout-summary {
        position: static;
        order: -1;
    }
    
    .checkout-steps {
        padding: 1.5rem 0.5rem;
        overflow-x: auto;
    }
    
    .step-item {
        min-width: 80px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.8125rem;
    }
    
    .step-line {
        max-width: 40px;
        margin: 0 0.5rem;
    }
    
    .checkout-form-section {
        padding: 1.5rem;
    }
    
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .checkout-actions .btn {
        width: 100%;
    }
    
    .cart-item {
        flex-direction: column;
        padding: 1rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .cart-item-quantity {
        width: 100%;
        justify-content: space-between;
    }
    
    .remove-item {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        background: #fee2e2;
        border-radius: 6px;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .cart-item-name {
        font-size: 1rem;
    }
    
    .cart-item-price {
        font-size: 1.1rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .summary-card h3 {
        font-size: 1.1rem;
    }
    
    .summary-row {
        font-size: 0.9rem;
    }
    
    .summary-row.total {
        font-size: 1.1rem;
    }
}

/* Responsividade para Header e Navegação */
@media (max-width: 768px) {
    body.has-top-bar {
        padding-top: 120px;
    }
    
    body.has-header {
        padding-top: 100px;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
    }
    
    .nav {
        order: 3;
        width: 100%;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 1rem 0;
        border-top: 1px solid #e5e5e5;
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        width: 100%;
        border-radius: 6px;
    }
    
    .nav-menu a:hover {
        background: #f8f8f8;
    }
    
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.25rem;
    }
    
    .header-content {
        gap: 0.75rem;
    }
}

/* ============================================
   MODAL DE BUSCA
   ============================================ */

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.search-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5rem;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    z-index: 10001;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.search-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.search-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-close:hover {
    color: #000;
}

.search-modal-body {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

.search-input:focus {
    outline: none;
    border-color: #f6ab45;
    box-shadow: 0 0 0 3px rgba(246, 171, 69, 0.1);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    border-color: #f6ab45;
    box-shadow: 0 4px 12px rgba(246, 171, 69, 0.15);
    transform: translateY(-2px);
}

.search-result-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f8f8;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-result-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.search-result-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f6ab45;
}

.search-no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.search-no-results svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: #d1d5db;
}

/* Responsividade do Modal de Busca */
@media (max-width: 768px) {
    .search-modal.active {
        padding-top: 2rem;
    }
    
    .search-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .search-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .search-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .search-modal-body {
        padding: 1.5rem;
    }
    
    .search-result-item {
        flex-direction: column;
    }
    
    .search-result-image {
        width: 100%;
        height: 200px;
    }
}

/* Responsividade do Banner Hero */
@media (max-width: 768px) {
    .banner-hero {
        padding: 0;
        margin-top: 0;
        min-height: 600px;
    }
    
    .banner-hero-container {
        padding: 0 var(--spacing-md);
        padding-top: 120px; /* Mais espaço no mobile para o top-bar expandido */
    }
    
    .banner-hero-logo {
        margin-bottom: 1rem;
        padding-top: 0;
    }
    
    .banner-logo-img {
        height: 70px;
        max-width: 280px;
    }
    
    .banner-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .banner-hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .banner-hero-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .banner-hero-title {
        font-size: 2.5rem;
    }
    
    .banner-hero-subtitle {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .banner-hero-subtitle svg {
        width: 18px;
        height: 18px;
    }
    
    .banner-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 50px;
    }
    
    .banner-hero-btn svg {
        width: 14px;
        height: 14px;
    }

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

    .usp-card {
        text-align: center;
    }

    .video-highlight-wrapper {
        min-height: 360px;
    }

    .video-highlight-content {
        padding: var(--spacing-xl);
        max-width: none;
    }

    .video-highlight-content h2 {
        font-size: 2.1rem;
    }
}

/* ============================================
   BLACK FRIDAY PAGE
   ============================================ */

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 0.5rem 0;
    text-align: center;
    z-index: 201;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-text {
    margin: 0;
    color: #ffffff;
}

.black-friday-page {
    padding-top: 0; /* Removido para não cortar conteúdo */
}

.black-friday-page .announcement-bar {
    position: fixed;
    top: 0;
    z-index: 201;
}

.black-friday-page .top-bar {
    position: fixed;
    top: 1.5rem; /* Abaixo da announcement bar */
    z-index: 200;
}

.black-friday-hero {
    background-color: #000000;
    padding: 7rem 0 4rem 0; /* Espaço para header fixo */
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
}

.black-friday-main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.black-friday-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.black-friday-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2rem 0;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.black-friday-coupons-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.95;
}

.black-friday-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Coupons Section */
.black-friday-coupons {
    background-color: #000000;
    padding: 3rem 0;
    border-bottom: none;
    position: relative;
    z-index: 1;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coupon-card {
    background-color: #1f2937;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid #374151;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.coupon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-color: #f59e0b;
}

.coupon-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f59e0b;
    color: #000000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.coupon-content {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.coupon-discount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.coupon-description {
    font-size: 0.9rem;
    color: #d1d5db;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 200px;
}

.coupon-code {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #4b5563;
    width: 100%;
    align-items: center;
    margin-top: 0.5rem;
}

.coupon-code-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.coupon-code-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    text-align: center;
    background-color: rgba(251, 191, 36, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-code-value:hover {
    background-color: rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
    transform: scale(1.05);
}

.black-friday-filters {
    background-color: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    width: 100%;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-tab:hover {
    border-color: #1f2937;
    color: #1f2937;
}

.filter-tab.active {
    background-color: #1f2937;
    border-color: #1f2937;
    color: #ffffff;
}

.black-friday-products {
    padding: 3rem 0 5rem 0;
    background-color: #f9fafb;
    min-height: 60vh;
}

/* Scrolling Text Bar */
.scrolling-text-bar {
    position: relative;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 0.75rem 0;
    overflow: hidden;
    z-index: 10;
    white-space: nowrap;
    margin: 0;
}

.scrolling-text-content {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    animation: scroll-text 40s linear infinite;
    will-change: transform;
}

.scrolling-text-item {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.scrolling-text-star {
    font-size: 0.75rem;
    color: #ffffff;
    opacity: 0.8;
    flex-shrink: 0;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .black-friday-hero {
        padding: 2.5rem 0;
    }

    .black-friday-title {
        font-size: 1.75rem;
    }

    .filter-tabs {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .black-friday-filters {
        top: 0;
    }

    .black-friday-page {
        padding-top: 0;
    }

    .black-friday-hero {
        padding: 6rem 0 3rem 0;
    }

    .announcement-bar {
        font-size: 0.7rem;
        padding: 0.4rem 0;
    }

    .black-friday-hero {
        padding: 3rem 0 2.5rem 0;
    }

    .coupons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .coupon-card {
        padding: 1.25rem;
    }

    .coupon-discount {
        font-size: 1.5rem;
    }

    .scrolling-text-item {
        font-size: 0.75rem;
    }

    .scrolling-text-star {
        font-size: 0.65rem;
    }

    .scrolling-text-content {
        gap: 1rem;
    }
}

/* Footer Banner */
.black-friday-footer-banner {
    background-color: #000000;
    color: #ffffff;
    padding: 0.5rem 0;
    text-align: center;
    border-top: 1px solid #333333;
    position: relative;
    z-index: 10;
}

.footer-banner-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Ajustar padding do products section para não ficar embaixo do scrolling bar */
.black-friday-products {
    padding-bottom: 6rem;
}


@media (max-width: 480px) {
    .black-friday-page {
        padding-top: 5.5rem;
    }

    .black-friday-hero {
        padding: 2rem 0;
    }

    .black-friday-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tab {
        width: 100%;
        text-align: center;
    }
}
