* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

.nav-logo h1 {
    font-family: 'Bungee', cursive;
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff0000;
}

.cart-link {
    position: relative;
}

.cart-count {
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    margin-left: 5px;
    min-width: 20px;
    text-align: center;
}

.account-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.account-link:hover {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.account-link i {
    font-size: 1.3rem;
}

.account-text {
    display: inline;
}

@media (max-width: 768px) {
    .account-text {
        display: none;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section Moderna */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 400;
    color: #ff0000;
    margin-top: -10px;
    letter-spacing: 8px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.05);
}

.stat-icon {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #ff3333, #ff0000);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    border-color: #ff0000;
    color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.trust-item h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-item p {
    color: #cccccc;
    font-size: 1rem;
}

/* Featured Products Section */
.featured-products {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-section {
    padding: 80px 0;
}

.featured-products h2,
.products-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #ffffff;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 2px solid #2a2a2a;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ff0000;
    border-color: #ff0000;
}

/* Products Grid Moderno */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    justify-items: center;
}

.product-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 520px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    max-height: 220px;
}

        .product-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background-color: #333;
            transition: transform 0.3s ease;
        }.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-container:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.view-product-btn {
    flex: 1;
    padding: 10px;
    background: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.view-product-btn:hover {
    background: #ff0000;
    color: white;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #888;
}

.no-products h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.no-products p {
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #888;
}

.spinner {
    border: 3px solid #333;
    border-top: 3px solid #ff0000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.cart-total {
    color: #ff0000;
    font-weight: bold;
    margin-left: 15px;
}

.admin-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

        .product-info {
            padding: 1.25rem;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            min-height: 240px;
            justify-content: space-between;
        }.product-brand {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

        .product-name {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.3;
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
        }.product-rating {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: #666;
    font-size: 0.9rem;
}

.star.filled {
    color: #ffc107;
}

.star.half {
    background: linear-gradient(90deg, #ffc107 50%, #666 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-value {
    font-size: 0.8rem;
    color: #888;
    margin-left: 5px;
}

.product-pricing {
    margin: 15px 0;
}

.original-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 10px;
}

.product-price {
    font-size: 1.4rem;
    color: #ff0000;
    font-weight: bold;
}

.product-sizes {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.size-option {
    padding: 5px 10px;
    background: #333;
    color: #fff;
    border-radius: 5px;
    font-size: 0.8rem;
    border: 1px solid #444;
}

.size-option.out-of-stock {
    background: #555;
    color: #888;
    text-decoration: line-through;
}

/* Product Detail Page Styles */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    border-radius: 15px;
    overflow: hidden;
    background: #1e1e1e;
    border: 1px solid #333;
}

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff0000;
    transform: scale(1.05);
}

.product-details {
    padding: 1rem 0;
}

.product-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.breadcrumb-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #ff0000;
}

.discount-badge-large {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-breadcrumb {
    margin-bottom: 1rem;
}

.product-brand-large {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin: 1rem 0;
    line-height: 1.2;
}

.product-pricing-detail {
    margin: 2rem 0;
}

.original-price-large {
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 15px;
}

.product-price-large {
    font-size: 2.5rem;
    color: #ff0000;
    font-weight: bold;
}

.product-description {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.product-features {
    margin: 2rem 0;
}

.product-features h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid #333;
}

.product-features li:before {
    content: "✓";
    color: #ff0000;
    font-weight: bold;
    margin-right: 10px;
}

.product-sizes-detail {
    margin: 2rem 0;
}

.product-sizes-detail h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin: 1rem 0;
}

.size-button {
    padding: 15px;
    background: #2a2a2a;
    color: #fff;
    border: 2px solid #444;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: bold;
}

.size-button:hover:not(.out-of-stock) {
    border-color: #ff0000;
    background: #333;
}

