/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de colores amarillos AmproPrints */
    --primary-yellow: #FFD700;      /* Oro brillante */
    --secondary-yellow: #FFA500;    /* Naranja dorado */
    --accent-yellow: #FFFF00;       /* Amarillo puro */
    --warm-yellow: #FFE135;         /* Amarillo cálido */
    --dark-yellow: #DAA520;         /* Dorado oscuro */
    --light-yellow: #FFFACD;        /* Amarillo suave */
    --amber: #FFBF00;               /* Ámbar */
    --gold: #FFD700;                /* Oro */
    
    /* Colores complementarios */
    --dark-gray: #2C2C2C;
    --medium-gray: #555555;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-secondary: linear-gradient(135deg, #FFE135, #DAA520);
    --gradient-accent: linear-gradient(135deg, #FFBF00, #FFD700);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #FFFACD 0%, #FFF8DC 100%);
    min-height: 100vh;
    font-display: swap;
}

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

/* Header de Pantalla Completa */
.fullscreen-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-color: #FFD700; /* Fallback color */
    height: auto; /* let content define height */
    display: block; /* avoid flex shrinking image */
    position: relative;
    overflow: hidden;
    width: 100vw; /* full bleed */
    margin-left: calc(-50vw + 50%);
    padding: 0; /* no vertical padding so height == banner height */
}

.fullscreen-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(0,0,0,0.05) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(0,0,0,0.05) 1px, transparent 1px),
                radial-gradient(circle at 50% 50%, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
}

.header-content {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    padding: 1rem;
    box-sizing: border-box;
}

.logo-container {
    margin-bottom: 2rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out;
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.main-logo {
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: auto; /* keep aspect ratio */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    object-fit: contain;
    animation: logoHeartbeat 4s ease-in-out infinite;
    flex-shrink: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}

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

.logo-fallback {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo-fallback h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2C2C2C;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.logo-fallback p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2C2C2C;
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.slogan-container {
    margin: 1rem 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-slogan {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2C2C2C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}


/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Heartbeat Animation */
@keyframes logoHeartbeat {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }
    50% {
        transform: scale(1.008);
        filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.15));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }
}

/* Barra de Navegación */
.navigation-bar {
    background: #2C2C2C;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Mobile Social Links */
.mobile-social-links {
    display: none;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #444;
    margin-top: 1rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 1rem;
}

/* American Flag Styles removed */

/* Header Flag Styles removed */

/* Responsive adjustments for header flags removed */
@media (max-width: 768px) {
    .logo-container {
        gap: 1rem;
        padding: 0 1rem;
    }
}

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

/* Call section with USA flag */
.call-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.usa-flag-nav {
    width: 100px;
    height: 75px;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zelle-nav-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 200px;
}

.to-call-btn {
    background: var(--primary-yellow);
    color: #2C2C2C;
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.to-call-btn:hover {
    background: var(--secondary-yellow);
    transform: translateY(-1px);
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1.5rem 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
}

.nav-link i {
    font-size: 0.9rem;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--light-yellow);
    color: var(--dark-gray);
    transform: translateX(5px);
}

.dropdown-item i {
    color: var(--primary-yellow);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.dropdown-item:hover i {
    color: var(--dark-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-right .nav-link {
    padding: 1rem;
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.instagram:hover {
    background: #E4405F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-link.facebook {
    color: #1877F2;
}

.social-link.facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.yelp {
    color: #FF1A1A;
}

.social-link.yelp:hover {
    background: #FF1A1A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.3);
}

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



.cart-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.cart-btn:hover {
    background: white;
    color: #2C2C2C;
}

.cart-count {
    background: var(--dark-gray);
    color: var(--primary-yellow);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
    font-weight: bold;
    border: 1px solid var(--primary-yellow);
}

/* Brand Ticker */
.brand-ticker {
    background: #2C2C2C;
    padding: 1rem 0;
    overflow: hidden;
    border-bottom: 1px solid #444;
    position: relative;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    gap: 3rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 40px;
    width: 120px;
}

.brand-logo {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    background: transparent;
}

.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

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

/* Ticker Animation */
@keyframes tickerScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.gallery-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

/* Category Navigation - Horizontal Menu */
.category-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: -40px;
    padding: 1.5rem 1rem;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-yellow) transparent;
}

.category-nav::-webkit-scrollbar {
    height: 6px;
}

.category-nav::-webkit-scrollbar-track {
    background: transparent;
}

.category-nav::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 3px;
}

.category-nav-row {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
}

.category-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    min-width: auto;
    white-space: nowrap;
    background: white;
    border: 2px solid rgba(255, 215, 0, 0.2);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-yellow);
}

.category-item:hover::before {
    opacity: 0.1;
}

.category-item.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: transparent;
}

.category-item.active::before {
    opacity: 0;
}

.category-item.active:hover {
    background: linear-gradient(135deg, #FFC700, #FF9500);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.category-item span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Deprecated - No longer using images in category navigation */
.category-image {
    display: none;
}



/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    padding: 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--dark-gray);
    color: var(--primary-yellow);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-colors {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-color:hover {
    transform: scale(1.2);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--secondary-yellow);
    font-size: 0.9rem;
}

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

.product-sizes {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-style: italic;
}

/* Product Buttons Container */
.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Ask Details Button */
.ask-details-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ask-details-btn:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.ask-details-btn i {
    font-size: 1rem;
}

/* Atención Button - Black WhatsApp */
.atencion-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.atencion-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.atencion-btn i {
    font-size: 1rem;
    color: white;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.zoom-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
}

.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: #3498db;
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.4;
}

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

