:root {
    --primary-color: #1a1a1a;
    --secondary-color: #e60000;
    --accent-color: #ffffff;
    --text-color: #333333;
    --card-bg: #2a2a2a;
    --gradient-start: #e6e6e6;
    --gradient-end: #1a1a1a;
    --pattern-color: rgba(255, 255, 255, 0.05);
    --cart-header-color: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.01) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
    background-size: 300px 300px;
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent-color);
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
    mix-blend-mode: screen;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-tools {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.tool-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: none;
}

.tool-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(230, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-button:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.tool-button:hover::after {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.3);
}

.cart-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.cart-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(230, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cart-icon:hover::after {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.3);
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

#language-button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#language-button i {
    font-size: 1.1rem;
}

#language-button:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Update responsive styles for nav tools */
@media (max-width: 768px) {
    .nav-tools {
        gap: 1.5rem;
    }
    
    .tool-button, .cart-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    z-index: 0;
}

.grid-image {
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    border-right: 15px solid transparent;
    transform: translateY(15%);
}

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

.grid-image:nth-child(1) {
    background-position: center 85%;
}

.grid-image:nth-child(2) {
    background-position: center 85%;
}

.grid-image:nth-child(3) {
    background-position: center 85%;
}

.grid-image:nth-child(4) {
    background-position: left center;
}

.grid-image:last-child {
    border-right: 0;
}

.grid-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.grid-image:first-child img {
    transform: scale(1.05);
    object-position: center 40%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: 2rem;
    padding: 2rem;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-highlight {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.primary-button, .secondary-button {
    background-color: rgba(230, 0, 0, 0.8);
    color: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.primary-button {
    background-color: var(--secondary-color);
}

.primary-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.secondary-button, .whatsapp-link-hero {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.secondary-button:hover, .whatsapp-link-hero:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* MMA Glove Button Style */
.glove-button {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: 2px solid var(--secondary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glove-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.glove-button:hover::before {
    left: 100%;
}

.glove-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Categories Section */
.categories {
    padding: 4rem 2rem;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.categories h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 2.8rem;
}

.section-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

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

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

/* Specific style for Canilleras image */
.category-card:nth-child(1) .category-image img {
    object-position: center 70%;
}

/* Specific style for Guantes image */
.category-card:nth-child(4) .category-image img {
    object-position: center 85%;
}

/* Specific style for Vendas image */
.category-card:nth-child(5) .category-image img {
    object-position: center center;
}

/* Specific style for Bucales image */
.category-card:nth-child(6) .category-image img {
    object-position: center center;
}

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

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.explore-button {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.explore-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Update responsive design for categories */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories h2 {
        font-size: 2.2rem;
    }

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

    .category-image {
        height: 200px;
    }

    .logo-img {
        width: 40px;
    }

    .logo span {
        font-size: 1.2rem;
    }
}

/* Cart Modal Styles */
.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-modal.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.cart-title {
    margin: 0;
    font-size: 1.4rem;
    color: #FFFFFF !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.cart-footer {
    position: sticky;
    bottom: 0;
    padding: 20px 0;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#close-cart {
    background: #404040;
    color: var(--accent-color);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#close-cart:hover {
    background: #505050;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.cart-total span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cart-total span:last-child {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.whatsapp-button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* Scrollbar styling */
.cart-modal::-webkit-scrollbar {
    width: 8px;
}

.cart-modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.cart-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.cart-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out, fadeOut 0.3s ease-out 2.7s;
    z-index: 1000;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Brands Section */
.brands {
    padding: 4rem 2rem;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brands h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 2.8rem;
}

.brands .section-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.brand-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-height: 200px;
}

.brand-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.brand-logo {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: none;
    transition: transform 0.3s ease;
    max-height: 100px;
}

.brand-card:hover .brand-logo {
    transform: scale(1.05);
}

.brand-card h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.brand-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Update responsive design for brands */
@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brands h2 {
        font-size: 2.2rem;
    }

    .brand-card {
        aspect-ratio: auto;
        padding: 1.5rem;
    }
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
    mix-blend-mode: screen;
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-img {
        width: 40px;
    }
    
    .hero-logo-img {
        width: 150px;
    }
}

/* Subscribe Section */
.subscribe {
    background: linear-gradient(135deg, 
        #000000,
        #1a1a1a,
        #0a0a0a
    );
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.subscribe-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.subscribe h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.subscribe p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.subscribe-form {
    width: 100%;
    display: flex;
    gap: 1rem;
    max-width: 800px;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 1rem;
}

.subscribe-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    background: var(--secondary-color);
    color: var(--accent-color);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.subscribe-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }
}

/* Store Page Styles */
.store-container {
    max-width: 1400px;
    margin: 6rem auto 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.store-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    background-attachment: fixed;
    z-index: -1;
}

.store-container::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.01) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
    background-size: 300px 300px;
    pointer-events: none;
    z-index: -1;
}

/* Search section styles */
.search-section {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

#search-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 1rem;
}

#search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.2);
}

#search-button {
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: var(--accent-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#search-button:hover {
    background: #cc0000;
}

/* Filter styles */
.filters {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.filters select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 150px;
}

.filters select:hover {
    border-color: var(--secondary-color);
}

.filters select option {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.5rem;
}

.filters select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.2);
}

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

.product-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

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

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.product-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    flex: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.size-options {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    cursor: pointer;
}

.size-options option {
    background: var(--primary-color);
    color: var(--accent-color);
}

.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--accent-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.add-to-cart:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Unavailable product styles */
.product-card.unavailable {
    opacity: 0.7;
    position: relative;
}

.product-card.unavailable .product-image {
    position: relative;
}

.unavailable-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}

