/* ============================================
   RESET & BASE STYLES - FIXED
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

/* Prevent body scroll when modals are open - FIXED */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Prevent text selection on interactive elements */
button, .product-card, .filter-btn, .thumbnail {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Touch-friendly minimum sizes */
button, a, .filter-btn, .thumbnail {
    min-height: 44px;
    min-width: 44px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes modalSlide {
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        opacity: 0.7;
    }
    50% { 
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
        opacity: 1;
    }
}

/* ============================================
   DISCLAIMER MODAL - FIXED
   ============================================ */
.disclaimer-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.4s ease;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.disclaimer-content {
    position: relative;
    background: white;
    margin: auto;
    padding: 2rem;
    border-radius: 25px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.disclaimer-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease infinite;
}

.disclaimer-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.disclaimer-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.disclaimer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.badge-icon {
    font-size: 1.5rem;
}

.disclaimer-note {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin-top: 1.5rem;
}

.disclaimer-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    min-height: 44px;
}

.disclaimer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #667eea;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.canada-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.header-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ============================================
   MOBILE MENU - FIXED
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    order: 4;
    margin-left: auto;
    min-height: 44px;
    min-width: 44px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
    background: #764ba2;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-content {
    position: relative;
    background: white;
    width: 80%;
    max-width: 320px;
    height: 100%;
    margin-left: auto;
    padding: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.4s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 3rem;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    min-height: 44px;
}

.mobile-nav a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
}