.current-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-note {
    color: var(--dark-yellow);
    font-style: italic;
    font-weight: 500;
}

/* Product Options */
.product-option {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Size Options */
.size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--warm-yellow);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
    color: var(--dark-gray);
}

.size-option:hover {
    border-color: var(--secondary-yellow);
    background: var(--light-yellow);
    transform: translateY(-1px);
}

.size-option.active {
    background: var(--gradient-primary);
    color: var(--dark-gray);
    border-color: var(--dark-yellow);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.color-swatch.active {
    border-color: #2c3e50;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.color-clear {
    margin-top: 0.5rem;
}

.color-clear button {
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    color: #666;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.color-clear button:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: #e9ecef;
}

#quantity {
    border: none;
    padding: 1rem;
    width: 80px;
    text-align: center;
    font-weight: 500;
}

.add-to-cart-btn,
.customize-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.add-to-cart-btn {
    background: var(--gradient-primary);
    color: var(--dark-gray);
    flex: 1;
    min-width: 200px;
    border-color: var(--dark-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.add-to-cart-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.customize-btn {
    background: var(--gradient-secondary);
    color: var(--dark-gray);
    border-color: var(--secondary-yellow);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.customize-btn:hover {
    background: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Product Details */
.product-details {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    color: #666;
    font-size: 0.9rem;
}

/* Product Tabs */
.product-tabs {
    margin-top: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--warm-yellow);
}

.tab-header {
    flex: 1;
    padding: 1.5rem;
    background: var(--light-yellow);
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    color: var(--dark-gray);
}

.tab-header:hover {
    background: rgba(255, 250, 205, 0.8);
}

.tab-header.active {
    background: var(--white);
    border-bottom-color: var(--primary-yellow);
    color: var(--dark-yellow);
    font-weight: 600;
}

.tab-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

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

.tab-panel h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.tab-panel ul {
    padding-left: 1.5rem;
}

.tab-panel li {
    margin-bottom: 0.5rem;
    color: #666;
}

.tab-panel table {
    width: 100%;
    border-collapse: collapse;
}

.tab-panel table td {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    color: #666;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--dark-gray);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

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

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.cart-item-options {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cart-item-remove:hover {
    background: #ffe6e6;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--dark-gray);
    border: 2px solid var(--dark-yellow);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.checkout-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Product Modal with Blur */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
    pointer-events: none;
}

.product-modal.show {
    pointer-events: auto;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
}

.product-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    background: white;
    margin: 1rem auto;
    max-width: 1400px;
    width: 95%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 9999;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 700px;
}

.modal-image-section {
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-product-img {
    width: 100%;
    max-width: 100%;
    max-height: 650px;
    object-fit: contain;
    border-radius: 10px;
}

.modal-details-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-details-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.modal-swatches {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

/* Size Selection Section */
.product-sizes-section {
    margin-bottom: 1.5rem;
}

.product-sizes-section h4 {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-size-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.size-btn {
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
    text-transform: uppercase;
}

.size-btn:hover {
    border-color: var(--primary-yellow);
    background: var(--light-yellow);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.2);
}

.size-btn.active {
    background: var(--gradient-primary);
    border-color: var(--dark-yellow);
    color: var(--dark-gray);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    transform: translateY(-1px);
}

.size-btn.active:hover {
    background: var(--gradient-accent);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Buy Now Button */
.buy-now-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #25D366;
    color: white;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.buy-now-btn:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.buy-now-btn i {
    font-size: 1.2rem;
}

.modal-color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    z-index: 10001;
}

.modal-color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-color-swatch.active {
    border-color: var(--primary-yellow);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.modal-color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.modal-actions .quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--warm-yellow);
    border-radius: 8px;
    overflow: hidden;
}

.modal-actions .quantity-selector button {
    background: var(--light-yellow);
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.modal-actions .quantity-selector button:hover {
    background: var(--warm-yellow);
}

.modal-actions .quantity-selector input {
    border: none;
    padding: 0.8rem;
    width: 60px;
    text-align: center;
    font-weight: 500;
}

/* Modal Animations */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Zoom Icon Styles */
.zoom-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10001;
    opacity: 0.8;
}

.zoom-icon:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    opacity: 1;
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
    overflow: auto;
}

.image-zoom-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.zoom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 11001;
}

.zoom-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11002;
    overflow: auto;
    padding: 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.zoom-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 11003;
}

.zoom-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.zoom-modal-img {
    width: 75vw;
    height: 75vh;
    max-width: 75vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.zoom-modal-img:hover {
    transform: scale(1.05);
}

/* Social Media Floating Buttons (Left Side) */
.social-float-container {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 12000;
}

.social-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-float i {
    font-size: 1.5rem;
    color: white;
}

/* Instagram Button */
.instagram-float {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    background-size: 400% 400%;
    animation: instagramGradient 3s ease infinite;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.instagram-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6);
}

@keyframes instagramGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Facebook Button */
.facebook-float {
    background: #1877F2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.facebook-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.6);
    background: #166FE5;
}

/* Yelp Button */
.yelp-float {
    background: #AF0606;
    box-shadow: 0 4px 15px rgba(175, 6, 6, 0.4);
}

.yelp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(175, 6, 6, 0.6);
    background: #C41200;
}

/* WhatsApp Floating Button (Green) */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 2px;
}