.size-button.selected {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.size-button.out-of-stock {
    background: #1a1a1a;
    color: #666;
    cursor: not-allowed;
    border-color: #222;
}

.stock-info {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    color: #888;
}

.product-actions {
    margin: 3rem 0;
}

.add-to-cart-large {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-large:hover:not(.disabled) {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.add-to-cart-large.disabled {
    background: #666;
    cursor: not-allowed;
}

.error-message {
    text-align: center;
    padding: 3rem;
    color: #fff;
}

.error-message h2 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #fff;
    font-size: 1.2rem;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 1rem auto;
    }
    
    .product-gallery {
        position: static;
        top: auto;
    }
    
    .main-product-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .product-price-large {
        font-size: 1.8rem;
    }
    
    .product-brand-large {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-description {
        margin: 1.5rem 0;
    }
    
    .product-description h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .product-description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .product-features {
        margin: 1.5rem 0;
    }
    
    .product-features h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .product-features ul {
        font-size: 0.9rem;
    }
    
    .product-sizes-detail {
        margin: 1.5rem 0;
    }
    
    .product-sizes-detail h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.8rem;
    }
    
    .size-button {
        padding: 12px 8px;
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .add-to-cart-large {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
        margin-top: 2rem;
    }
    
    .product-breadcrumb {
        margin-bottom: 1rem;
    }
    
    .breadcrumb-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .product-pricing-detail {
        margin: 1.5rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .original-price-large {
        font-size: 1.1rem;
    }
    
    .discount-badge-large {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .thumbnail-container {
        justify-content: center;
        padding: 15px 0;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .product-detail-container {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price-large {
        font-size: 1.6rem;
    }
    
    .main-product-image {
        height: 250px;
    }
    
    .sizes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }
    
    .size-button {
        padding: 10px 6px;
        font-size: 0.85rem;
        min-height: 45px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Estilos específicos para página de produto */
.product-brand-large {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-pricing-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
}

.original-price-large {
    font-size: 1.4rem;
    color: #999;
    text-decoration: line-through;
}

.discount-badge-large {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb-link {
    color: #ff0000;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid #ff0000;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.breadcrumb-link:hover {
    background: #ff0000;
    color: white;
}

.product-header-detail {
    position: relative;
    margin-bottom: 1rem;
}

.product-description,
.product-features,
.product-sizes-detail {
    margin: 2rem 0;
}

.product-description h3,
.product-features h3,
.product-sizes-detail h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 0.5rem;
}

.product-description p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 20px;
}

.product-features li:before {
    content: '✓';
    color: #ff0000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.add-to-cart-large {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    background: linear-gradient(135deg, #cc0000, #aa0000);
}

.add-to-cart {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 42px;
}

.add-to-cart:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    flex-shrink: 0;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    min-height: 42px;
}

.btn-outline {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #ff0000;
    background: transparent;
    color: #ff0000;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

.btn-outline:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.cart-icon {
    margin-right: 6px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.view-product-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    color: #ff0000;
    border: 2px solid #ff0000;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-product-btn:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
}

.cart-section {
    padding: 40px 0 80px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #333;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1rem;
    background-color: #333;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item-brand {
    font-size: 0.9rem;
    color: #888;
    margin: 0.25rem 0;
    text-transform: uppercase;
}

.cart-item-size {
    font-size: 0.9rem;
    color: #ff0000;
    margin: 0.25rem 0;
    font-weight: 600;
}

.cart-item-price {
    color: #ff0000;
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.quantity-btn {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.quantity-btn:hover {
    background-color: #cc0000;
}

.quantity {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #ffffff;
    width: 50px;
    text-align: center;
    padding: 5px;
    border-radius: 3px;
}

.remove-btn {
    background-color: #666;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 1rem;
}

.remove-btn:hover {
    background-color: #ff0000;
}

.cart-summary {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    border: 1px solid #333;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.summary-line.total {
    border-top: 2px solid #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
    color: #ff0000;
}

.checkout-btn {
    width: 100%;
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #cc0000;
}

.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.empty-cart p {
    color: #cccccc;
    margin-bottom: 2rem;
}

footer {
    background-color: #1a1a1a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        height: 520px;
        min-height: 520px;
    }
    
    .product-actions {
        margin-top: 1rem;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}

/* View All Button Moderno */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    text-align: left;
}

.newsletter-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.input-group {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
}

.newsletter-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: #ffffff;
    color: #ff0000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-text {
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .input-group {
        min-width: 100%;
    }

    .filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Responsive Design Adicional para Novo Layout */
@media (max-width: 768px) {
    /* Hero Mobile */
    .hero {
        padding: 100px 15px 50px;
        min-height: 90vh;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Trust Section Mobile */
    .trust-indicators {
        grid-template-columns: repeat(auto-fit, minMax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem;
    }
    
    .trust-icon {
        font-size: 2.5rem;
    }
    
    /* Newsletter Mobile */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-text {
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .input-group {
        min-width: 100%;
        max-width: 400px;
    }
    
    .newsletter-btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .product-card {
        height: 500px;
        max-width: 100%;
    }
    
    .product-info {
        min-height: 200px;
    }
    
    .product-actions {
        gap: 0.5rem;
    }
    
    .btn-outline,
    .add-to-cart {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* ===============================
   PRODUCTS PAGE STYLES
   =============================== */

/* Products Hero Section */
.products-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    overflow: hidden;
}

.products-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.products-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.products-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.products-title-sub {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #ff0000;
    margin-top: -10px;
    letter-spacing: 6px;
}

.products-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Controls */
.products-controls {
    padding: 2rem 0;
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.controls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-count {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-weight: 500;
}

.products-count i {
    color: #ff0000;
}

.view-controls {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 10px 15px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #cccccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

/* Filters Container */
.filters-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.filter-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-label i {
    color: #ff0000;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #cccccc;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.filter-btn i {
    font-size: 0.8rem;
}

/* Price Range */
.price-range {
    position: relative;
}

.price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    margin-bottom: 0.5rem;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff0000;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sort Select */
.sort-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}

.sort-select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* Responsive Products Page */
@media (max-width: 768px) {
    .products-hero {
        padding: 100px 0 60px;
    }
    
    .controls-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filters-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        flex: 1;
        justify-content: center;
        min-width: auto;
    }
    
    .products-controls {
        position: static;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .view-controls {
        width: 100%;
        justify-content: center;
    }
}

/* List View for Products */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

.products-list .product-card {
    max-width: none;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
}

.products-list .product-image-container {
    width: 250px;
    height: 200px;
    flex-shrink: 0;
    margin-right: 2rem;
}

.products-list .product-image {
    height: 200px;
}

.products-list .product-info {
    flex: 1;
    padding: 0;
}

.products-list .product-actions {
    flex-shrink: 0;
    margin-left: 2rem;
}

/* No Products Found */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 2rem 0;
}

.no-products i {
    font-size: 4rem !important;
    color: #666 !important;
    margin-bottom: 1.5rem !important;
    display: block;
}

.no-products h3 {
    color: #fff !important;
    font-size: 1.5rem;
    margin-bottom: 1rem !important;
    font-family: 'Orbitron', monospace;
}

.no-products p {
    color: #ccc !important;
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive List View */
@media (max-width: 768px) {
    .products-list .product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .products-list .product-image-container {
        width: 100%;
        height: 250px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .products-list .product-image {
        height: 250px;
    }
    
    .products-list .product-actions {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Social Links in Footer */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.social-link.instagram:hover {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-link.whatsapp:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.social-link.linktree:hover {
    color: #39E09B;
    background: rgba(57, 224, 155, 0.1);
}

.social-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.social-link span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .social-links {
        align-items: center;
    }
    
    .social-link {
        justify-content: center;
    }
}

/* =================== BRANDS SECTION =================== */
.brands-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), #1a1a1a);
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.brands-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.brand-card {
    position: relative;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    min-height: 380px;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #ff0000;
    box-shadow: 0 25px 60px rgba(255, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #1f1f1f 0%, #2f2f2f 100%);
}

.brand-card:active {
    transform: scale(0.98);
}

.brand-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    width: 100%;
    height: 100%;
}

.brand-card-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 1rem 0;
    flex-shrink: 0;
}

.brand-card-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(1.15) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-card-logo {
    transform: scale(1.1);
}

.brand-card-icon {
    font-size: 4.5rem;
    color: #ff0000;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.3));
}

.brand-card-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff0000, #ff5555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.brand-card-description {
    font-size: 0.95rem;
    color: #a8a8a8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.brand-card-count {
    font-size: 0.95rem;
    color: #ff0000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #ff0000;
    margin-top: 0.5rem;
}

.brand-card.active {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-color: #ff0000;
}

.brand-card.active .brand-card-name,
.brand-card.active .brand-card-description {
    color: #ffffff;
}

.brand-card.active .brand-card-icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* Clear All Filter Button */
.brands-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.clear-brand-filter {
    padding: 0.7rem 1.5rem;
    background: #333;
    color: #ff0000;
    border: 1px solid #ff0000;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.clear-brand-filter:hover {
    background: #ff0000;
    color: #ffffff;
}

.brand-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.brand-back-btn:hover {
    background: #cc0000;
    transform: translateX(-4px);
}

.brand-page-container {
    display: none;
    animation: fadeIn 0.3s ease;
}

.brand-page-container.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 3rem 1.5rem;
    }

    .brands-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .brand-card {
        padding: 1.2rem;
        min-height: 280px;
    }

    .brand-card-content {
        gap: 0.8rem;
    }

    .brand-card-logo-container {
        min-height: 70px;
    }

    .brand-card-logo {
        max-height: 60px;
    }

    .brand-card-icon {
        font-size: 2.5rem;
        min-height: 50px;
    }

    .brand-card-name {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin-bottom: 0.3rem;
    }

    .brand-card-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    padding: 1.5rem;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    font-size: 2.5rem;
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #ff0000;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    border-bottom-color: #ff0000;
    color: #ff3333;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-btn.primary {
    background: #ff0000;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cookie-btn.primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.cookie-btn.secondary {
    background: transparent;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px;
    }
}