.product-card.unavailable .add-to-cart {
    background-color: #ccc;
    cursor: not-allowed;
}

.product-card.unavailable .size-options {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 1rem;
    }
}

.social-media {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.social-link {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* Facebook styling */
.social-link[aria-label="Facebook"] {
    background: rgba(66, 103, 178, 0.1);
    border: 1px solid rgba(66, 103, 178, 0.2);
}

.social-link[aria-label="Facebook"]:hover {
    background: #4267B2;
    border-color: #4267B2;
    box-shadow: 0 8px 15px rgba(66, 103, 178, 0.3);
}

/* Instagram styling */
.social-link[aria-label="Instagram"] {
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid rgba(225, 48, 108, 0.2);
}

.social-link[aria-label="Instagram"]:hover {
    background: #E1306C;
    border-color: #E1306C;
    box-shadow: 0 8px 15px rgba(225, 48, 108, 0.3);
}

/* WhatsApp styling */
.social-link.whatsapp-link {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.social-link.whatsapp-link:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

/* Update responsive styles for social media */
@media (max-width: 768px) {
    .social-media {
        margin-top: 2rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

.cart-item-details p {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin: 0.5rem 0;
    font-weight: bold;
}

#cart-total-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
}

.zoomable {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.image-slider {
    display: flex;
    overflow: hidden;
    cursor: pointer;
}

.image-slider img {
    display: none;
    width: 100%;
    height: auto;
}

.image-slider img:first-child {
    display: block;
}

/* General responsive styles */
@media (max-width: 768px) {
    /* Header & Navigation */
    header {
        padding: 0.75rem 1rem;
        position: fixed;
        width: 100%;
        background: #1a1a1a;
        backdrop-filter: none;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a1a;
        backdrop-filter: none;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
    }

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

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(230, 0, 0, 0.1);
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--accent-color);
        font-size: 1.5rem;
        padding: 0.5rem;
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .grid-image {
        height: 100vh;
        display: none;
        border: none;
    }

    .grid-image:first-child {
        display: block;
    }

    .hero h1,
    .hero-subtitle {
        display: none;
    }

    .hero-content {
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 2;
    }

    .hero-description {
        font-size: 1rem;
        margin: 1rem auto 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button,
    .whatsapp-link-hero {
        width: 100%;
        justify-content: center;
        margin: 0;
        min-height: 50px;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    .whatsapp-link-hero {
        margin-left: 0;
    }

    /* Categories Section */
    .categories {
        padding: 3rem 1rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .category-card {
        margin: 0;
    }

    .category-image {
        height: 200px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .product-card {
        margin: 0;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

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

    /* Search and Filters */
    .search-section {
        padding: 1.5rem;
        margin: 1rem;
    }

    .search-container {
        flex-direction: column;
        gap: 1rem;
    }

    #search-input {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    #search-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filters select {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Cart Modal */
    .cart-modal {
        padding: 1rem;
    }

    .cart-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cart-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-button, .close-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Subscribe Section */
    .subscribe {
        padding: 3rem 1.5rem;
    }

    .subscribe-content {
        padding: 0 1rem;
    }

    .subscribe h2 {
        font-size: 2rem;
    }

    .subscribe p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 1rem;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .subscribe-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Social Media */
    .social-media {
        margin-top: 2rem;
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    /* General Mobile Improvements */
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Touch-friendly improvements */
    button, 
    .nav-link, 
    .tool-button, 
    .social-link,
    .subscribe-button,
    .primary-button,
    .secondary-button {
        min-height: 44px;
        min-width: 44px;
    }

    input, 
    select {
        min-height: 44px;
        font-size: 16px;
    }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero h1 {
        font-size: 3rem;
    }
}

/* Add hamburger menu for mobile */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        top: 1.2rem;
        right: 1rem;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1002;
        padding: 0.5rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a1a;
        backdrop-filter: none;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
    }

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

    .nav-link {
        color: #ffffff;
        font-size: 1.2rem;
        padding: 1rem;
        width: 80%;
        text-align: center;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-tools {
        position: fixed;
        top: 1rem;
        right: 4rem;
        z-index: 1002;
    }

    header {
        position: fixed;
        width: 100%;
        z-index: 1000;
        background: #1a1a1a;
        backdrop-filter: none;
        height: 60px;
    }

    .logo {
        position: fixed;
        top: 0.7rem;
        left: 1rem;
        z-index: 1002;
    }

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

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .nav-link, 
    .tool-button, 
    .add-to-cart,
    .size-options,
    .social-link {
        padding: 0.8rem;
        min-height: 44px; /* Minimum touch target size */
    }

    .product-image {
        height: 250px;
    }

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

    .product-description {
        font-size: 0.9rem;
    }

    /* Improve form elements for touch */
    input, 
    select, 
    button {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Add responsive styles for the grid */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.cart-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    max-width: 280px;
    padding: 0 4px;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cart-item-info h4 {
    margin: 0;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    line-height: 1.2;
}

.cart-item-info .size {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.cart-item-meta .price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 3px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.remove-item:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--accent-color);
}

.whatsapp-transparent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    background-color: transparent;
    border: none;
    color: white;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
    font-size: 1.1rem;
}

.whatsapp-transparent:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.whatsapp-transparent i {
    display: none;
}

.whatsapp-link-hero {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 10px;
}

.whatsapp-link-hero:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0 2rem 0;
}

.faq-content {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-toggle {
    background: #e60023;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: background 0.2s, transform 0.2s;
}
.faq-toggle:hover {
    background: #cc0000;
    transform: translateY(-2px) scale(1.03);
}

.faq-list {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-item h3 {
    color: var(--accent-color, #e60023);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    text-align: left;
}
.faq-item p {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    text-align: left;
    line-height: 1.6;
} 