/* WhatsApp Floating Button (Black - Atención) */
.whatsapp-float-black {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: whatsappPulseBlack 2s infinite;
}

.whatsapp-float-black:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
    background: #1a1a1a;
}

.whatsapp-float-black i {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 2px;
}

.country-code {
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
}

/* WhatsApp Pulse Animation (Green) */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Pulse Animation (Black) */
@keyframes whatsappPulseBlack {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
}

/* WhatsApp Modal */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12001;
    overflow-y: auto;
}

.whatsapp-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.whatsapp-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 12002;
}

.whatsapp-modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    max-width: 500px;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 12003;
}

.whatsapp-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 12004;
}

.whatsapp-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.whatsapp-form {
    padding: 2rem;
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 2rem;
}

.whatsapp-header i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.whatsapp-header h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.whatsapp-header p {
    color: #666;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.whatsapp-submit-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-submit-btn:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

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

/* WhatsApp Modal Spanish (Black version) */
.whatsapp-modal-spanish .whatsapp-header-black i {
    color: #000000;
}

.whatsapp-modal-spanish .whatsapp-close-btn-black {
    background: rgba(0, 0, 0, 0.1);
}

.whatsapp-modal-spanish .whatsapp-close-btn-black:hover {
    background: rgba(0, 0, 0, 0.2);
}

.whatsapp-modal-spanish .form-group input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.whatsapp-submit-btn-black {
    width: 100%;
    background: #000000 !important;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-submit-btn-black:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-submit-btn-black i {
    font-size: 1.2rem;
}

/* Thermos Modal */
.thermos-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 14000;
    overflow-y: auto;
}

.thermos-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.thermos-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 14001;
}

.thermos-modal-content {
    position: relative;
    background: white;
    margin: 2% auto;
    max-width: 1200px;
    width: 95%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 14002;
}

.thermos-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 14003;
}

.thermos-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
    transform: scale(1.1);
}

.thermos-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.thermos-preview-section {
    background: #f8f9fa;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.thermos-preview-container {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thermos-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    min-height: 300px;
    display: block;
}

.thermos-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: auto;
    z-index: 10;
    cursor: move;
    user-select: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.thermos-text-overlay:hover {
    background-color: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(2px);
}

