/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: 0 0% 0%;
    --foreground: 0 0% 100%;
    --primary: 142 76% 36%;
    --primary-foreground: 0 0% 0%;
    --card: 0 0% 5%;
    --card-dark: 0 0% 0%;
    --border: 0 0% 20%;
    --border-green: 142 76% 36%;
    --radius: 0.5rem;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: hsl(var(--card-dark));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: hsl(0 0% 100%);
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: hsl(var(--primary));
    font-weight: 600;
}

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

.nav-link {
    color: hsl(0 0% 100%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

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

.btn-cart {
    position: relative;
    background: transparent;
    border: none;
    color: hsl(0 0% 100%);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.btn-cart:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 9999px;
    min-width: 1.3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid hsl(var(--card-dark));
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.btn-login {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}

.btn-login:hover {
    opacity: 0.9;
}

/* Top Divider */
.top-divider {
    width: 100%;
    height: 5px;
    background: var(--section-divider, #22c55e);
    margin: 0;
    padding: 0;
}

/* Banner Carousel Section */
.banner-carousel {
    width: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    margin: 0;
    padding: 0;
    border-top: 5px solid var(--section-divider, #22c55e);
    border-bottom: 5px solid var(--section-divider, #22c55e);
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 350px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
    left: 1rem;
}

.carousel-control.next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active,
.indicator:hover {
    background: rgba(255, 255, 255, 1);
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 0;
    background: hsl(var(--background));
    border-bottom: 2px solid var(--section-divider, #22c55e);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: hsl(var(--background));
    border: 2px dashed hsl(var(--border-green));
    border-radius: var(--radius);
}

.benefit-icon {
    color: hsl(var(--primary));
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.benefit-content p {
    font-size: 0.85rem;
    color: hsl(0 0% 50%);
}

/* Products Section */
.products-section {
    padding: 3rem 0;
    background: hsl(var(--background));
    border-bottom: 2px solid var(--section-divider, #22c55e);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: hsl(var(--foreground));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background: hsl(var(--background));
    border: 2px dashed hsl(var(--border-green));
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #ff0000;
    color: white;
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 5;
    border-radius: 0.25rem;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #000;
}

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

.product-info {
    padding: 1.25rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
    min-height: 2.5rem;
}

.product-name a {
    color: hsl(var(--foreground));
    text-decoration: none;
}

.product-pricing {
    margin-bottom: 1rem;
}

.product-price-old {
    text-decoration: line-through;
    color: hsl(0 0% 60%);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.product-installment {
    font-size: 0.8rem;
    color: hsl(0 0% 40%);
    margin-bottom: 0.25rem;
}

.product-pix {
    font-size: 0.8rem;
    color: hsl(var(--foreground));
}

.product-button .button,
.product-button .added_to_cart {
    width: 100%;
    background: hsl(var(--card-dark));
    color: hsl(0 0% 100%);
    border: none;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.product-button .button:hover,
.product-button .added_to_cart:hover {
    opacity: 0.8;
}

/* Categories and Brands Navigation */
.categories-brands-nav {
    padding: 3rem 0;
    background: hsl(var(--background));
}

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

.nav-section {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px dashed hsl(var(--border-green));
}

.nav-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.nav-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    text-decoration: none;
    color: hsl(var(--foreground));
    transition: all 0.3s;
}

.nav-item:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-color: hsl(var(--primary));
    transform: translateX(5px);
}

.nav-item-icon {
    font-size: 1.5rem;
}

.nav-item-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    background: hsl(var(--card));
}

.brands-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brands-carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.brands-carousel {
    display: flex;
    gap: 1.5rem;
    animation: scroll-carousel 30s linear infinite;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brands-carousel:hover {
    animation-play-state: paused;
}

.brands-carousel-item {
    flex: 0 0 auto;
    min-width: 150px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: hsl(var(--background));
    border: 2px dashed hsl(var(--border-green));
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.2s;
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-5px);
}

.brand-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.brand-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-align: center;
}

.brands-carousel-btn {
    background: hsl(var(--card-dark));
    color: hsl(0 0% 100%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s;
    flex-shrink: 0;
}

.brands-carousel-btn:hover {
    background: hsl(var(--primary));
}

.brands-carousel-btn.prev {
    order: -1;
}

/* Grid de Marcas (fallback) */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    background-color: hsl(var(--card-dark));
    border-top: 1px solid hsl(var(--card-dark));
    color: hsl(0 0% 80%);
}

.footer a {
    color: hsl(0 0% 80%);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: hsl(var(--primary));
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: hsl(var(--card));
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--background));
    border: 2px dashed hsl(var(--border-green));
    border-radius: var(--radius);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: hsl(0 0% 70%);
}

/* Cart Sidebar */
.mini-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: hsl(var(--card));
    border-left: 1px solid hsl(var(--border));
    z-index: 100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.mini-cart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.mini-cart-close {
    background: transparent;
    border: none;
    color: hsl(var(--foreground));
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mini-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}

.mini-cart-overlay.open {
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 768px) {
    .banner-carousel {
        min-height: 250px;
    }
    
    .carousel-slides {
        height: auto;
        min-height: 250px;
    }
    
    .carousel-slide img {
        object-fit: contain;
        background: #000;
        max-height: 250px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .carousel-control {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }
    
    .container-full {
        padding: 0 1rem;
    }
    
    .header-content {
        padding-left: 1rem;
        padding-right: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .logo {
        justify-content: center;
    }
    
    .nav {
        justify-content: center;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .brands-carousel-item {
        min-width: 120px;
    }
    
    .brand-card {
        padding: 1.5rem 0.75rem;
    }
    
    .brand-card img {
        width: 60px;
        height: 60px;
    }
    
    .brand-card h3 {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        min-height: 200px;
    }
    
    .carousel-slide img {
        max-height: 200px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }
    
    .benefit-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .benefit-content h3 {
        font-size: 0.8rem;
        margin-bottom: 0.15rem;
    }
    
    .benefit-content p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-items {
        grid-template-columns: 1fr;
    }
}


/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: hsl(var(--foreground));
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .social-icons {
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}


/* Mobile Shop Button */
.mobile-shop-btn {
    display: none;
    width: 90%;
    margin: 1.5rem auto;
    padding: 1.2rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(142 76% 30%));
    color: hsl(var(--primary-foreground));
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    border: 2px solid hsl(var(--primary));
}

.mobile-shop-btn:hover {
    background: linear-gradient(135deg, hsl(142 76% 30%), hsl(var(--primary)));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5);
}

.mobile-shop-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .mobile-shop-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-shop-btn {
        width: 95%;
        margin: 1.2rem auto;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Dynamic Product Border Styles */
.product-card {
    border-style: var(--product-border-style, solid) !important;
    border-color: var(--product-border-color, #22c55e) !important;
}

.benefit-card {
    border-style: var(--product-border-style, solid) !important;
    border-color: var(--product-border-color, #22c55e) !important;
}

.brand-card {
    border-style: var(--product-border-style, solid) !important;
    border-color: var(--product-border-color, #22c55e) !important;
}

.nav-section {
    border-style: var(--product-border-style, solid) !important;
    border-color: var(--product-border-color, #22c55e) !important;
}

.shop-sidebar {
    border-style: var(--product-border-style, solid) !important;
    border-color: var(--product-border-color, #22c55e) !important;
}


/* Highlight Buttons Section */
.highlight-buttons-section {
    padding: 2rem 0;
    background: hsl(var(--background));
}

.highlight-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.highlight-button {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: hsl(var(--card));
    border: 2px var(--product-border-style, solid) var(--product-border-color, #22c55e);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    color: #ffffff !important;
}

.highlight-button h3,
.highlight-button p {
    color: #ffffff !important;
}

.highlight-button:hover {
    background: hsl(var(--accent) / 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.15);
}

.highlight-button .button-icon {
    font-size: 2rem;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-button .button-content {
    flex: 1;
}

.highlight-button h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.highlight-button p {
    margin: 0;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .highlight-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .highlight-button {
        padding: 1.25rem;
    }
}

/* Responsivo - Mobile */
@media (max-width: 640px) {
    .highlight-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-button {
        padding: 1rem;
    }
    
    .highlight-button .button-icon {
        font-size: 1.5rem;
        min-width: 2rem;
    }
    
    .highlight-button h3 {
        font-size: 0.95rem;
    }
    
    .highlight-button p {
        font-size: 0.8rem;
    }
}


/* Global Text Colors - All White */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

p, span, a, li, label, div {
    color: #ffffff !important;
}

.product-name,
.product-title,
.product-price,
.product-brand,
.benefit-content h3,
.benefit-content p,
.nav-section h3,
.nav-section p,
.category-card h3,
.brand-card h3,
.filter-group h3,
.filter-item label {
    color: #ffffff !important;
}

/* Ensure links are white */
a {
    color: #ffffff !important;
}

a:visited {
    color: #ffffff !important;
}

/* Product card text */
.product-card h3,
.product-card p {
    color: #ffffff !important;
}

/* Category and brand cards */
.category-card,
.brand-card {
    color: #ffffff !important;
}

.category-card h3,
.category-card p,
.brand-card h3,
.brand-card p {
    color: #ffffff !important;
}

/* Navigation text */
.nav-link {
    color: #ffffff !important;
}

/* Filter text */
.filter-group label,
.filter-item label {
    color: #ffffff !important;
}

/* Sidebar text */
.shop-sidebar h3,
.shop-sidebar p {
    color: #ffffff !important;
}

/* Benefits section text */
.benefit-card h3,
.benefit-card p {
    color: #ffffff !important;
}


/* Price Styling */
.price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Regular Price (Strike through, gray) */
.price del,
.price .woocommerce-Price-amount.amount del,
del.price {
    color: #999999 !important;
    text-decoration: line-through !important;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sale Price (Red/White, highlighted) */
.price ins,
.price .woocommerce-Price-amount.amount ins,
ins.price,
.price-sale {
    background: none !important;
    text-decoration: none !important;
    color: #ff0000 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

/* Product Price Container */
.product-price,
.product-price-single,
.woocommerce-variation-price,
.woocommerce-variation-availability {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.product-price del,
.product-price-single del,
.woocommerce-variation-price del {
    color: #999999 !important;
    text-decoration: line-through !important;
    font-size: 0.95rem;
}

.product-price ins,
.product-price-single ins,
.woocommerce-variation-price ins {
    background: none !important;
    text-decoration: none !important;
    color: #ff0000 !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
}

/* WooCommerce specific price classes */
.woocommerce-Price-amount {
    color: #ffffff !important;
}

.woocommerce-Price-amount del {
    color: #999999 !important;
    text-decoration: line-through !important;
}

.woocommerce-Price-amount ins {
    background: none !important;
    text-decoration: none !important;
    color: #ff0000 !important;
    font-weight: 700 !important;
}

/* Price in product cards */
.product-card .product-price del {
    color: #999999 !important;
    text-decoration: line-through !important;
    font-size: 0.85rem;
}

.product-card .product-price ins {
    color: #ff0000 !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    text-decoration: none !important;
}

/* Price in single product page */
.single-product-section .product-price-single del {
    color: #999999 !important;
    text-decoration: line-through !important;
    font-size: 1rem;
}

.single-product-section .product-price-single ins {
    color: #ff0000 !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    text-decoration: none !important;
}

/* Remove all underlines from prices */
.price a,
.product-price a,
.product-price-single a,
.woocommerce-Price-amount a {
    text-decoration: none !important;
}


/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-icons {
        gap: 0.5rem;
    }
    
    .header-icons a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    /* Banner */
    .banner-carousel {
        max-height: 250px;
    }
    
    /* Carrossel de marcas */
    .brands-carousel {
        padding: 1rem 0.5rem;
    }
    
    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .brand-item {
        width: 100px;
        height: 100px;
    }
    
    .brand-item img {
        width: 80px;
        height: 80px;
    }
    
    /* Cards */
    .card {
        padding: 1rem;
    }
    
    /* Botões */
    button, .btn, input[type="submit"] {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Containers */
    .container,
    .container-full {
        padding: 0 0.5rem;
    }
    
    /* Seções */
    .section {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Header */
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .header-icons {
        gap: 0.3rem;
    }
    
    .header-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    /* Banner */
    .banner-carousel {
        max-height: 200px;
    }
    
    /* Carrossel de marcas */
    .brands-carousel {
        padding: 0.75rem 0.25rem;
    }
    
    .carousel-button {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .brand-item {
        width: 80px;
        height: 80px;
    }
    
    .brand-item img {
        width: 65px;
        height: 65px;
    }
    
    .brand-name {
        font-size: 0.7rem;
    }
    
    /* Cards */
    .card {
        padding: 0.75rem;
    }
    
    /* Botões */
    button, .btn, input[type="submit"] {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Containers */
    .container,
    .container-full {
        padding: 0 0.25rem;
    }
    
    /* Seções */
    .section {
        padding: 1rem 0.25rem;
    }
    
    /* Títulos */
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h3 {
        font-size: 1rem;
    }
}


/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background-color: hsl(var(--card-dark));
    border-top: 1px solid hsl(var(--border-green));
}

.categories-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: hsl(var(--foreground));
    text-transform: uppercase;
    letter-spacing: 1px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: hsl(var(--card));
    border: 2px solid hsl(var(--border-green));
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 120px;
}

.category-card:hover {
    background-color: hsl(var(--border-green));
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.category-card:hover .category-name {
    color: hsl(var(--card-dark));
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-align: center;
    transition: color 0.3s ease;
}

/* Responsive Categories */
@media (max-width: 768px) {
    .categories-section {
        padding: 2rem 0;
    }
    
    .categories-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .category-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 1.5rem 0;
    }
    
    .categories-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .category-card {
        padding: 1rem;
        min-height: 80px;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
}