.mobile-social {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* ============================================
   PROMO BANNER & PARTNERS
   ============================================ */
.promo-banner {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.6s ease 0.3s backwards;
}

.promo-content {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.promo-content strong {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.partners-section {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partners-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.partners-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.partner-name {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.partner-divider {
    color: #667eea;
    font-weight: bold;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    max-width: 1400px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
    animation: fadeIn 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* ============================================
   CATEGORY FILTER
   ============================================ */
.category-filter {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    min-height: 44px;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: cardFadeIn 0.6s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    -webkit-touch-callout: none;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.product-card:active {
    transform: scale(0.98);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform 0.4s ease;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-rating {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.product-desc {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

/* ============================================
   MODAL STYLES - COMPLETELY FIXED
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}

.modal-content {
    position: relative;
    background: white;
    margin: 20px auto;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}

.modal-large {
    max-width: 1100px;
    width: 95%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #333;
    background: #f5f5f5;
    transform: rotate(90deg);
}

/* ============================================
   PRODUCT DETAIL MODAL - FIXED
   ============================================ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-product-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
}

.thumbnail {
    height: 80px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
    overflow: hidden;
    min-height: 44px;
    min-width: 44px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnail:hover {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.thumbnail.active {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.product-detail-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.product-detail-rating {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    display: inline-block;
}

.product-detail-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #667eea;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.product-detail-description {
    color: #666;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ============================================
   SIZE & COLOR SELECTION
   ============================================ */
.size-selection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.size-selection h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.size-btn {
    padding: 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    text-align: center;
    font-family: inherit;
    min-height: 44px;
}

.size-btn:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.size-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.size-price {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.3rem;
    font-weight: 700;
}

.size-btn.active .size-price {
    color: white;
}

.color-selection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.color-selection h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

#selectedColorName {
    color: #667eea;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.color-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-btn {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-family: inherit;
    padding: 0;
    min-height: 44px;
    min-width: 44px;
}

.color-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.color-btn.active {
    border-color: #667eea;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.5);
    transform: scale(1.1);
}

.color-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   PRODUCT FEATURES
   ============================================ */
.product-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.8rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.product-features li:before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ============================================
   BUY BUTTON
   ============================================ */
.buy-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    touch-action: manipulation;
    min-height: 44px;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.buy-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ============================================
   ORDER FORM
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.cod-badge {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease;
}

.success-message h2 {
    color: #333;
    margin-bottom: 1rem;
}

.success-message p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.loading {
    display: none;
    text-align: center;
    padding: 2rem;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loading p {
    font-size: 1.1rem;
    color: #666;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    line-height: 1.6;
}

.about-text p {
    line-height: 1.8;
    color: #555;
}

.owner-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.owner-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.owner-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.owner-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.owner-title {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.owner-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.95;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   POLICIES SECTION
   ============================================ */
.policies-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.policies-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.policy-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.policy-card:hover::before {
    transform: scaleX(1);
}

.policy-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem 0;
    color: #333;
    font-weight: 600;
}

.policy-content h4:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}

.policy-content li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

.policy-content li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.policy-content strong {
    color: #333;
    font-weight: 600;
}

.policy-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
    margin-top: 2rem;
}

.policy-note p {
    color: #856404;
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

.policy-note strong {
    color: #856404;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-desc {
    color: #95a5a6;
    line-height: 1.6;
}

.footer-links,
.footer-contact,
.footer-partners {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li,
.footer-partners li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact li,
.footer-partners li {
    color: #bdc3c7;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-credits {
    font-weight: 600;
    color: #bdc3c7;
}

/* ============================================
   IMAGE ZOOM VIEWER
   ============================================ */
.image-zoom-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
}

.image-zoom-viewer.active {
    display: flex;
    opacity: 1;
}

.zoom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 10001;
}

.zoom-back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    font-size: 1rem;
    font-weight: 600;
    min-height: 44px;
}

.zoom-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.zoom-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    touch-action: pan-x pan-y pinch-zoom;
}

#zoomedImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center center;
}

.zoom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 10001;
}

.zoom-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.zoom-indicator {
    font-size: 1rem;
    font-weight: 600;
}

.image-zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

/* ============================================
   RESPONSIVE DESIGN - COMPLETELY FIXED
   ============================================ */

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .products {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .policies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .policy-card {
        padding: 2rem;
    }
}

/* Mobile Styles (768px and below) - FIXED SCROLLING */
@media (max-width: 768px) {
    body {
        padding-bottom: 0;
        font-size: 16px;
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }

    /* Header Mobile */
    header {
        padding: 0.8rem 1rem;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .canada-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }
    
    .header-social {
        display: none;
    }

    /* Promo & Partners Mobile */
    .promo-banner {
        padding: 0.8rem 1rem;
    }
    
    .promo-content {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .promo-content strong {
        font-size: 0.85rem;
    }
    
    .partners-section {
        padding: 0.8rem 1rem;
    }
    
    .partners-content {
        flex-direction: column;
        gap: 0.4rem;
        font-size: 0.85rem;
    }
    
    .partners-label {
        font-size: 0.75rem;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
    
    .partner-divider {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        margin: 2rem auto 1.5rem;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Category Filter Mobile */
    .category-filter {
        gap: 0.5rem;
        padding: 0 1rem;
        margin: 1.5rem auto;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Products Grid Mobile */
    .products {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .product-card {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .product-image {
        height: 220px;
        font-size: 3.5rem;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
    
    .product-desc {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.6rem;
    }

    /* Modal Mobile - CRITICAL FIXES */
    .modal {
        align-items: flex-start;
        padding: 10px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 95%;
        margin: 10px auto;
        padding: 1.5rem;
        max-height: 85vh;
        border-radius: 15px;
        animation: slideUp 0.4s ease;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-large {
        max-width: 95%;
        padding: 1.2rem;
        margin: 5px auto;
    }
    
    .modal-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .close-btn {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }

    /* Product Detail Mobile */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-product-image {
        height: 280px;
        font-size: 6rem;
        border-radius: 15px;
        cursor: pointer;
        position: relative;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.6rem;
    }
    
    .thumbnail {
        height: 60px;
        font-size: 1.5rem;
        border-radius: 10px;
    }
    
    .product-detail-info h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .product-detail-rating {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .product-detail-rating .stars {
        font-size: 0.9rem;
    }
    
    .product-detail-rating .rating-text {
        font-size: 0.8rem;
    }
    
    .product-detail-price {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .product-detail-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Size & Color Selection Mobile */
    .size-selection,
    .color-selection {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .size-selection h3,
    .color-selection h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .size-options {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 0.8rem;
    }
    
    .size-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .size-price {
        font-size: 1rem;
    }
    
    .color-btn {
        width: 45px;
        height: 45px;
    }
    
    .color-check {
        font-size: 1.3rem;
    }

    /* Product Features Mobile */
    .product-features {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .product-features h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .product-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .product-features li:before {
        font-size: 1.2rem;
    }

    /* Buy Button Mobile */
    .buy-btn {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    /* Form Mobile */
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .cod-badge {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    /* Success Message Mobile */
    .success-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    .success-message h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .success-message p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Loading Spinner Mobile */
    .spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .loading p {
        font-size: 0.95rem;
    }

    /* About Section Mobile */
    .about-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .owner-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .owner-icon {
        font-size: 3rem;
    }
    
    .owner-name {
        font-size: 1.3rem;
    }
    
    .owner-title {
        font-size: 0.85rem;
    }
    
    .owner-bio {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .value-card h4 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }

    /* Policies Mobile */
    .policies-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
        border-radius: 15px;
    }
    
    .policies-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policy-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .policy-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .policy-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .policy-content h4 {
        font-size: 1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .policy-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .policy-content li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .policy-note {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .policy-note p {
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem 1rem;
        margin-top: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links,
    .footer-contact,
    .footer-partners {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li,
    .footer-contact li,
    .footer-partners li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .footer-credits {
        font-size: 0.85rem;
    }

    /* Image Zoom Mobile */
    .image-zoom-hint {
        display: block;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    /* Disclaimer Mobile */
    .disclaimer-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: 90%;
    }
    
    .disclaimer-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .disclaimer-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .disclaimer-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .disclaimer-badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        gap: 0.6rem;
        margin: 1rem 0;
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
    
    .disclaimer-note {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .disclaimer-btn {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .product-image {
        height: 200px;
        font-size: 3rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
    
    .main-product-image {
        height: 240px;
        font-size: 5rem;
    }
    
    .thumbnail {
        height: 50px;
        font-size: 1.3rem;
    }
    
    .product-detail-info h2 {
        font-size: 1.4rem;
    }
    
    .product-detail-price {
        font-size: 1.8rem;
    }
    
    .size-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    
    .size-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
    
    .color-btn {
        width: 40px;
        height: 40px;
    }
    
    .policies-section {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0.5rem;
    }
    
    .policies-intro {
        font-size: 1rem;
    }
    
    .policy-card {
        padding: 1.2rem;
    }
    
    .policy-icon {
        font-size: 2.5rem;
    }
    
    .policy-card h3 {
        font-size: 1.2rem;
    }
    
    .policy-content h4 {
        font-size: 0.95rem;
    }
    
    .policy-content p {
        font-size: 0.9rem;
    }
    
    .policy-content li {
        font-size: 0.85rem;
    }
    
    .policy-note {
        padding: 1.2rem;
    }
    
    .policy-note p {
        font-size: 0.9rem;
    }
}

/* Desktop-only hover effects */
@media (min-width: 769px) {
    .image-zoom-hint {
        display: none;
    }
}

/* Touch device optimizations - FIXED */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:active {
        transform: scale(0.97);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
    }
    
    .filter-btn:hover {
        transform: none;
    }
    
    .filter-btn:active {
        transform: scale(0.95);
    }
    
    .buy-btn:hover {
        transform: none;
    }
    
    .buy-btn:active {
        transform: scale(0.98);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    }
    
    button:active, 
    .size-btn:active, 
    .color-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}

/* Prevent body scroll when modals are open - FIXED */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Scrollbar styling for better UX */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

/* Orientation specific fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        max-height: 80vh;
        margin: 10px auto;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .main-product-image {
        height: 200px;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .modal-content {
        max-height: 85vh;
    }
}

/* ============================================
   COMING SOON MODAL STYLES
   ============================================ */
.coming-soon-content {
    text-align: center;
    padding: 2rem;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coming-soon-content ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1rem;
    list-style: none;
}

.coming-soon-content li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-action {
    margin: 2rem 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    min-height: 44px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.close-coming-soon-btn {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-height: 44px;
}

.close-coming-soon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 102, 102, 0.3);
}

/* ============================================
   POLICIES ACCORDION STYLES
   ============================================ */
.policies-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.policy-accordion-item {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.policy-accordion-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.policy-accordion-header {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 44px;
}

.policy-accordion-header:hover {
    background: #f8f9fa;
}

.policy-accordion-header.active {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #667eea;
}

.policy-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-header-content .policy-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.policy-header-content h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.accordion-arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
    color: #667eea;
    font-weight: bold;
    flex-shrink: 0;
}

.policy-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.policy-accordion-content > * {
    padding: 0 1.5rem;
}

.policy-accordion-content h4 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.policy-accordion-content h4:first-child {
    margin-top: 1.5rem;
}

.policy-accordion-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}

.policy-accordion-content li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
    font-size: 1rem;
}

.policy-accordion-content li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.policy-accordion-content strong {
    color: #333;
    font-weight: 600;
}

/* ============================================
   COMING SOON BUTTON STYLES
   ============================================ */
.coming-soon-btn {
    background: linear-gradient(135deg, #666 0%, #555 100%) !important;
    cursor: not-allowed !important;
    opacity: 0.8;
}

.coming-soon-btn:hover {
    background: linear-gradient(135deg, #666 0%, #555 100%) !important;
    transform: none !important;
    box-shadow: 0 10px 30px rgba(102, 102, 102, 0.3) !important;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW COMPONENTS
   ============================================ */

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
    .policies-accordion {
        max-width: 90%;
    }
    
    .policy-header-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-header-content .policy-icon {
        font-size: 1.6rem;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 1.5rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
    
    .coming-soon-content li {
        font-size: 0.95rem;
    }
    
    .whatsapp-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .close-coming-soon-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .policies-accordion {
        max-width: 100%;
    }
    
    .policy-accordion-header {
        padding: 1.2rem;
    }
    
    .policy-header-content {
        gap: 0.8rem;
    }
    
    .policy-header-content .policy-icon {
        font-size: 1.4rem;
    }
    
    .policy-header-content h3 {
        font-size: 1.1rem;
    }
    
    .policy-accordion-content > * {
        padding: 0 1.2rem;
    }
    
    .policy-accordion-content h4 {
        font-size: 1rem;
        margin-top: 1.2rem;
    }
    
    .policy-accordion-content p {
        font-size: 0.95rem;
    }
    
    .policy-accordion-content li {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .coming-soon-content {
        padding: 1rem;
    }
    
    .coming-soon-icon {
        font-size: 2.5rem;
    }
    
    .coming-soon-content p {
        font-size: 0.95rem;
    }
    
    .coming-soon-content li {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .policy-accordion-header {
        padding: 1rem;
    }
    
    .policy-header-content {
        gap: 0.6rem;
    }
    
    .policy-header-content .policy-icon {
        font-size: 1.2rem;
    }
    
    .policy-header-content h3 {
        font-size: 1rem;
    }
    
    .policy-accordion-content > * {
        padding: 0 1rem;
    }
    
    .policy-accordion-content h4 {
        font-size: 0.95rem;
    }
    
    .policy-accordion-content p {
        font-size: 0.9rem;
    }
    
    .policy-accordion-content li {
        font-size: 0.85rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .policy-accordion-header:hover {
        background: white;
    }
    
    .policy-accordion-header:active {
        background: #f8f9fa;
    }
    
    .whatsapp-btn:hover {
        transform: none;
    }
    
    .whatsapp-btn:active {
        transform: scale(0.98);
    }
    
    .close-coming-soon-btn:hover {
        transform: none;
    }
    
    .close-coming-soon-btn:active {
        transform: scale(0.98);
    }
}