.thermos-text-overlay.dragging {
    background-color: rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.thermos-text-overlay span {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thermos-color-swatches {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 400px;
}

.thermos-color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thermos-color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.thermos-color-swatch.active {
    border-color: var(--primary-yellow);
    transform: scale(1.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.thermos-color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

/* Remove image styles since we're using solid colors now */

.thermos-customization-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
    max-height: 600px;
}

.thermos-customization-section h2 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.thermos-customization-section h3 {
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
}

.text-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.text-input-group input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.text-input-group input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.clear-text-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-text-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.font-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.font-option {
    padding: 1rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.font-option:hover {
    border-color: var(--primary-yellow);
    background: var(--light-yellow);
    transform: translateY(-2px);
}

.font-option.active {
    background: var(--gradient-primary);
    border-color: var(--dark-yellow);
    color: var(--dark-gray);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.font-option span {
    font-size: 1rem;
    font-weight: 600;
}

.font-option.cursive-font {
    background: linear-gradient(135deg, #FFE135, #FFD700);
    border-color: var(--dark-yellow);
}

.font-option.cursive-font:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.font-option.cursive-font span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.font-option.special-font {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-color: #7C3AED;
}

.font-option.special-font:hover {
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.font-option.special-font span {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.text-color-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.text-color-option {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.text-color-option:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.text-color-option.active {
    border-color: var(--primary-yellow);
    transform: scale(1.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.text-color-option span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
}

.text-size-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.text-size-slider input[type="range"] {
    flex: 1;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.text-size-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-yellow);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.text-size-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-yellow);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#thermosTextSizeValue {
    background: var(--primary-yellow);
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.thermos-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.reset-thermos-btn {
    flex: 1;
    padding: 1rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reset-thermos-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.order-thermos-btn {
    flex: 2;
    padding: 1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.order-thermos-btn:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Keychains Modal */
.keychains-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12000;
    overflow-y: auto;
}

.keychains-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.keychains-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 12001;
}

.keychains-modal-content {
    position: relative;
    background: white;
    margin: 1% auto;
    max-width: 1400px;
    width: 98%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 12002;
    overflow: hidden;
    animation: modalSlideIn 0.4s ease-out;
}

.keychains-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 12003;
}

.keychains-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.keychains-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.keychains-preview-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.keychains-preview-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keychains-preview-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.keychains-preview-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


.keychains-customization-section {
    padding: 2rem;
    overflow-y: auto;
    max-height: 600px;
}

.keychains-customization-section h2 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.keychains-customization-section h3 {
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
}

.keychains-color-swatches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.keychains-color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keychains-color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.keychains-color-swatch.active {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.keychains-color-swatch.active::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}


.keychains-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.reset-keychains-btn {
    flex: 1;
    padding: 1rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reset-keychains-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.order-keychains-btn {
    flex: 2;
    padding: 1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.order-keychains-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

/* Caps Modal */
.caps-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12000;
    overflow-y: auto;
}

.caps-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.caps-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 12001;
}

.caps-modal-content {
    position: relative;
    background: white;
    margin: 1% auto;
    max-width: 1400px;
    width: 98%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 12002;
    overflow: hidden;
    animation: modalSlideIn 0.4s ease-out;
}

.caps-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 12003;
}

.caps-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.caps-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.caps-preview-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.caps-preview-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
}

.caps-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.caps-preview-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.caps-customization-section {
    padding: 2rem;
    overflow-y: auto;
    max-height: 600px;
}

.caps-customization-section h2 {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.caps-color-selection {
    margin-bottom: 2rem;
}

.caps-color-selection h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.caps-color-swatches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.caps-color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.caps-color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.caps-color-swatch.active {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.caps-color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.caps-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.reset-caps-btn,
.order-caps-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reset-caps-btn {
    background: #6c757d;
    color: white;
}

.reset-caps-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.order-caps-btn {
    background: #25d366;
    color: white;
}

.order-caps-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

/* Safety Vests Modal */
.safety-vests-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12000;
    overflow-y: auto;
}

.safety-vests-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.safety-vests-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 12001;
}

.safety-vests-modal-content {
    position: relative;
    background: white;
    margin: 1% auto;
    max-width: 1400px;
    width: 98%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 12002;
    overflow: hidden;
    animation: modalSlideIn 0.4s ease-out;
}

.safety-vests-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 12003;
}

.safety-vests-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.safety-vests-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.safety-vests-preview-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.safety-vests-preview-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
}

.safety-vests-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.safety-vests-preview-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.safety-vests-customization-section {
    padding: 2rem;
    overflow-y: auto;
    max-height: 600px;
}

.safety-vests-customization-section h2 {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.safety-vests-color-selection {
    margin-bottom: 2rem;
}

.safety-vests-color-selection h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.safety-vests-color-swatches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.safety-vests-color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.safety-vests-color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.safety-vests-color-swatch.active {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.safety-vests-color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.safety-vests-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.reset-safety-vests-btn,
.order-safety-vests-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reset-safety-vests-btn {
    background: #6c757d;
    color: white;
}

.reset-safety-vests-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.order-safety-vests-btn {
    background: #25d366;
    color: white;
}

.order-safety-vests-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

/* Pens Modal Styles */
.pens-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.pens-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.pens-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1400px;
    width: 98%;
    margin: 1% auto;
    max-height: 98vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

.pens-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.pens-close-btn:hover {
    background: #ff3742;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 71, 87, 0.4);
}

.pens-modal-layout {
    display: flex;
    min-height: 700px;
    gap: 0;
}

.pens-preview-section {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 20px 0 0 20px;
    position: relative;
    overflow: hidden;
}

.pens-preview-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pens-preview-container {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.pens-preview-img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.pens-customization-section {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 0 20px 20px 0;
    overflow-y: auto;
    max-height: 700px;
}

.pens-customization-section h2 {
    color: #2C2C2C;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pens-color-selection h3 {
    color: #2C2C2C;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pens-color-selection h3::before {
    content: '🎨';
    font-size: 1.2rem;
}

.pens-color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.pens-color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pens-color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.pens-color-swatch.selected {
    border-color: var(--primary-yellow);
    transform: scale(1.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.pens-color-swatch.special-border {
    border: 3px solid #dee2e6;
}

.pens-color-swatch.special-border.selected {
    border-color: var(--primary-yellow);
}

.pens-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.reset-pens-btn, .order-pens-btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.reset-pens-btn {
    background: #6c757d;
    color: white;
}

.reset-pens-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(108, 117, 125, 0.3);
}

.order-pens-btn {
    background: #25d366;
    color: white;
}

.order-pens-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

/* Apparell Product Modal */
.apparell-product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15000;
    overflow-y: auto;
}

.apparell-product-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.apparell-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 15001;
}

.apparell-modal-content {
    position: relative;
    background: white;
    margin: 1% auto;
    max-width: 1400px;
    width: 98%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 15002;
}

.apparell-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 15003;
}

.apparell-close-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.apparell-modal-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 600px;
}

.apparell-image-section {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.apparell-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apparell-modal-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.apparell-modal-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.apparell-details-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.apparell-details-section h2 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.apparell-details-section p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.apparell-modal-actions {
    margin-top: 1rem;
}

.apparell-whatsapp-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.apparell-whatsapp-btn:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Mobile responsive for Apparell modal */
@media (max-width: 768px) {
    .apparell-modal-content {
        width: 98%;
        margin: 1% auto;
        max-width: 95vw;
    }
    
    .apparell-modal-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .apparell-image-section {
        padding: 1rem;
    }
    
    .apparell-image-container {
        max-width: 100%;
    }
    
    .apparell-modal-img {
        max-height: 400px;
        width: 100%;
    }
    
    .apparell-details-section {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .apparell-details-section h2 {
        font-size: 1.5rem;
    }
    
    .apparell-whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Large screens optimization for Apparell modal */
@media (min-width: 1200px) {
    .apparell-modal-content {
        max-width: 1600px;
        width: 96%;
    }
    
    .apparell-modal-layout {
        min-height: 700px;
    }
    
    .apparell-image-container {
        max-width: 800px;
    }
    
    .apparell-modal-img {
        max-height: 700px;
    }
    
    .apparell-details-section {
        padding: 3rem;
        gap: 2rem;
    }
    
    .apparell-details-section h2 {
        font-size: 2.2rem;
    }
    
    .apparell-details-section p {
        font-size: 1.1rem;
    }
    
    .apparell-whatsapp-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 13000;
    overflow-y: auto;
}

.contact-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.contact-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 13001;
}

.contact-modal-content {
    position: relative;
    background: #2C2C2C;
    margin: 5% auto;
    max-width: 600px;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 13002;
}

.contact-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 13003;
}

.contact-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-info {
    padding: 2.5rem;
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #444;
    padding-bottom: 1.5rem;
}

.contact-header h2 {
    color: white;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #2C2C2C;
}

.contact-text h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-text p {
    color: #ccc;
    margin: 0.3rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-text p:first-of-type {
    color: #FFD700;
    font-weight: 500;
}

/* Info Modal (About Us, Terms, Returns) */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 13000;
    overflow-y: auto;
}

.info-modal.show {
    display: block !important;
    animation: modalFadeIn 0.3s ease-out;
}

.info-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 13001;
}

.info-modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    max-width: 700px;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 13002;
}

.info-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 13003;
}

.info-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
    transform: scale(1.1);
}

.info-modal-body {
    padding: 2.5rem;
}

.info-modal-body h2 {
    color: #2C2C2C;
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 1rem;
}

.info-content {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
}

.info-content p {
    margin: 0 0 1.5rem 0;
    text-align: justify;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* Responsive styles for Info Modal */
@media (max-width: 768px) {
    .info-modal-content {
        width: 95%;
        margin: 10% auto;
        max-width: 95vw;
    }
    
    .info-modal-body {
        padding: 1.5rem;
    }
    
    .info-modal-body h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .info-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.footer-link:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-link span {
    display: inline-block;
}

/* Blur effect is now handled by modal-backdrop */

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay.show {
    display: block;
}

/* Mobile-First Responsive Design */

/* Base mobile styles */
@media (max-width: 480px) {
    /* Container and layout */
    .container {
        padding: 0 15px;
    }
    
    /* Header optimizations */
    .fullscreen-header {
        height: auto;
        min-height: 0;
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        display: block;
    }
    
    .header-content {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .logo-container {
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .main-logo {
        max-width: 100vw;
        width: 100vw;
        height: auto;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .logo-fallback h1 {
        font-size: 2rem;
    }
    
    .logo-fallback p {
        font-size: 1rem;
    }
    
    
    /* Navigation mobile-first */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem 1rem;
        position: relative;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
        order: 3;
    }
    
    
    .call-section {
        order: 2;
        flex: 1;
        justify-content: center;
    }
    
    .usa-flag-nav {
        width: 75px;
        height: 55px;
    }
    
    .to-call-btn {
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 5px;
        text-align: center;
        min-width: 120px;
    }
    
    /* Hide desktop nav menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #2C2C2C;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 0 0;
        z-index: 1001;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
        right: 0;
    }
    
    .nav-link {
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid #444;
        justify-content: flex-start;
        font-size: 1rem;
    }
    
    .nav-link i {
        margin-right: 0.8rem;
        font-size: 1.2rem;
    }
    
    /* Mobile dropdown */
    .nav-dropdown {
        position: static;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #333;
        border-radius: 0;
        margin: 0;
        min-width: auto;
        width: 100%;
        display: none;
        padding: 0;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 1rem 2rem;
        color: white;
        border-bottom: 1px solid #444;
        font-size: 0.95rem;
        justify-content: flex-start;
    }
    
    .dropdown-item i {
        margin-right: 0.8rem;
        color: var(--primary-yellow);
    }
    
    /* Show mobile social links */
    .mobile-social-links {
        display: flex;
    }
    
    /* Hide desktop social links */
    .nav-right {
        display: none;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
        background: #333;
        flex-wrap: wrap;
        order: 1;
        padding: 0.5rem 0;
    }
    
    .nav-link {
        padding: 1rem 0.5rem;
        flex: 1;
        justify-content: center;
        min-width: 80px;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .nav-link i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    /* Mobile dropdown */
    .nav-dropdown {
        position: static;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #444;
        border-radius: 0;
        margin: 0;
        min-width: auto;
        width: 100%;
        display: none;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 0.8rem 1rem;
        color: white;
        border-bottom: 1px solid #555;
        font-size: 0.9rem;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 215, 0, 0.1);
        color: var(--primary-yellow);
        transform: none;
    }
    
    .nav-right {
        width: 100%;
        justify-content: center;
        background: #1a1a1a;
        padding: 1rem 0;
        order: 2;
    }
    
    .social-links {
        gap: 1rem;
        padding: 0;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 1.2rem;
    }
    
    /* Brand ticker mobile */
    .brand-ticker {
        padding: 0.8rem 0;
    }
    
    .brand-item {
        height: 40px;
        width: 120px;
    }
    
    .brand-logo {
        max-height: 40px;
        max-width: 120px;
        filter: none;
    }
    
    .ticker-content {
        gap: 2rem;
        animation: tickerScroll 25s linear infinite;
    }
    
    /* Category navigation mobile */
    .category-nav {
        margin-top: -10px;
        padding: 1rem 0.5rem;
        border-radius: 30px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-nav-row {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .category-item {
        min-width: auto;
        padding: 0.6rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .category-item span {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.2;
    }
    
    /* Products grid mobile */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 1rem 0 2rem 0;
    }
    
    .product-card {
        max-width: 250px;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .product-colors {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .product-color {
        width: 16px;
        height: 16px;
    }
    
    .ask-details-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .atencion-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    /* Modal mobile optimizations */
    .modal-content {
        margin: 0.5rem auto;
        width: 98%;
        max-width: none;
        border-radius: 15px;
    }
    
    .modal-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .modal-image-section {
        padding: 1rem;
        background: #f8f9fa;
    }
    
    .modal-product-img {
        max-height: 300px;
        width: 100%;
    }
    
    .modal-details-section {
        padding: 1.2rem;
    }
    
    .modal-details-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .modal-swatches {
        justify-content: center;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .modal-color-swatch {
        width: 35px;
        height: 35px;
    }
    
    .modal-size-buttons {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .size-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        min-width: 40px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modal-actions .add-to-cart-btn,
    .modal-actions .customize-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .quantity-selector {
        align-self: center;
        border: 2px solid var(--warm-yellow);
        border-radius: 8px;
    }
    
    .quantity-selector button {
        padding: 0.7rem 1rem;
    }
    
    .quantity-selector input {
        padding: 0.7rem;
        width: 60px;
    }
    
    /* Social float buttons mobile */
    .social-float-container {
        left: 15px;
        bottom: 20px;
        gap: 12px;
    }
    
    .social-float {
        width: 45px;
        height: 45px;
    }
    
    .social-float i {
        font-size: 1.3rem;
    }
    
    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 1.8rem;
    }
    
    .whatsapp-float-black {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float-black i {
        font-size: 1.3rem;
    }
    
    .country-code {
        font-size: 0.7rem;
    }
    
    /* Zoom modal mobile */
    .zoom-close-btn {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .zoom-modal-img {
        width: 95vw;
        height: 60vh;
        max-width: 95vw;
        max-height: 60vh;
    }
    
    .zoom-modal-content {
        padding: 1rem;
    }
    
    /* WhatsApp modal mobile */
    .whatsapp-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .whatsapp-form {
        padding: 1.5rem;
    }
    
    .whatsapp-header h3 {
        font-size: 1.3rem;
    }
    
    .form-group input {
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    .whatsapp-submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Thermos modal mobile */
    .thermos-modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .thermos-modal-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .thermos-preview-section {
        padding: 1rem;
        gap: 1rem;
    }
    
    .thermos-preview-container {
        width: 250px;
        height: 300px;
    }
    
    .thermos-customization-section {
        padding: 1rem;
        gap: 1.5rem;
        max-height: none;
    }
    
    .thermos-customization-section h2 {
        font-size: 1.5rem;
    }
    
    .font-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .font-option {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .text-color-options {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .text-color-option {
        width: 45px;
        height: 45px;
    }
    
    .thermos-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .reset-thermos-btn,
    .order-thermos-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* Keychains modal mobile */
    .keychains-modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .keychains-modal-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .keychains-preview-section {
        padding: 1rem;
    }
    
    .keychains-customization-section {
        padding: 1.5rem;
        max-height: none;
    }
    
    .keychains-color-swatches {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .keychains-color-swatch {
        width: 50px;
        height: 50px;
    }
    
    .keychains-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .reset-keychains-btn,
    .order-keychains-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* Caps modal mobile */
    .caps-modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .caps-modal-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .caps-preview-section {
        padding: 1rem;
    }
    
    .caps-customization-section {
        padding: 1.5rem;
        max-height: none;
    }
    
    .caps-color-swatches {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .caps-color-swatch {
        width: 50px;
        height: 50px;
    }
    
    .caps-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .reset-caps-btn,
    .order-caps-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* Safety Vests modal mobile */
    .safety-vests-modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .safety-vests-modal-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .safety-vests-preview-section {
        padding: 1rem;
    }
    
    .safety-vests-customization-section {
        padding: 1.5rem;
        max-height: none;
    }
    
    .safety-vests-color-swatches {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .safety-vests-color-swatch {
        width: 50px;
        height: 50px;
    }
    
    .safety-vests-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .reset-safety-vests-btn,
    .order-safety-vests-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* Pens modal mobile */
    .pens-modal-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .pens-preview-section {
        padding: 1rem;
        border-radius: 20px 20px 0 0;
    }
    
    .pens-customization-section {
        padding: 1.5rem;
        border-radius: 0 0 20px 20px;
    }
    
    .pens-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .reset-pens-btn,
    .order-pens-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* Contact modal mobile */
    .contact-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .contact-header h2 {
        font-size: 1.5rem;
    }
    
    /* Footer mobile */
    .footer-section {
        display: inline-block;
        width: 22%;
        margin: 0 1.5%;
        font-size: 0.85rem;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .main-footer {
        margin-top: 2rem;
        padding: 2rem 0 1rem 0;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .main-logo {
        max-width: 100vw;
        width: 100vw;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    .category-item {
        min-width: auto;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .category-item span {
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.8rem;
    }
    
    .product-card {
        max-width: 220px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .modal-color-swatch {
        width: 30px;
        height: 30px;
    }
    
    .size-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
        min-width: 35px;
    }
    
    .social-float-container {
        left: 10px;
        bottom: 15px;
        gap: 10px;
    }
    
    .social-float {
        width: 40px;
        height: 40px;
    }
    
    .social-float i {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        bottom: 75px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .whatsapp-float-black {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float-black i {
        font-size: 1.2rem;
    }
    
    .country-code {
        font-size: 0.65rem;
    }
}

/* Tablet portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .fullscreen-header {
        height: auto;
        min-height: 0;
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        display: block;
    }
    
    .header-content {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .logo-container {
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .main-logo {
        max-width: 100vw;
        width: 100vw;
        height: auto;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem 1rem;
    }
    
    /* Show hamburger menu on tablet */
    .hamburger-menu {
        display: flex;
        order: 3;
    }
    
    
    .call-section {
        order: 2;
    }
    
    .usa-flag-nav {
        width: 87px;
        height: 65px;
    }
    
    .to-call-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 5px;
        min-width: 140px;
    }
    
    /* Hide desktop nav menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 400px;
        height: 100vh;
        background: #2C2C2C;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 0 0;
        z-index: 1001;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
        right: 0;
    }
    
    .nav-link {
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid #444;
        justify-content: flex-start;
        font-size: 1rem;
    }
    
    .nav-link i {
        margin-right: 0.8rem;
        font-size: 1.2rem;
    }
    
    /* Show mobile social links */
    .mobile-social-links {
        display: flex;
    }
    
    /* Hide desktop social links */
    .nav-right {
        display: none;
    }
    
    .category-nav-row {
        gap: 0.6rem;
    }
    
    .category-item {
        min-width: auto;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .category-item span {
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 280px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem auto;
    }
    
    .modal-color-swatch {
        width: 40px;
        height: 40px;
    }
    
    .size-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        min-width: 45px;
    }
    
    .footer-section {
        width: 22%;
        margin: 0 1.5%;
    }
}

/* Tablet landscape and small desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .fullscreen-header {
        height: auto;
        min-height: 0;
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        display: block;
    }
    
    .header-content {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .logo-container {
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .main-logo {
        max-width: 100vw;
        width: 100vw;
        height: auto;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .nav-container {
        flex-direction: row;
        gap: 1rem;
    }
    
    /* Hide hamburger menu on desktop */
    .hamburger-menu {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
    
    .mobile-social-links {
        display: none;
    }
    
    
    .nav-menu {
        display: flex;
        flex: 1;
        justify-content: center;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        transition: none;
    }
    
    .nav-link {
        padding: 1.5rem 1rem;
    }
    
    .nav-right {
        display: flex;
    }
    
    .category-nav-row {
        gap: 0.8rem;
    }
    
    .category-item {
        min-width: auto;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.8rem;
    }
    
    .modal-content {
        max-width: 900px;
        width: 90%;
    }
    
    .footer-section {
        width: 22%;
        margin: 0 1.5%;
    }
}

/* Mobile and touch device optimizations */
.mobile-device {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.touch-device .touch-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.touch-device .touch-active.product-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.touch-device .touch-active.category-item {
    background: var(--light-yellow);
}

.touch-device .touch-active.nav-link {
    background: rgba(255, 215, 0, 0.2);
}

/* Mobile navigation dropdown */
.mobile-device .nav-dropdown.active .dropdown-menu {
    display: block !important;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #444;
    border-radius: 0;
    margin: 0;
    min-width: auto;
    width: 100%;
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    /* Mobile touch optimizations */
    .nav-link,
    .dropdown-item,
    .category-item,
    .product-card,
    .modal-color-swatch,
    .size-btn,
    .ask-details-btn,
    .atencion-btn,
    .add-to-cart-btn,
    .customize-btn,
    .whatsapp-float,
    .whatsapp-float-black {
        min-height: 44px; /* iOS recommended touch target */
        min-width: 44px;
    }
    
    .category-item {
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 60px;
    }
    
    .social-link {
        min-height: 50px;
        min-width: 50px;
    }
    
    /* Remove hover effects on touch devices */
    .product-card:hover,
    .category-item:hover,
    .nav-link:hover,
    .dropdown-item:hover {
        transform: none;
    }
    
    /* Add active states for touch */
    .product-card:active,
    .category-item:active,
    .nav-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}


/* Medium tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .modal-content {
        max-width: 800px;
        width: 90%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.8rem;
    }
    
    .category-nav {
        padding: 1.5rem 1rem;
    }
    
    .category-nav-row {
        gap: 0.8rem;
    }
    
    .footer-section {
        width: 22%;
        margin: 0 1.5%;
    }
}

/* Desktop styles */
@media (min-width: 1025px) {
    .fullscreen-header {
        height: auto;
        min-height: 320px;
        padding: 3rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-content {
        width: 100vw;
        max-width: 100vw;
        padding: 0 2rem;
    }
    
    .logo-container {
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        padding: 0;
    }
    
    .main-logo {
        max-width: 100vw;
        width: 100vw;
        height: auto;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    
    /* Hide hamburger menu on desktop */
    .hamburger-menu {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
    
    .mobile-social-links {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        flex: 1;
        justify-content: center;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        transition: none;
    }
    
    .nav-right {
        display: flex;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .fullscreen-header {
        height: auto;
        min-height: 0;
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        display: block;
    }
    
    .header-content {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .logo-container {
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        padding: 0;
    }
    
    .main-logo {
        max-width: 100vw;
        width: 100vw;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .modal-content {
        max-width: 1200px;
    }
    
    .footer-section {
        width: 22%;
        margin: 0 1.5%;
    }
}

/* Performance Optimizations */
.product-card,
.category-item,
.modal-content,
.whatsapp-float,
.whatsapp-float-black {
    will-change: transform;
}

.product-image img,
.category-image img,
.modal-product-img {
    will-change: transform;
}

/* Image optimization for mobile */
@media (max-width: 768px) {
    .product-image img,
    .category-image img,
    .modal-product-img,
    .brand-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-backface-visibility: visible;
        backface-visibility: visible;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
        visibility: visible;
    }
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Preload critical images */
.main-logo {
    content-visibility: auto;
    opacity: 1;
    visibility: visible;
}

/* Ensure all images are visible */
img {
    opacity: 1;
    visibility: visible;
}

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .brand-logo,
    .main-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* GPU acceleration for animations */
.main-logo,
.whatsapp-float,
.whatsapp-float-black,
.category-item,
.product-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

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

.slide-in {
    animation: slideIn 0.3s ease-out;
}

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

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success States */
.success {
    background: #d4edda !important;
    border-color: #c3e6cb !important;
    color: #155724 !important;
}

/* Error States */
.error {
    background: #f8d7da !important;
    border-color: #f5c6cb !important;
    color: #721c24 !important;
}

/* Footer Styles */
.main-footer {
    background: #2C2C2C;
    color: white;
    margin-top: 4rem;
    padding: 3rem 0 1rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: block;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0; /* Remove whitespace between inline-block elements */
}

.footer-section {
    display: inline-block;
    vertical-align: top;
    width: 22%; /* Reduced slightly to ensure fit */
    margin: 0 1.5%;
    text-align: left;
    white-space: normal;
    font-size: 1rem; /* Restore font size */
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 0.5rem;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item i {
    color: #FFD700;
    font-size: 1.1rem;
    width: 20px;
}

.contact-item span,
.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFD700;
}

/* Hours Section */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #444;
}

.hours-item .day {
    color: white;
    font-weight: 500;
}

.hours-item .time {
    color: #FFD700;
    font-weight: 600;
}

/* Social Media Section */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-link i {
    font-size: 1.3rem;
    width: 25px;
}

.footer-social-link span {
    color: #ccc;
    font-weight: 500;
}

.footer-social-link.instagram i {
    color: #E4405F;
}

.footer-social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
    transform: translateX(5px);
}

.footer-social-link.instagram:hover span {
    color: #E4405F;
}

.footer-social-link.facebook i {
    color: #1877F2;
}

.footer-social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    transform: translateX(5px);
}

.footer-social-link.facebook:hover span {
    color: #1877F2;
}

.footer-social-link.yelp i {
    color: #FF1A1A;
}

.footer-social-link.yelp:hover {
    background: rgba(255, 26, 26, 0.1);
    transform: translateX(5px);
}

.footer-social-link.yelp:hover span {
    color: #FF1A1A;
}

/* Map Section */
.footer-map {
    position: relative;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

.map-address i {
    color: #FFD700;
    font-size: 1.1rem;
}

.map-address span {
    color: white;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 1rem 0 2rem 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-carousel .carousel-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: transparent;
    width: 100%;
    max-width: 100%;
}

.hero-carousel .carousel-track {
    display: flex;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-carousel .carousel-slide {
    min-width: 100%;
    height: clamp(280px, 45vw, 560px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
    transform: scale(1.02);
    transition: transform 600ms ease, filter 600ms ease, opacity 400ms ease;
}

.hero-carousel:hover .carousel-slide img {
    transform: scale(1.04);
    filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.4));
}

.hero-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    height: 42px;
    width: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    background: rgba(44, 44, 44, 0.55);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 250ms ease;
}

.hero-carousel .carousel-btn:hover {
    background: rgba(255, 215, 0, 0.85);
    color: #2C2C2C;
    border-color: transparent;
    transform: translateY(-50%) scale(1.05);
}

.hero-carousel .carousel-btn.prev { left: 28px; }
.hero-carousel .carousel-btn.next { right: 28px; }

.hero-carousel .carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 2;
}

.hero-carousel .carousel-dots button {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease;
}

.hero-carousel .carousel-dots button[aria-current="true"] {
    background: #FFD700;
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.18);
}

@media (max-width: 768px) {
    .hero-carousel {
        margin: 1.2rem 0 2rem 0;
        padding: 0;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        max-width: 100vw;
    }
    .hero-carousel .carousel-btn {
        height: 38px;
        width: 38px;
    }
    .hero-carousel .carousel-btn.prev { left: 14px; }
    .hero-carousel .carousel-btn.next { right: 14px; }
}
