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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e3a5f; /* Deep ocean blue for zen feeling */
    background: linear-gradient(135deg, #f8fbff 0%, #f0f8ff 100%); /* Soft ocean-inspired background */
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

/* Header */
header {
    background: rgba(248, 251, 255, 0.98); /* Soft ocean white with transparency */
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2); /* Subtle ocean blue border */
    box-shadow: 0 2px 20px rgba(74, 144, 226, 0.1); /* Gentle ocean blue shadow */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3a5f; /* Deep ocean blue */
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(74, 144, 226, 0.2);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f; /* Deep ocean blue */
    letter-spacing: 3px;
    text-shadow: 0 1px 3px rgba(74, 144, 226, 0.3); /* Subtle ocean blue glow */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Desktop navigation visibility */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        flex-direction: row !important;
        padding-top: 0 !important;
        box-shadow: none !important;
    }
}

.nav-links a {
    text-decoration: none;
    color: #1e3a5f; /* Deep ocean blue */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #4a90e2; /* Ocean blue hover */
    text-shadow: 0 1px 3px rgba(74, 144, 226, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #5ba0f2);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 70vh; /* desktop height */
    overflow: hidden;
    min-height: unset;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(30, 58, 95, 0.15)), 
                linear-gradient(45deg, #f0f8ff, #f8fbff),
                url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover; /* Ocean/water zen background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    padding-top: 100px; /* Space for fixed header */
    color: #1e3a5f; /* Deep ocean blue text */
    position: relative;
    text-align: center;
    overflow-x: hidden; /* Prevent horizontal scroll */
    box-shadow: inset 0 0 100px rgba(74, 144, 226, 0.1); /* Inner ocean blue glow */
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4a90e2, #2c5aa0); /* Ocean blue gradient */
    color: #f8fbff; /* Light ocean white text */
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    color: #f8fbff;
    text-decoration: none;
}

/* Hero Banner Carousel */
.hero-banner {
    width: 90%;
    max-width: 600px;
    background: rgba(248, 251, 255, 0.98); /* Soft ocean white background */
    border-radius: 20px;
    padding: 2rem;
    color: #1e3a5f; /* Deep ocean blue */
    backdrop-filter: blur(15px);
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15), 
                0 0 0 1px rgba(74, 144, 226, 0.1); /* Ocean blue shadow and border */
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #4a90e2, #2c5aa0); /* Ocean blue gradient */
    color: #f8fbff; /* Light ocean white text */
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.banner-nav:hover {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.banner-nav.prev {
    left: -20px;
}

.banner-nav.next {
    right: -20px;
}

.banner-content {
    text-align: center;
    display: none;
}

.banner-content.active {
    display: block;
    animation: slideInFromRight 0.6s ease-out;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a5f; /* Deep ocean blue */
    text-shadow: 0 1px 2px rgba(74, 144, 226, 0.2);
}

.banner-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(74, 144, 226, 0.5);
}

.dot.active {
    background: linear-gradient(135deg, #4a90e2, #2c5aa0);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(30, 58, 95, 0.05));
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234a90e2' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 6.627-5.373 12-12 12s-12-5.373-12-12 5.373-12 12-12 12 5.373 12 12zm-12-8a8 8 0 1 0 0 16 8 8 0 0 0 0-16z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1e3a5f, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.1);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #2c5aa0);
    border-radius: 2px;
}

.about-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-item {
    padding: 2rem;
    background: rgba(248, 251, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    text-align: center;
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #2c5aa0);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.25);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3a5f; /* Deep ocean blue */
}

.value-item h3 i {
    color: #4a90e2; /* Ocean blue icons */
    margin-right: 0.5rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Business Section */
.business {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    position: relative;
}

.business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Business Tabs */
.business-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.tab-btn {
    background: rgba(248, 251, 255, 0.9);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f; /* Deep ocean blue */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    border-color: #4a90e2;
    color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #4a90e2, #2c5aa0);
    border-color: #4a90e2;
    color: #f8fbff; /* Light ocean white text */
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.business-content.hidden {
    display: none;
}

.business-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f; /* Deep ocean blue */
    text-shadow: 0 1px 3px rgba(74, 144, 226, 0.2);
}

.business-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.business-text ul {
    list-style: none;
    padding: 0;
}

.business-text li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.business-text li:before {
    content: "✓";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.business-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

/* Influencer Benefits */
.influencer-benefits {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.influencer-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, rgba(30, 58, 95, 0.03) 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a90e2' fill-opacity='0.02'%3E%3Ccircle cx='7' cy='7' r='7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background: rgba(248, 251, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 480px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #2c5aa0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.25);
}

.product-card:hover::before {
    opacity: 1;
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

/* Variation Badge */
.variation-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #4a90e2, #2c5aa0);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

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

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a5f; /* Deep ocean blue */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(74, 144, 226, 0.1);
}

.product-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.spec-tag {
    padding: 0.3rem 0.8rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6c757d;
}

/* Hidden Products */
.products-grid .product-card.hidden {
    display: none;
}

/* Expand Hint Card */
.expand-hint-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 250px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.expand-hint-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.expand-content h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: white;
}

.expand-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.expand-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.expand-hint-card.hidden {
    display: none;
}

/* Product Toggle Button */
.products-toggle {
    text-align: center;
    margin-bottom: 3rem;
}

.toggle-btn {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

/* Fixed Toggle Button */
.products-toggle-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-toggle-fixed.visible {
    opacity: 1;
}

/* WhatsApp Button Colors to Ocean Blue */
.whatsapp-btn {
    background: linear-gradient(135deg, #4a90e2, #2c5aa0) !important;
    color: #f8fbff !important;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2) !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.whatsapp-fixed .whatsapp-btn {
    background: linear-gradient(45deg, #4a90e2, #2c5aa0) !important;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.whatsapp-fixed .whatsapp-btn:hover {
    background: linear-gradient(45deg, #2c5aa0, #4a90e2) !important;
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
}

.email-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.email-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Font Awesome Icon Spacing */
.fas, .fab {
    margin-right: 0.5rem;
}

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

.modal-content {
    background-color: rgba(248, 251, 255, 0.98); /* Soft ocean white background */
    margin: 2% auto;
    padding: 0;
    border-radius: 25px;
    width: 95%;
    max-width: 1000px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(74, 144, 226, 0.3);
    backdrop-filter: blur(15px);
}

.modal-header {
    position: relative;
    padding: 0;
}

/* Modal Carousel */
.modal-carousel {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px 20px 0 0;
}

.modal-carousel-container {
    display: flex;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.modal-carousel-slide {
    min-width: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.modal-carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: white;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(0,0,0,0.9);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

.modal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: #f8f9fa;
}

.modal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-dot.active {
    background: #3498db;
}

.modal-dot:hover {
    background: #3498db;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    border: 2px solid rgba(255,255,255,0.3);
}

.close:hover {
    background: rgba(0,0,0,0.9);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.05);
}

.modal-body {
    padding: 2rem;
    flex: 1;
    padding-bottom: 120px; /* Space for fixed buttons */
}

.modal-title {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a5f, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.1);
}

.product-features {
    margin: 1.5rem 0;
}

.features-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
    transition: color 0.3s ease;
}

.features-header:hover {
    color: #3498db;
}

.features-toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
}

.features-list.collapsed {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.features-list.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 1rem;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Product Variations */
.product-variations {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.variation-group {
    margin-bottom: 1rem;
}

.variation-group h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.variation-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.variation-option {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variation-option:hover {
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.variation-option.active {
    background: #3498db;
    border-color: #3498db;
    color: white;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.variation-option.active:hover {
    background: #2980b9;
    border-color: #2980b9;
}

/* EBC Images */
.ebc-images {
    margin: 2rem 0;
}

.ebc-image {
    width: 100%;
    max-width: 907px;
    height: auto;
    aspect-ratio: 907/600;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Fixed Bottom Actions */
.modal-actions-fixed {
    position: sticky;
    bottom: 0;
    background: rgba(248, 251, 255, 0.98); /* Soft ocean white background */
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 -5px 20px rgba(74, 144, 226, 0.15);
    backdrop-filter: blur(10px);
}

.action-btn {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.buy-btn {
    background: #27ae60;
    color: white;
}

.buy-btn:hover {
    background: #229954;
    color: white;
    text-decoration: none;
}

.refund-btn {
    background: #e74c3c;
    color: white;
}

.refund-btn:hover {
    background: #c0392b;
    color: white;
    text-decoration: none;
}

.bulk-btn {
    background: #f39c12;
    color: white;
}

.bulk-btn:hover {
    background: #d68910;
    color: white;
    text-decoration: none;
}

/* View Details Button */
.view-details-btn {
    background: linear-gradient(135deg, #4a90e2, #2c5aa0);
    color: #f8fbff; /* Light ocean white text */
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    margin-top: auto;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

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

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    transform: translateY(-2px);
    color: #f8fbff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Policy Section */
.policy {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.03), rgba(74, 144, 226, 0.03));
    position: relative;
}

.policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(74, 144, 226, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.policy-card {
    background: rgba(248, 251, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #2c5aa0);
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.25);
}

.policy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a5f; /* Deep ocean blue */
}

.policy-card h3 i {
    color: #4a90e2; /* Ocean blue icons */
    margin-right: 0.5rem;
}

.policy-card ul {
    text-align: left;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-card li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Customer Review Section */
.customer-review {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(30, 58, 95, 0.05));
    text-align: center;
    position: relative;
}

.customer-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234a90e2' fill-opacity='0.02'%3E%3Cpath d='M20 20l20 20-20 20z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.review-content {
    margin: 0 auto;
    padding: 3rem;
    background: rgba(248, 251, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.review-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #2c5aa0);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
}

/* Customer Review Layout */
.review-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.review-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Verified Badge - Award Style */
.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 140px;
    border: 2px solid #d35400;
    transform: rotate(-8deg);
    animation: badgePulse 3s ease-in-out infinite;
}

.verified-badge i {
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.badge-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.badge-subtitle {
    font-size: 0.6rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 1px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: rotate(-8deg) scale(1);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    }
    50% {
        transform: rotate(-8deg) scale(1.05);
        box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
    }
}

.review-text-content {
    text-align: left;
}

.stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: #2c3e50;
}

.review-source {
    color: #777;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%); /* Deep ocean blue gradient */
    color: #f8fbff; /* Light ocean white text */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact .section-title {
    background: linear-gradient(135deg, #f8fbff, #87ceeb) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 2px 4px rgba(135, 206, 235, 0.3) !important;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-item {
    padding: 2rem;
    background: rgba(248, 251, 255, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(135, 206, 235, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(248, 251, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%); /* Deep ocean blue gradient */
    color: #f8fbff; /* Light ocean white text */
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(135, 206, 235, 0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(135, 206, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
    }
    
    *, *::before, *::after {
        max-width: 100%;
        box-sizing: border-box;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    .container, .hero-banner, .modal-content {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(248, 251, 255, 0.98); /* Soft ocean white background */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15); /* Ocean blue shadow */
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: linear-gradient(135deg, #4a90e2, #2c5aa0); /* Ocean blue gradient */
        color: #f8fbff; /* Light ocean white text */
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }

    .menu-toggle {
        display: flex;
    }

    /* Header height adjustment */
    nav {
        padding: 1rem 0;
        height: 80px;
        display: flex;
        align-items: center;
    }

    /* Hero Section */
    .hero {
        height: auto; /* allow content-driven */
        min-height: 90vh; /* ensure tall on mobile */
        padding-top: 100px;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden; /* Prevent individual scrolling */
        position: relative;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-banner {
        max-width: 100%;
        margin: 0 1rem;
    }

    .banner-nav {
        display: none;
    }

    /* Section spacing and hierarchy */
    section {
        padding: 60px 0;
        margin-bottom: 2rem;
        border-bottom: 3px solid #f8f9fa;
        position: relative;
    }

    section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #4a90e2, transparent);
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .container {
        padding: 0 1rem;
    }

    /* Grid layouts */
    .business-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .policy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Modal improvements */
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-carousel-slide img {
        height: 250px;
    }

    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .modal-nav.prev {
        left: 15px;
    }

    .modal-nav.next {
        right: 15px;
    }

    .close {
        width: 55px;
        height: 55px;
        font-size: 32px;
        top: 10px;
        right: 15px;
        background: rgba(0,0,0,0.8);
        border: 3px solid rgba(255,255,255,0.4);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .close:active {
        transform: scale(0.95);
    }

    .modal-body {
        padding: 1rem;
        padding-bottom: 120px;
    }

    /* Fixed: Mobile modal actions in one row */
    .modal-actions-fixed {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .action-btn {
        flex: 1;
        min-width: 0;
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .ebc-image {
        margin-bottom: 0.5rem;
    }

    .variation-options {
        justify-content: center;
    }

    .expand-hint-card {
        min-height: 200px;
    }

    .expand-icon {
        font-size: 1.5rem;
    }

    .expand-content h3 {
        font-size: 1.3rem;
    }

    .business-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 90%;
        text-align: center;
        justify-content: center;
    }

    .benefit-card {
        padding: 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .product-specs {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .spec-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    /* Review layout mobile */
    .review-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .review-text-content {
        text-align: center;
    }

    .review-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }

    /* Fixed WhatsApp button positioning */
    .whatsapp-fixed {
        bottom: 20px;
        right: 15px;
        z-index: 1001;
    }

    .whatsapp-fixed .whatsapp-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Policy section title fix */
    #warranty .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        word-break: break-word;
        hyphens: auto;
    }

    /* Contact section mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    /* Image modal mobile */
    .image-modal-content {
        margin: 10% auto;
        max-width: 95%;
    }

    .image-close {
        top: -30px;
        font-size: 28px;
    }

    .verified-badge {
        top: 8px;
        right: 8px;
        padding: 6px 8px;
        max-width: 110px;
        gap: 6px;
    }

    .verified-badge i {
        font-size: 1rem;
    }

    .badge-title {
        font-size: 0.65rem;
    }

    .badge-subtitle {
        font-size: 0.55rem;
    }
}

/* Amazon Store Link */
.amazon-store-link {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.amazon-store-link p {
    font-size: 1.1rem;
    margin: 0;
    color: #2c3e50;
}

.amazon-store-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.amazon-store-link a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Customer Review Stats */
.review-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
}

.stat-item .stars {
    height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

/* Ensure items without stars reserve same space */
.stat-item:not(:has(.stars))::before {
    content: '';
    display: block;
    height: 1.6rem;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-fixed .whatsapp-btn {
    background: linear-gradient(45deg, #4a90e2, #2c5aa0) !important;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-fixed .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
    background: linear-gradient(45deg, #2c5aa0, #4a90e2) !important;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .review-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .amazon-store-link {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .amazon-store-link p {
        font-size: 1rem;
    }
    
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-fixed .whatsapp-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .variation-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .review-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .review-text-content {
        text-align: center;
    }
    
    .verified-badge {
        top: 8px;
        right: 8px;
        padding: 6px 8px;
        max-width: 110px;
        gap: 6px;
    }
    
    .verified-badge i {
        font-size: 1rem;
    }
    
    .badge-title {
        font-size: 0.65rem;
    }
    
    .badge-subtitle {
        font-size: 0.55rem;
    }
    
    .image-modal-content {
        margin: 10% auto;
        max-width: 95%;
    }
    
    .image-close {
        top: -30px;
        font-size: 28px;
    }
    
    .image-header h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .image-header h3 i {
        font-size: 1.5rem;
    }
    
    .image-header p {
        font-size: 0.9rem;
    }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.image-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-close:hover {
    color: #ccc;
}

.image-header {
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.image-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f39c12;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.image-header h3 i {
    color: #ffd700;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.image-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
} 