:root {
    /* Primary Brand Colors - Sophisticated Teal Palette */
    --primary: #1B5E6B; /* Deeper, more sophisticated teal */
    --primary-light: #4A8B96; /* Refined lighter teal */
    --primary-ultra-light: #7DB3BC; /* Ultra light teal for accents */

    /* Secondary Colors - Warm Gold Palette */
    --secondary: #D4A574; /* Refined warm gold */
    --secondary-light: #E6C299; /* Light gold for highlights */
    --secondary-dark: #B8935F; /* Deeper gold for contrast */

    /* Neutral Palette - Modern Grays */
    --dark: #1A2428; /* Rich charcoal */
    --dark-medium: #2F3E44; /* Medium dark gray */
    --gray: #5A6B72; /* Sophisticated mid-gray */
    --gray-light: #8B9BA3; /* Light gray for text */
    --light: #F8FAFB; /* Ultra-light background */
    --light-warm: #FDFCFA; /* Warm light background */
    --white: #FFFFFF;

    /* Accent Colors */
    --accent-mint: #A8E6CF; /* Soft mint for wellness feel */
    --accent-sage: #B8D4C7; /* Sage green for natural elements */
    --accent-cream: #F5F2E8; /* Warm cream for backgrounds */
    --light-green: #A8E6CF; /* Soft mint for hero title - matches accent-mint */

    /* Functional Colors */
    --success: #4A9B8E; /* Sophisticated success green */
    --warning: #E6B566; /* Refined warning amber */
    --error: #C85A54; /* Muted error red */
    --info: #6B9BD2; /* Calming info blue */

    /* Overlay Colors */
    --overlay-color: rgba(248, 250, 251, 0.4);
    --overlay-color-mobile: rgba(248, 250, 251, 0.5);
    --overlay-color-small: rgba(248, 250, 251, 0.6);

    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(27, 94, 107, 0.08);
    --shadow-medium: 0 8px 30px rgba(27, 94, 107, 0.12);
    --shadow-strong: 0 15px 40px rgba(27, 94, 107, 0.16);
    --glow-primary: 0 0 20px rgba(27, 94, 107, 0.3);
    --glow-secondary: 0 0 20px rgba(212, 165, 116, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Shop Button Enhancements */
.custom-buy-btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-buy-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 ease;
    z-index: 1;
}

.custom-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(232, 192, 125, 0.4) !important;
}

.custom-buy-btn:hover::before {
    left: 100%;
}

.custom-buy-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Mobile optimizations for custom shop */
@media (max-width: 768px) {
    .custom-buy-btn {
        font-size: 0.9rem !important;
        padding: 1rem 1.5rem !important;
        width: clamp(70%, 85vw, 300px) !important;
        max-width: 300px !important;
        white-space: nowrap !important;
    }
}

/* Extra small screens - even more conservative sizing */
@media (max-width: 480px) {
    .custom-buy-btn {
        font-size: 0.85rem !important;
        padding: 0.9rem 1.2rem !important;
        width: clamp(75%, 90vw, 280px) !important;
        max-width: 280px !important;
    }
}

/* Add smooth scrolling behavior to the entire page */
html {
    scroll-behavior: smooth;
}

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

/* Global fix for video orientation issues - AGGRESSIVE FIX FOR UPSIDE DOWN VIDEO */
video {
    /* Force normal orientation with multiple approaches */
    transform: scale(1, 1) rotate(0deg) !important;
    -webkit-transform: scale(1, 1) rotate(0deg) !important;
    -moz-transform: scale(1, 1) rotate(0deg) !important;
    -ms-transform: scale(1, 1) rotate(0deg) !important;
    -o-transform: scale(1, 1) rotate(0deg) !important;

    /* Force transform origin */
    transform-origin: center center !important;
    -webkit-transform-origin: center center !important;
    -moz-transform-origin: center center !important;
    -ms-transform-origin: center center !important;
    -o-transform-origin: center center !important;

    /* Ensure no 3D transforms */
    transform-style: flat !important;
    -webkit-transform-style: flat !important;

    /* Ensure visibility */
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;

    /* Prevent browser-specific flipping */
    filter: none !important;
    -webkit-filter: none !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-medium), 0 0 0 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover:before {
    transform: translateX(100%);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Urgency Banner */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(45deg, var(--error), #B8493F);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    top: 60px; /* Position below urgency banner */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--dark);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 99997; /* Very high z-index to ensure hamburger icon is always clickable */
    position: relative;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--primary-ultra-light);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.mobile-menu:hover {
    background: var(--light);
    border-color: var(--primary);
    transform: scale(1.05);
}

.mobile-menu div {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Navigation - Hidden by default, positioned for full-screen overlay */
.mobile-nav {
    display: none;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    background: var(--white);
    width: 90%;
    max-width: 400px;
    max-height: 80vh; /* Consistent max height */
    min-height: 300px;
    padding: 1.5rem 1.5rem 4rem 1.5rem; /* Extra bottom padding for Instagram button */
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(27, 94, 107, 0.1);
    z-index: 99999;
    overflow-y: auto;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Force fixed positioning with !important to override any interference */
    margin: 0 !important;
    inset: auto !important;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
}

/* Mobile menu backdrop overlay */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.mobile-nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile nav header with close button */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary-ultra-light);
}

.mobile-nav-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.mobile-nav-close {
    background: var(--light);
    border: 1px solid var(--primary-ultra-light);
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-weight: 300;
}

.mobile-nav-close:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.mobile-nav ul li {
    margin: 0;
    width: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.2rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    background: var(--light);
    text-align: center;
    border: 1px solid var(--primary-ultra-light);
    letter-spacing: -0.01em;
    min-height: 50px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Instagram button in bottom left corner of mobile menu */
.mobile-nav-instagram {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.instagram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    border: none;
}

.instagram-button:hover,
.instagram-button:focus {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.instagram-button svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-link.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E1306C, #F56040);
    color: var(--white);
    font-weight: 600;
    border: 1px solid transparent;
    margin-top: 0.5rem;
}

.mobile-nav-link.social-link:hover {
    background: linear-gradient(135deg, #C13584, #E1306C);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.mobile-nav-link.social-link svg {
    fill: var(--white);
    margin-right: 8px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hero Section with Parallax Effect */
.hero {
    height: 100vh;
    min-height: 600px; /* Minimum height for smaller screens */
    max-height: 100vh; /* Ensure it doesn't exceed viewport height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    width: 100%; /* Ensure full width */
    background-color: #000; /* Black background */
    z-index: 0; /* Ensure proper stacking */
}

/* Fixed background with zoom capability */
.parallax-bg {
    position: fixed; /* Fixed position to stay in place during scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform-origin: center center; /* Ensure zoom happens from center */
    transition: transform 0.1s ease-out; /* Smooth zoom effect */
    will-change: transform; /* Optimize for animation performance */
}

/* Hero overlay for better text readability - fixed with background */
.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
                rgba(0,0,0,0.4) 0%,
                rgba(0,0,0,0.2) 50%,
                rgba(0,0,0,0.4) 100%);
    z-index: -1;
    transform-origin: center center; /* Match background zoom origin */
    transition: transform 0.1s ease-out; /* Smooth zoom effect */
    will-change: transform; /* Optimize for animation performance */
}

/* Even lighter radial overlay with further reduced opacity for better video visibility */
.radial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.2) 40%,
                rgba(255, 255, 255, 0.35) 100%);
    z-index: 0;
    pointer-events: none; /* Allow clicks to pass through */
    backdrop-filter: blur(0.5px); /* Very subtle blur for better text contrast */
    -webkit-backdrop-filter: blur(0.5px); /* For Safari support */
}

/* Content styling with enhanced container */
.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2; /* Ensure content is above the fixed background */
    text-align: center;
    padding: 3rem;
    background-color: transparent;
    will-change: transform; /* Optimizes for animation performance */
    transition: transform 0.1s ease-out; /* Smooth movement */
}

/* Minimal container for subtitle and buttons with subtle styling */
.hero-text-container {
    padding: 2.5rem 3rem;
    background-color: rgba(0, 0, 0, 0.2); /* Very subtle dark background */
    backdrop-filter: blur(5px); /* Subtle blur for better readability */
    -webkit-backdrop-filter: blur(5px); /* For Safari support */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300; /* Lighter weight for modern wellness look */
    letter-spacing: 2px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase; /* Modern, clean look */
    font-family: 'Montserrat', sans-serif; /* Modern sans-serif font */
    will-change: transform; /* Optimizes for animation performance */
    transition: transform 0.1s ease-out; /* Smooth movement */
}



.hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.6px;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Styling for hero buttons container */
.hero-buttons {
    display: flex; /* Explicitly set to flex for desktop */
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Enhanced styling for hero buttons - award-winning design with better contrast */
.hero-buttons .btn {
    padding: 20px 42px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    background-color: var(--primary);
    color: white;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Enhanced text shadow for better readability */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-buttons .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.hero-buttons .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-light);
}

.hero-buttons .btn:hover:before {
    transform: translateX(100%);
}

.hero-buttons .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.hero-buttons .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* About Section - Award-Winning Design Layout */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 10; /* Higher z-index to appear above fixed hero background */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

/* Outer container with design elements */
.about-outer-container {
    position: relative;
    padding: 2.5rem 0;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    border-top: 1px solid rgba(46, 125, 142, 0.1);
    border-bottom: 1px solid rgba(46, 125, 142, 0.1);
}

/* Background accent element */
.about-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(46, 125, 142, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(232, 192, 125, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Inner container with enhanced styling and more contrast */
.about-inner-container {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(46, 125, 142, 0.15);
}

/* Section header styling */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

/* Header accent element - removed as per user request */

.section-header h2 {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

/* Removed underline as per user preference */
.section-header h2:after {
    display: none;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Elegant Image Showcase with Balanced Layout - No Wasted Space */
.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    align-items: stretch;
}

.showcase-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-right {
    display: grid;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    height: 100%;
    border: 1px solid rgba(46, 125, 142, 0.08);
    background-color: #fff; /* Add white background to ensure image visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Add padding to prevent images from touching the border */
}

.showcase-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Use contain to prevent cropping */
    display: block;
    transition: transform 0.7s ease;
}

.showcase-image:hover img {
    transform: scale(1.03);
}

.main-product {
    height: 100%;
    position: relative;
    z-index: 2;
    min-height: 350px; /* Ensure minimum height for better visibility */
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(46, 125, 142, 0.3);
    z-index: 3;
}

.showcase-text {
    background-color: white;
    padding: 2.8rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border: 1px solid rgba(46, 125, 142, 0.12);
}

/* Removed green accent in the corner as per user request */

.showcase-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
}

.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-highlights li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--dark);
}

.feature-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%232e7d8e" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.secondary-product {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 250px; /* Ensure minimum height for better visibility */
    background-color: #fff; /* Add white background to ensure image visibility */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elegant Experience Section with Background and enhanced contrast */
.about-experience {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    background-color: #f5f7f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(46, 125, 142, 0.15);
    position: relative;
}

.about-experience::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: rgba(232, 192, 125, 0.15);
    border-radius: 50%;
    z-index: -1;
}

.experience-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark);
}

.experience-quote {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
    border: 1px solid rgba(46, 125, 142, 0.08);
}

.experience-quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 4.5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.experience-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.experience-quote cite {
    font-size: 0.9rem;
    color: var(--dark);
    font-style: normal;
    display: block;
    text-align: right;
    font-weight: 500;
}

.experience-image {
    height: 100%;
    overflow: hidden;
    background-color: #fff; /* Add white background to ensure image visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Add padding to prevent images from touching the border */
    border-radius: 0 16px 16px 0; /* Round only the right corners to match container */
    min-height: 300px; /* Ensure minimum height for better visibility */
}

.experience-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Use contain to prevent cropping */
    display: block;
    transition: transform 0.5s ease;
}

/* Removed hover effect as per user request */

/* Elegant Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 0 4rem 0;
}

.stat-item {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

/* Elegant CTA Section with Background and enhanced contrast */
.about-cta-container {
    background: linear-gradient(135deg, #f5f7f9 0%, #e9ecef 100%);
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    position: relative;
    border: 1px solid rgba(46, 125, 142, 0.15);
    overflow: hidden;
}

/* Removed green accent line at the top as per user request */

.about-cta-container h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.magazine-intro {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

/* Two-column text layout */
.magazine-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.magazine-column p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

/* Modern Testimonial Styling */
.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--dark);
    font-style: normal;
    display: block;
    text-align: right;
    font-weight: 500;
}

/* Modern CTA Section - Compact */
.about-cta {
    width: 100%;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

/* Features Section with 1.png Background */
.features {
    position: relative;
    padding: 2.5rem 0;
    background-image: url('../images/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 10; /* Higher z-index to appear above fixed hero background */
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.features h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary);
    position: relative;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transform: translateZ(0);
    will-change: transform;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Remove hover effects on mobile to prevent touch issues */
@media (hover: hover) and (pointer: fine) {
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        background-color: rgba(255, 255, 255, 0.85);
    }
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 125, 142, 0.15);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(46, 125, 142, 0.1);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Products Section - styled to match features section */
/* Products Section */
.products {
    padding: 2.5rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 10; /* Higher z-index to appear above fixed hero background */
}

/* Products outer container with subtle styling */
.products-outer-container {
    position: relative;
    background-color: rgba(245, 247, 249, 1); /* Fully opaque background */
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 3rem 1rem; /* Reduced side padding to match features section */
    border: 1px solid rgba(46, 125, 142, 0.1);
    margin: 0 auto;
    max-width: 1300px;
}

.products h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary);
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed from 2 to 4 columns */
    gap: 1.5rem; /* Reduced gap from 3rem to 1.5rem */
    max-width: 1200px; /* Added max-width to ensure it fits on screen */
    margin: 0 auto; /* Center the grid */
}

.product-card {
    background-color: var(--light);
    border-radius: 12px; /* Reduced from 15px */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Reduced shadow */
    transition: var(--transition);
    max-width: 100%; /* Ensure it doesn't overflow */
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid rgba(46, 125, 142, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-5px); /* Reduced from -10px */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(46, 125, 142, 0.2);
}

.product-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 100%);
}

.product-card:hover::after {
    border-color: rgba(46, 125, 142, 0.5);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    padding-bottom: 120%; /* Increased by 20% for taller container */
    overflow: hidden;
    background-color: #f8f9fa; /* Light background for images */
    border-radius: 8px; /* Rounded corners for better mobile appearance */
    border: 1px solid rgba(46, 125, 142, 0.15);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    margin: 0.5rem;
    width: calc(100% - 1rem);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    padding: 5px; /* Reduced padding to allow for bigger images */
}

/* Consistent styling for all product images - 25% bigger */
.product-card .product-image img {
    object-fit: contain;
    padding: 5px;
    max-height: 95%; /* Increased from 85% to make images bigger */
    max-width: 95%; /* Increased from 85% to make images bigger */
    top: 2.5%; /* Reduced to allow more space for the image */
    left: 2.5%; /* Reduced to allow more space for the image */
}

/* Base styling for all product images */
.product-card .product-image img {
    /* Consistent base styling */
    object-fit: contain;
    padding: 5px;
    max-height: 95%;
    max-width: 95%;
    top: 2.5%;
    left: 2.5%;
    transform: none; /* Reset transform to ensure consistent sizing */
}

/* Product 1 styling - our reference */
.product-card:nth-child(1) .product-image img {
    /* Reference styling for product 1 */
    transform: scale(1.8);
    object-position: center;
    width: 100%; /* Ensure full width */
    max-width: 100%; /* Override the base max-width */
    left: 0; /* Override the base left positioning */
}

/* Product 2 styling to match product 1 exactly */
.product-card:nth-child(2) .product-image img {
    /* Match product 1 exactly */
    transform: scale(1.8); /* Same scale as product 1 */
    object-position: center;
    width: 100%; /* Ensure full width */
    max-width: 100%; /* Override the base max-width */
    left: 0; /* Override the base left positioning */
}

/* Product 3 styling - less cropping */
.product-card:nth-child(3) .product-image img {
    /* Specific styling for product 3 */
    transform: scale(1.5);
    object-position: center;
    object-fit: contain; /* Changed to contain to avoid excessive cropping */
}

/* Product 4 styling - full width in container */
.product-card:nth-child(4) .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-card:nth-child(4) .product-image img {
    transform: scale(1.0); /* No zoom to show the full image */
    object-position: center;
    width: 100%; /* Ensure full width */
    max-width: 100%; /* Override the base max-width */
    left: 0; /* Override the base left positioning */
    object-fit: contain; /* Use contain to show the full image */
}

/* Hover effects for each product image */
.product-card:nth-child(1):hover .product-image img {
    transform: scale(1.85); /* Slightly larger than the base 1.8 scale */
}

.product-card:nth-child(2):hover .product-image img {
    transform: scale(1.85); /* Same hover effect as product 1 */
}

.product-card:nth-child(3):hover .product-image img {
    transform: scale(1.55); /* Slightly larger than the base 1.5 scale */
}

.product-card:nth-child(4):hover .product-image img {
    transform: scale(1.05); /* Very slight zoom on hover for product 4 */
}

.product-info {
    padding: 1.25rem 0.75rem; /* Reduced side padding to match features section */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px; /* Further increased height to allow more room for text */
}

.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 210px; /* Increased minimum height for content area */
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-info p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex-grow: 1; /* Allow paragraph to grow and fill space */
    overflow: hidden; /* Prevent overflow */
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Increased to 6 lines to show more text */
    line-clamp: 6; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    display: block;
}

.product-button {
    margin-top: auto; /* Push to bottom */
    width: 100%;
    height: 40px; /* Fixed height for button container */
    display: flex;
    align-items: center;
}

/* Product button styling */
.product-button .btn {
    width: 100%;
    padding: 8px 15px;
    font-size: 0.85rem;
    border-radius: 5px;
    letter-spacing: 0.5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Custom product styling */
.custom-product {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid rgba(46, 125, 142, 0.1);
}

.custom-product .product-content h3 {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.custom-product .product-content h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

/* Wellness Section */
.wellness {
    padding: 2.5rem 0;
    background-color: var(--light);
    position: relative;
    z-index: 10; /* Higher z-index to appear above fixed hero background */
}

/* Wellness outer container with styling to match features section */
.wellness-outer-container {
    position: relative;
    background-color: rgba(245, 247, 249, 0.7);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    padding: 3rem 1rem; /* Reduced side padding to match features section */
    border: 1px solid rgba(46, 125, 142, 0.1);
    margin: 0 auto;
    max-width: 1300px;
}

.wellness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Reduced gap from 4rem to 2rem */
    align-items: center;
}


.wellness-images {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Reduced gap from 2rem to 1rem */
    width: 80%; /* Make the container 20% smaller */
    margin: 1rem auto 0; /* Reduced top margin, removed bottom margin */
}

.wellness-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem; /* Reduced from 2rem to 1rem */
}

.wellness-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    user-select: none; /* Make images unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none; /* Disable all pointer events for non-linked images */
    touch-action: manipulation; /* Prevent touch interference with scrolling */
}

/* Clickable wellness image link styling */
.wellness-image-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.wellness-image-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Re-enable pointer events for linked images */
.wellness-image-link img {
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.wellness-image-link:hover img {
    transform: scale(1.02);
}

.wellness-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    min-width: 30px;
    height: 30px;
    background-color: rgba(46, 125, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--primary);
}

/* Testimonials Section - Ensure full visibility */
#testimonials {
    position: relative;
    z-index: 15; /* Higher z-index to appear above fixed hero background */
    background: white !important; /* Force white background */
    opacity: 1 !important; /* Ensure full opacity */
    padding-top: 6rem !important; /* Add extra top padding to account for fixed header */
}

#testimonials .container {
    position: relative;
    z-index: 20; /* Ensure content appears above background */
    background: white; /* Additional white background */
    opacity: 1 !important; /* Ensure full opacity */
}

#testimonials h2,
#testimonials p,
#testimonials div {
    position: relative;
    z-index: 25; /* Bring text to front on mobile */
    opacity: 1 !important; /* Ensure full opacity */
    color: var(--dark) !important; /* Force dark text color */
}

/* Remove background image to ensure content visibility */
#testimonials > div:first-child {
    background: none !important;
    opacity: 1 !important;
}

@media screen and (max-width: 768px) {
    #testimonials {
        padding-top: 5rem !important; /* Adjusted top padding for mobile */
    }

    #testimonials h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }

    #testimonials p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 1.5rem !important;
    }

    #testimonials > div:last-child > div > div {
        max-width: 100% !important;
        padding: 0 1rem;
    }

    /* Ensure no background image on mobile */
    #testimonials > div:first-child {
        background: none !important;
        opacity: 1 !important;
    }
}

@media screen and (max-width: 480px) {
    #testimonials {
        padding: 4.5rem 0 2rem 0 !important; /* Adjusted top padding for small mobile */
    }

    #testimonials h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
    }

    #testimonials p {
        font-size: 0.95rem !important;
        padding: 0 1rem !important;
    }

    /* Remove problematic opacity that was hiding content */
    #testimonials > div:first-child {
        opacity: 1 !important;
    }
}

/* FAQ Section */
.faq {
    padding: 2.5rem 0;
    background-color: var(--light);
    position: relative;
    z-index: 10; /* Higher z-index to appear above fixed hero background */
}

.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}



.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--white);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(46, 125, 142, 0.05);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    transition: var(--transition);
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 1rem 0 1.5rem;
}

/* Contact Section */
.contact {
    padding: 2.5rem 0;
    background-color: var(--white);
    position: relative;
    z-index: 10; /* Higher z-index to appear above fixed hero background */
}

.contact h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}



.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    min-width: 50px;
    height: 50px;
    background-color: rgba(46, 125, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--light);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 142, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background-color: var(--white);
    color: var(--dark);
    padding: 2.5rem 0 0;
    position: relative;
    z-index: 10; /* Higher z-index to appear above fixed hero background */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-column p {
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.7);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Legal links in footer */
.legal-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-link {
    color: var(--dark);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.legal-link:hover {
    color: var(--primary);
}

.legal-link:not(:last-child):after {
    content: '•';
    position: absolute;
    right: -0.9rem;
    color: var(--dark);
    opacity: 0.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Legal Modal Styles */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.legal-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.legal-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.legal-modal-close:hover,
.legal-modal-close:focus {
    color: var(--primary);
    text-decoration: none;
}

.legal-modal-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.legal-modal-header h2 {
    margin-top: 0;
    color: var(--dark);
    font-size: 1.8rem;
}

.legal-date {
    color: #777;
    font-size: 0.9rem;
    margin-top: 5px;
}

.legal-section {
    margin-bottom: 25px;
}

.legal-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 2% auto;
    padding: 30px;
    width: 95%;
    max-width: 1000px; /* Wider to accommodate side-by-side layout */
    max-height: 95vh; /* Increased height to show more content */
    overflow-y: auto; /* Add scrolling for tall content */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    text-align: left; /* Left-aligned for modern design */
    border-top: 5px solid #309487;
    background-image: linear-gradient(to bottom, rgba(48, 148, 135, 0.03), rgba(255, 255, 255, 0) 150px);
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.close-modal:hover {
    color: #fff;
    background-color: #309487;
    transform: rotate(90deg);
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8rem;
    text-align: left;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    letter-spacing: -0.5px;
    border-bottom: 1px solid rgba(48, 148, 135, 0.2);
}

.modal h2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #309487;
    border-radius: 2px;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    min-height: 200px;
}

.loading-spinner p {
    margin-top: 20px;
    color: var(--primary);
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(46, 125, 142, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Trust badges styling */
.trust-badges {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #309487;
    max-width: 100%;
}

.trust-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 15px 0 0;
    padding: 5px 0;
}

.trust-badge i {
    font-size: 14px;
    color: #309487;
    margin-right: 6px;
}

.trust-badge span {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

/* Fallback message styling */
#shopify-fallback {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 20px;
}

#shopify-fallback p {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

#shopify-fallback a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

#shopify-fallback a:hover {
    text-decoration: underline;
}

/* Shopify Buy Button Styles */
.shopify-container {
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 0;
    margin-top: 20px;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
}

/* Create a modern two-column layout for the Shopify product */
.shopify-buy__product {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 30px !important;
}

/* Left column for image */
.shopify-buy__product__gallery {
    flex: 1 1 350px !important;
    max-width: 450px !important;
}

/* Right column for product details */
.shopify-buy__product-description-wrapper {
    flex: 1 1 350px !important;
    padding-left: 20px !important;
}

/* Fix for Shopify iframe visibility */
.shopify-buy-frame,
.shopify-buy-frame iframe,
.shopify-buy__product {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Fix for Shopify product layout */
.shopify-buy__layout-vertical {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* Fix for Shopify product image */
.shopify-buy__product-img-wrapper {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 15px !important;
    background-color: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06) !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.3s ease !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.shopify-buy__product-img-wrapper::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(48, 148, 135, 0.05) 0%, rgba(255, 255, 255, 0) 50%) !important;
    z-index: 1 !important;
    border-radius: 12px !important;
}

.shopify-buy__product-img-wrapper:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
}

.shopify-buy__product-img {
    max-width: 90% !important;
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__product-img:hover {
    transform: scale(1.02) !important;
}

/* Ensure Shopify buttons are visible */
.shopify-buy__btn {
    display: inline-block !important;
    width: 100% !important;
    max-width: 200px !important;
    padding: 12px 20px !important;
    background-color: #309487 !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Montserrat', sans-serif !important;
    margin: 5px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 3px 10px rgba(48, 148, 135, 0.2) !important;
}

.shopify-buy__btn::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: all 0.6s ease !important;
}

.shopify-buy__btn:hover {
    background-color: #2b857a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(48, 148, 135, 0.3) !important;
}

.shopify-buy__btn:hover::before {
    left: 100% !important;
}

.shopify-buy__btn:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 6px rgba(48, 148, 135, 0.2) !important;
}

.shopify-buy__btn-wrapper {
    text-align: left !important;
    width: 100% !important;
    margin: 15px 0 0 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.shopify-buy__btn-wrapper::before {
    content: "Secure Checkout" !important;
    display: inline-block !important;
    font-size: 11px !important;
    color: #666 !important;
    margin: 0 0 0 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: 'Montserrat', sans-serif !important;
    position: relative !important;
    padding-left: 20px !important;
}

.shopify-buy__btn-wrapper::after {
    content: "\f023" !important; /* Lock icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 205px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #666 !important;
    font-size: 12px !important;
}

/* Fix for Shopify product title */
.shopify-buy__product__title {
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
    color: #333 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-align: left !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    text-transform: none !important;
    padding-bottom: 8px !important;
    position: relative !important;
    border-bottom: none !important;
}

.shopify-buy__product__title::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background-color: #309487 !important;
    border-radius: 3px !important;
}

/* Fix for Shopify product price */
.shopify-buy__product__price {
    font-size: 1.5rem !important;
    margin: 15px 0 20px !important;
    color: #309487 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-align: left !important;
    display: inline-block !important;
    padding: 8px 15px !important;
    background-color: rgba(48, 148, 135, 0.08) !important;
    border-radius: 6px !important;
    position: relative !important;
}

/* Price label */
.shopify-buy__product__price::before {
    content: "Regular price" !important;
    display: block !important;
    font-size: 0.8rem !important;
    color: #666 !important;
    font-weight: 500 !important;
    margin-bottom: 3px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Fix for Shopify product description */
.shopify-buy__product-description {
    margin: 0 0 20px !important;
    color: #555 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    text-align: left !important;
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    max-height: 120px !important;
    overflow-y: auto !important;
}

.shopify-buy__product-description p {
    margin-bottom: 8px !important;
}

.shopify-buy__product-description p:last-child {
    margin-bottom: 0 !important;
}

/* Fix for Shopify quantity selector */
.shopify-buy__quantity-container {
    margin: 0 0 20px !important;
    text-align: left !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    max-width: none !important;
}

.shopify-buy__quantity {
    width: 60px !important;
    height: 40px !important;
    padding: 5px !important;
    font-size: 16px !important;
    text-align: center !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    margin: 0 10px 0 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    color: #333 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__quantity:hover,
.shopify-buy__quantity:focus {
    border-color: #309487 !important;
    outline: none !important;
}

.shopify-buy__quantity-container label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Fix for Shopify button container */
.shopify-buy__btn-wrapper {
    margin: 20px auto 0 !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
}

/* Fix for Shopify product options */
.shopify-buy__option-select {
    margin-bottom: 15px !important;
    text-align: left !important;
    position: relative !important;
}

.shopify-buy__option-select__label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: #333 !important;
    margin-bottom: 6px !important;
    display: block !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.shopify-buy__option-select-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    position: relative !important;
}

.shopify-buy__option-select__select {
    width: 100% !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    background-color: white !important;
    font-family: 'Montserrat', sans-serif !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
}

.shopify-buy__option-select__select:hover {
    border-color: #309487 !important;
}

.shopify-buy__option-select__select:focus {
    outline: none !important;
    border-color: #309487 !important;
    box-shadow: 0 0 0 2px rgba(48, 148, 135, 0.2) !important;
}

/* Custom dropdown arrow */
.shopify-buy__option-select-wrapper::after {
    content: "▼" !important;
    font-size: 10px !important;
    color: #309487 !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
}

/* Hide default dropdown arrows */
.shopify-buy__select-icon {
    display: none !important;
}

/* Remove any SVG arrows that might be causing the issue */
.shopify-buy__btn-wrapper svg,
.shopify-buy__option-select svg,
.shopify-buy__product svg:not(.shopify-buy__product-img) {
    display: none !important;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
        max-height: 85vh; /* Slightly smaller on tablets */
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 15px;
        max-height: 80vh; /* Even smaller on mobile */
    }

    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.6);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

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

    .features-parallax-bg {
        background-attachment: scroll;
        transform: translateZ(0) scale(1);
    }

    /* Adjust products section for tablets */
    .products-outer-container {
        padding: 3rem 1.5rem;
        margin: 0 1.5rem;
    }

    /* Adjust products grid for tablets */
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets instead of 4 */
        gap: 1.2rem; /* Slightly smaller gap */
    }

    .product-image {
        width: 100%;
        padding-bottom: 120%; /* Increased by 20% for taller container on tablets */
        max-width: 350px; /* Limit width on tablets for better appearance */
        margin: 0 auto; /* Center the image container */
    }

    /* All product images have the same styling on tablets - 25% bigger */
    .product-card .product-image img {
        object-fit: contain;
        padding: 5px;
        max-height: 95%;
        max-width: 95%;
        top: 2.5%;
        left: 2.5%;
    }

    /* Base styling for all product images on tablets */
    .product-card .product-image img {
        object-fit: contain;
        padding: 5px;
        max-height: 95%;
        max-width: 95%;
        top: 2.5%;
        left: 2.5%;
        transform: none;
    }

    /* Product 1 styling on tablets */
    .product-card:nth-child(1) .product-image img {
        transform: scale(1.8);
        object-position: center;
        width: 100%;
        max-width: 100%;
        left: 0;
    }

    /* Product 2 styling to match product 1 on tablets */
    .product-card:nth-child(2) .product-image img {
        transform: scale(1.8);
        object-position: center;
        width: 100%;
        max-width: 100%;
        left: 0;
    }

    /* Product 3 styling on tablets - less cropping */
    .product-card:nth-child(3) .product-image img {
        transform: scale(1.5);
        object-position: center;
        object-fit: contain;
    }

    /* Product 4 styling on tablets - less cropping */
    .product-card:nth-child(4) .product-image img {
        transform: scale(1.2);
        object-position: center;
        object-fit: contain;
    }

    /* Hover effects for each product image on tablets */
    .product-card:nth-child(1):hover .product-image img {
        transform: scale(1.85);
    }

    .product-card:nth-child(2):hover .product-image img {
        transform: scale(1.85); /* Same hover effect as product 1 */
    }

    .product-card:nth-child(3):hover .product-image img {
        transform: scale(1.55);
    }

    .product-card:nth-child(4):hover .product-image img {
        transform: scale(1.25);
    }

    .product-info {
        height: 260px; /* Further increased height for tablets */
    }

    .product-content {
        min-height: 190px; /* Increased min-height for tablets */
    }

    /* Wellness images adjustments for tablets */
    .wellness-images {
        gap: 1.5rem; /* Reduced gap for tablets */
    }

    .wellness-image {
        width: 100%;
        /* Removed padding-bottom to allow natural image sizing */
    }

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

@media screen and (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        text-align: center;
    }

    h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        line-height: 1.2;
        margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
        text-align: center;
    }

    h3 {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        line-height: 1.3;
        margin-bottom: clamp(0.6rem, 2vw, 1rem);
        text-align: center;
    }

    p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
    }

    /* Hero section tablet adjustments */
    .hero {
        background-position: center center;
    }

    /* Lighter overlay for tablets for better video visibility */
    .radial-overlay {
        background: radial-gradient(circle at center,
                rgba(255, 255, 255, 0.25) 0%,
                rgba(255, 255, 255, 0.45) 40%,
                rgba(255, 255, 255, 0.65) 100%);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }

    /* Enhanced hero content for tablets */
    .hero-content {
        max-width: 90%;
        padding: 2rem 1.5rem;
        background-color: transparent;
    }

    /* Lighter hero text container for tablets */
    .hero-text-container {
        padding: 2rem 2rem;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.3);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        max-width: 600px;
    }

    /* Enhanced hero buttons for tablets */
    .hero-buttons {
        gap: 1.2rem;
        margin-top: 2rem;
        display: flex; /* Ensure buttons are visible on tablets */
    }

    /* Enhanced mobile button styles */
    .btn {
        padding: clamp(0.8rem, 3vw, 1rem) clamp(1.5rem, 4vw, 2rem);
        font-size: clamp(0.9rem, 3vw, 1rem);
        border-radius: clamp(25px, 6vw, 50px);
        min-height: 44px;
        touch-action: manipulation;
        text-align: center;
        display: inline-block;
        width: auto;
        max-width: 100%;
        font-weight: 600;
        line-height: 1.2;
    }

    /* Mobile form elements */
    input, textarea, select {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: clamp(0.8rem, 3vw, 1rem);
        border-radius: clamp(8px, 2vw, 12px);
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Mobile container optimizations */
    .container {
        padding: 0 clamp(1rem, 4vw, 2rem);
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Mobile section padding */
    section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }

    /* Mobile grid optimizations */
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    /* Mobile-specific features section fixes */
    .features {
        background-attachment: scroll; /* Fix parallax on mobile */
        background-image: none; /* Remove background image on mobile */
        background-color: #f8f9fa; /* Simple background color */
        padding: 2rem 0; /* Reduced padding */
    }

    .features::before {
        display: none; /* Remove overlay on mobile */
    }

    .features-grid {
        /* Remove problematic properties */
        transform: none !important;
        will-change: auto !important;
        gap: 1rem; /* Reduce gap between cards */
        /* Ensure proper mobile layout */
        grid-template-columns: 1fr !important;
    }

    .feature-card {
        /* Ensure no hover states on mobile */
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        /* Remove backdrop filters that can cause issues */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        /* Prevent touch issues */
        pointer-events: auto;
        touch-action: manipulation;
        /* Simple styling for mobile */
        background-color: white !important;
        border: 1px solid #e9ecef !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        padding: 1.5rem !important;
        margin-bottom: 0 !important;
        border-radius: 8px !important; /* Simpler border radius */
    }

    /* Mobile text improvements */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Mobile image optimizations */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Enhanced text size and styling for tablets with light green color */
    .hero h1 {
        font-size: 3.2rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem; /* Increased spacing for tablet */
        color: var(--light-green); /* Light green color for the title */
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.3),
            0 2px 3px rgba(0, 0, 0, 0.2);
        border: 2px solid var(--light-green);
        border-radius: 6px;
        box-shadow:
            0 0 0 1px rgba(0, 0, 0, 0.2),
            0 0 10px rgba(201, 245, 233, 0.5),
            inset 0 0 8px rgba(201, 245, 233, 0.2);
        background-color: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }



    /* Enhanced subtitle for tablets */
    .hero p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        max-width: 90%;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    /* Magazine layout responsive adjustments for tablet */
    .about {
        padding: 6rem 0;
    }

    .magazine-container {
        max-width: 90%;
    }

    .magazine-title {
        font-size: 2.8rem;
    }

    .magazine-title:after {
        display: none;
    }

    .magazine-subtitle {
        font-size: 1.2rem;
    }

    /* About section tablet adjustments */
    .about-outer-container {
        padding: 4rem 0;
    }

    .about-inner-container {
        padding: 3rem;
    }

    /* Removed header accent */

    .section-header h2 {
        font-size: 2.4rem;
    }

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

    /* Showcase tablet adjustments */
    .about-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .main-product {
        height: 350px;
    }

    .image-corner-accent {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }

    .showcase-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }

    .showcase-text {
        padding: 2.5rem;
    }

    .showcase-text::before {
        width: 40px;
        height: 40px;
    }

    .showcase-text h3 {
        font-size: 1.8rem;
    }

    /* Experience section tablet adjustments */
    .about-experience {
        grid-template-columns: 1fr;
    }

    .about-experience::after {
        bottom: -10px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .experience-content {
        padding: 2.5rem;
        order: 2;
    }

    .experience-image {
        height: 300px;
        order: 1;
    }

    /* Stats section tablet adjustments */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.8rem 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* CTA tablet adjustments */
    .about-cta-container {
        padding: 2.5rem;
    }

    .about-cta-container::before {
        height: 4px;
    }

    .about-cta-container h3 {
        font-size: 1.6rem;
    }

    .intro-text {
        font-size: 1.3rem;
    }

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

    .about-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Other sections responsive adjustments */
    .wellness-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced gap from 3rem to 1.5rem */
    }

    .wellness-images {
        order: -1; /* Keep images at the top on mobile */
        margin-bottom: 1rem; /* Reduced bottom margin */
        margin-top: 0; /* Reduce top spacing */
        width: 100%; /* Match feature container width */
        max-width: 100%; /* Match feature container width */
        gap: 1rem; /* Reduced gap */
    }

    /* Simple wellness images on mobile */
    .wellness-images img {
        width: 100%;
        height: auto;
        display: block;
        user-select: none; /* Make images unselectable */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none; /* Disable all pointer events for non-linked images */
        touch-action: manipulation; /* Prevent touch interference with scrolling */
    }

    /* Mobile styles for clickable wellness image links */
    .wellness-image-link {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
    }

    /* Re-enable pointer events for linked images on mobile */
    .wellness-image-link img {
        pointer-events: auto;
    }

    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none;
    }



    .mobile-menu {
        display: block;
        z-index: 99997; /* Very high z-index to ensure hamburger icon is always clickable */
    }

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

    .mobile-menu.active div:nth-child(2) {
        opacity: 0;
    }

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

    /* Show mobile nav and hide desktop nav on mobile */
    .desktop-nav {
        display: none;
    }
}

/* Extra mobile menu adjustments for very small screens */
@media (max-width: 480px) {
    .mobile-nav {
        width: 92%;
        max-width: 350px;
        padding: 1.2rem 1.2rem 3.5rem 1.2rem; /* Adjusted bottom padding for Instagram button */
        max-height: 80vh; /* Consistent max height */
        min-height: 280px;
        /* Keep consistent centering for small screens */
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.8) !important;
        position: fixed !important;
    }

    .mobile-nav.active {
        transform: translate(-50%, -50%) scale(1) !important;
        top: 50% !important;
        left: 50% !important;
        position: fixed !important;
    }

    .mobile-nav-title {
        font-size: 1.2rem;
    }

    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        min-height: 44px;
    }

    .mobile-nav ul {
        gap: 0.6rem;
    }

    .mobile-nav-instagram {
        bottom: 1.2rem;
        left: 1.2rem;
    }

    .instagram-button {
        width: 44px;
        height: 44px;
    }

    .instagram-button svg {
        width: 22px;
        height: 22px;
    }
}

/* Ensure menu doesn't get cut off on very short screens */
@media (max-height: 600px) {
    .mobile-nav {
        max-height: 75vh; /* Consistent percentage-based height */
        min-height: 250px;
        top: 50%;
        left: 50%;
        padding: 1rem 1rem 3rem 1rem; /* Adjusted bottom padding for Instagram button */
        /* Keep consistent centering on short screens */
        transform: translate(-50%, -50%) scale(0.8);
    }

    .mobile-nav.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .mobile-nav-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .mobile-nav ul {
        gap: 0.5rem;
    }

    .mobile-nav-link {
        padding: 0.7rem 1rem;
        min-height: 40px;
        font-size: 0.9rem;
    }

    .mobile-nav-instagram {
        bottom: 1rem;
        left: 1rem;
    }

    .instagram-button {
        width: 40px;
        height: 40px;
    }

    .instagram-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra short screens - ensure menu fits */
@media (max-height: 500px) {
    .mobile-nav {
        max-height: 70vh; /* Consistent percentage-based height */
        min-height: 220px;
        padding: 0.8rem 0.8rem 2.8rem 0.8rem; /* Adjusted bottom padding for Instagram button */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
    }

    .mobile-nav.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .mobile-nav-header {
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }

    .mobile-nav-title {
        font-size: 1.1rem;
    }

    .mobile-nav ul {
        gap: 0.4rem;
    }

    .mobile-nav-link {
        padding: 0.6rem 0.8rem;
        min-height: 36px;
        font-size: 0.85rem;
    }

    .mobile-nav-instagram {
        bottom: 0.8rem;
        left: 0.8rem;
    }

    .instagram-button {
        width: 36px;
        height: 36px;
    }

    .instagram-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Ensure menu is always visible and properly centered */
@media (max-height: 400px) {
    .mobile-nav {
        max-height: 65vh; /* Consistent percentage-based height */
        min-height: 180px;
        padding: 0.6rem 0.6rem 2.4rem 0.6rem; /* Adjusted bottom padding for Instagram button */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
    }

    .mobile-nav.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .mobile-nav-header {
        margin-bottom: 0.6rem;
        padding-bottom: 0.4rem;
    }

    .mobile-nav-title {
        font-size: 1rem;
    }

    .mobile-nav ul {
        gap: 0.3rem;
    }

    .mobile-nav-link {
        padding: 0.5rem 0.6rem;
        min-height: 32px;
        font-size: 0.8rem;
    }

    .mobile-nav-instagram {
        bottom: 0.6rem;
        left: 0.6rem;
    }

    .instagram-button {
        width: 32px;
        height: 32px;
    }

    .instagram-button svg {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        line-height: 1.1;
        margin-bottom: clamp(0.8rem, 3vw, 1rem);
    }

    h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: clamp(0.6rem, 2.5vw, 1rem);
    }

    h3 {
        font-size: clamp(1.2rem, 4.5vw, 1.4rem);
        line-height: 1.2;
        margin-bottom: clamp(0.5rem, 2vw, 0.8rem);
    }

    p {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        line-height: 1.5;
        margin-bottom: clamp(0.6rem, 2.5vw, 1rem);
    }

    /* Enhanced adjustments for very small screens */
    .hero-content {
        max-width: 100%;
        padding: 1.5rem 1rem;
        background-color: transparent;
    }

    .hero-text-container {
        padding: 1.8rem 1.5rem;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 1.8rem; /* Increased spacing for mobile */
        line-height: 1.3;
        padding: 0.7rem 1rem;
        color: var(--light-green); /* Light green color for the title */
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.3),
            0 1px 3px rgba(0, 0, 0, 0.2);
        border: 2px solid var(--light-green);
        border-radius: 6px;
        box-shadow:
            0 0 0 1px rgba(0, 0, 0, 0.2),
            0 0 8px rgba(201, 245, 233, 0.5),
            inset 0 0 6px rgba(201, 245, 233, 0.2);
        background-color: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }



    .hero p {
        font-size: 1.3rem;
        margin-bottom: 1.8rem;
        font-weight: 600;
        max-width: 95%;
        letter-spacing: 0.4px;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 1.8rem auto 0;
        display: none; /* Hide buttons on mobile screens */
    }

    /* Hero buttons use the global button styles on mobile */

    /* Lighter overlay on very small screens for better video visibility */
    .radial-overlay {
        background: radial-gradient(circle at center,
                rgba(255, 255, 255, 0.3) 0%,
                rgba(255, 255, 255, 0.5) 40%,
                rgba(255, 255, 255, 0.7) 100%);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    /* Mobile-specific hero adjustments */
    .hero {
        background-position: center center;
    }

    /* Mobile hero adjustments */

    /* Ensure content is above video */
    .hero-content {
        position: relative !important;
        z-index: 2 !important;
    }

    /* Magazine layout responsive adjustments for mobile */
    .about {
        padding: 3rem 0;
    }

    .magazine-container {
        max-width: 100%;
        padding: 0 1.5rem;
        box-shadow: none;
        border-radius: 0;
    }

    .magazine-header {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .magazine-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .magazine-title:after {
        display: none;
    }

    .magazine-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
        padding: 0 1.5rem;
    }

    /* Removed underscore lines */

    /* About section mobile adjustments */
    .about-outer-container {
        padding: 3rem 0;
    }

    .about-inner-container {
        padding: 2rem;
        border-radius: 15px;
    }

    /* Removed header accent */

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    /* Showcase mobile adjustments */
    .about-showcase {
        gap: 2rem;
    }

    .main-product {
        height: 350px; /* Increased height for the larger main product image */
    }

    /* Make about section images fully visible on mobile and match feature container width */
    .showcase-image {
        min-height: 320px; /* Increased height for larger images */
        margin: 0 auto; /* Center the container */
        max-width: 100%; /* Match feature container width */
        padding: 10px; /* Reduced padding on mobile */
        background-color: #fff; /* Ensure white background */
    }

    .showcase-image img {
        object-fit: contain;
        width: 100%;
        height: auto;
        max-height: 100%;
        margin: 0 auto;
        display: block;
        transform: scale(1.3); /* Make images even bigger */
    }

    /* Make the first image (main product) even larger */
    .main-product img {
        transform: scale(1.4); /* Extra size for the main product image */
    }

    .showcase-right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-text {
        padding: 1.8rem;
    }



    .showcase-text h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .showcase-text p {
        font-size: 1rem;
        text-align: center;
    }

    .feature-highlights {
        max-width: 280px;
        margin: 1.5rem auto 0;
    }

    .feature-highlights li {
        text-align: left;
    }

    .secondary-product {
        min-height: 260px; /* Increased height for larger images */
        margin: 0 auto; /* Center the container */
        max-width: 100%; /* Match feature container width */
        padding: 10px; /* Reduced padding on mobile */
        background-color: #fff; /* Ensure white background */
    }

    /* Experience section mobile adjustments */
    .about-experience {
        grid-template-columns: 1fr; /* Change to single column on mobile */
        border-radius: 15px;
    }

    .about-experience::after {
        display: none;
    }

    .experience-content {
        padding: 1.8rem;
        order: 1; /* Show content first on mobile */
    }

    .experience-content h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .experience-content p {
        font-size: 1rem;
        text-align: center;
    }

    .experience-image {
        min-height: 300px; /* Increased height for larger images */
        order: 2; /* Show image second on mobile */
        border-radius: 0 0 15px 15px; /* Round only bottom corners on mobile */
        padding: 10px; /* Reduced padding on mobile */
        margin: 0 auto; /* Center the container */
        max-width: 100%; /* Match feature container width */
        background-color: #fff; /* Ensure white background */
    }

    /* Make experience image fully visible and smaller on mobile */
    .experience-image img {
        object-fit: contain;
        width: 100%;
        height: auto;
        max-height: 100%;
        margin: 0 auto;
        display: block;
        transform: scale(1.0); /* Remove scaling effect */
    }

    .experience-quote {
        padding: 1.5rem;
    }

    /* Stats section mobile adjustments */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    /* CTA mobile adjustments */
    .about-cta-container {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }



    .about-cta-container h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 240px;
    }

    /* Fix direction issues on mobile */
    .feature-item.reversed {
        direction: ltr;
    }

    .feature-item .feature-content {
        order: 1;
    }

    .feature-item .about-image-container {
        order: 2;
    }

    /* Simple wellness section on very small screens */
    .wellness-images {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .wellness-image {
        margin-bottom: 1rem;
    }

    /* Adjust text for mobile */
    .intro-headline {
        font-size: 1.3rem;
        text-align: center;
    }

    .intro-description {
        text-align: center;
    }

    .feature-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .feature-content p {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Adjust CTA for mobile */
    .about-cta {
        padding: 2rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .image-caption {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }

    .magazine-intro {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .intro-text {
        font-size: 1.1rem;
        text-align: center;
    }

    .magazine-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .magazine-column p {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .magazine-quote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .magazine-quote blockquote {
        font-size: 1.1rem;
        text-align: center;
    }

    .magazine-quote cite {
        text-align: center;
    }

    .magazine-footer {
        padding-top: 1.5rem;
    }

    .about-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.8rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 20px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Other responsive adjustments */
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        padding: 2rem 0; /* Further reduced padding for small mobile */
        background-image: none !important; /* Force remove background */
        background-color: #f8f9fa !important; /* Simple background */
    }

    .features-content {
        padding: 2rem 0; /* Reduced padding for mobile */
    }

    .features::before {
        display: none !important; /* Remove overlay completely */
    }

    .features-grid {
        gap: 1rem !important; /* Tighter spacing on small screens */
    }

    .feature-card {
        background-color: white !important;
        border: 1px solid #e9ecef !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        padding: 1.25rem !important; /* Compact padding for small screens */
        margin-bottom: 0 !important;
        /* Remove any touch-action issues */
        touch-action: manipulation !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        /* Allow text selection on mobile */
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }

    .feature-icon {
        margin-bottom: 1rem !important;
    }

    .feature-icon svg {
        width: 32px !important;
        height: 32px !important;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    .features-parallax-bg {
        background-position: center;
    }

    /* Products section adjustments for mobile - match feature container width */
    .products-outer-container {
        padding: 2.5rem 1rem; /* Reduced side padding to match features section */
        margin: 0 auto; /* Center the container like features section */
        border-radius: 15px;
        max-width: 100%; /* Match feature container width */
    }

    /* Wellness section adjustments for mobile - 50% less padding at the top */
    .wellness-outer-container {
        padding: 0.5rem 1rem 2.5rem; /* 50% less top padding, normal bottom padding */
        margin: 0 auto;
        border-radius: 15px;
        max-width: 100%;
    }

    /* Product grid adjustments for mobile - match feature grid */
    .products-grid {
        grid-template-columns: 1fr; /* 1 column on mobile for single product per row */
        gap: 2rem; /* Match feature grid gap */
        max-width: 100%; /* Match feature container width */
        margin: 0 auto; /* Center the grid */
    }

    /* Style product cards to match feature cards on mobile */
    .product-card {
        padding: 2rem 1rem;
        margin-bottom: 0;
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    /* Remove border from last product card */
    .product-card:last-child {
        border-bottom: none;
    }

    /* Adjust gradient reflection for mobile */
    .product-card::before {
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.1) 100%);
    }

    .product-card::after {
        border-radius: 8px;
        border-width: 1px;
    }

    /* Product image adjustments for mobile - match feature card styling */
    .product-image {
        width: 100%;
        padding-bottom: 100%; /* Square aspect ratio like feature icons */
        margin: 0 auto 1.5rem; /* Center the image container and add bottom margin like feature icons */
        max-width: 100%; /* Match feature container width */
    }

    /* All product images have the same styling on mobile - 25% bigger */
    .product-card .product-image img {
        object-fit: contain;
        padding: 5px;
        max-height: 95%;
        max-width: 95%;
        top: 2.5%;
        left: 2.5%;
    }

    /* Base styling for all product images on mobile */
    .product-card .product-image img {
        object-fit: contain;
        padding: 5px;
        max-height: 95%;
        max-width: 95%;
        top: 2.5%;
        left: 2.5%;
        transform: none;
    }

    /* Product 1 styling on mobile */
    .product-card:nth-child(1) .product-image img {
        transform: scale(1.8);
        object-position: center;
        width: 100%;
        max-width: 100%;
        left: 0;
    }

    /* Product 2 styling to match product 1 on mobile */
    .product-card:nth-child(2) .product-image img {
        transform: scale(1.8);
        object-position: center;
        width: 100%;
        max-width: 100%;
        left: 0;
    }

    /* Product 3 styling on mobile - less cropping */
    .product-card:nth-child(3) .product-image img {
        transform: scale(1.5);
        object-position: center;
        object-fit: contain;
    }

    /* Product 4 styling on mobile - less cropping */
    .product-card:nth-child(4) .product-image img {
        transform: scale(1.2);
        object-position: center;
        object-fit: contain;
    }

    /* Hover effects for each product image on mobile */
    .product-card:nth-child(1):hover .product-image img {
        transform: scale(1.85);
    }

    .product-card:nth-child(2):hover .product-image img {
        transform: scale(1.85); /* Same hover effect as product 1 */
    }

    .product-card:nth-child(3):hover .product-image img {
        transform: scale(1.55);
    }

    .product-card:nth-child(4):hover .product-image img {
        transform: scale(1.25);
    }

    .product-info {
        padding: 1.25rem 0.75rem; /* Reduced side padding to match features section */
        height: 220px; /* Adjusted height for better proportions */
    }

    .product-content {
        min-height: 160px; /* Adjusted min-height for better text display */
    }

    .product-info h3 {
        font-size: 1.1rem; /* Smaller font size to maintain stack layout */
        margin-bottom: 0.8rem; /* Added more space below title */
        line-height: 1.3; /* Improved line height for better readability */
    }

    .product-info p {
        font-size: 0.95rem; /* Increased font size for better readability */
        margin-bottom: 0.8rem; /* More space below description */
        -webkit-line-clamp: 4; /* Adjusted to 4 lines for better balance */
        line-clamp: 4;
    }

    .product-price {
        font-size: 1.2rem; /* Increased font size */
        margin-bottom: 1rem; /* More space below price */
        font-weight: 700; /* Ensure price stands out */
        text-align: center;
        width: 100%;
        display: block;
    }

    .product-button {
        height: 40px; /* Increased height for better touch targets */
    }

    .product-button .btn {
        padding: 8px 16px; /* Increased padding for better touch targets */
        font-size: 0.9rem; /* Increased font size for better readability */
        font-weight: 600; /* Make button text more prominent */
    }

    /* Simple wellness images on mobile */
    .wellness-images {
        gap: 1rem; /* Reduced gap */
        margin-bottom: 1rem; /* Reduced margin */
        margin-top: 0;
        width: 100%;
        max-width: 100%;
    }

    .wellness-image {
        width: 100%;
        margin-bottom: 1rem; /* Reduced margin */
    }

    .wellness-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        user-select: none; /* Make images unselectable */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none; /* Disable all pointer events for non-linked images */
        touch-action: manipulation; /* Prevent touch interference with scrolling */
    }

    /* Small screen styles for clickable wellness image links */
    .wellness-image-link {
        border-radius: 15px;
    }

    /* Re-enable pointer events for linked images on small screens */
    .wellness-image-link img {
        pointer-events: auto;
        border-radius: 15px;
    }

    /* Custom product styling for mobile */
    .custom-product {
        border-width: 1px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: 1;
    }
}

/* Extra small mobile screens optimization */
@media (max-width: 400px) {
    h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
        line-height: 1.1;
        margin-bottom: clamp(0.6rem, 3vw, 0.8rem);
    }

    h2 {
        font-size: clamp(1.3rem, 7vw, 1.6rem);
        line-height: 1.1;
        margin-bottom: clamp(0.5rem, 2.5vw, 0.8rem);
    }

    h3 {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
        line-height: 1.2;
        margin-bottom: clamp(0.4rem, 2vw, 0.6rem);
    }

    p {
        font-size: clamp(0.8rem, 4vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: clamp(0.5rem, 2.5vw, 0.8rem);
    }

    .container {
        padding: 0 clamp(0.8rem, 3vw, 1.2rem);
    }

    .btn {
        padding: clamp(0.9rem, 4vw, 1.1rem) clamp(1.2rem, 5vw, 1.8rem);
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        min-height: 48px;
        border-radius: clamp(20px, 8vw, 40px);
    }

    section {
        padding: clamp(2rem, 8vw, 3rem) 0;
    }

    /* Extra small modal adjustments */
    .modal-content {
        width: 98%;
        margin: 2% auto;
        padding: clamp(1rem, 4vw, 1.5rem);
        max-height: 90vh;
    }

    /* Extra small footer adjustments */
    .footer-content {
        gap: 1rem;
    }

    .footer-bottom {
        padding: 0.8rem 0;
    }

    .footer-bottom p {
        font-size: clamp(0.75rem, 3.5vw, 0.85rem);
    }

    .legal-links a {
        font-size: clamp(0.7rem, 3vw, 0.8rem);
        padding: 0.2rem 0.4rem;
    }
}

/* Very small mobile screens */
@media (max-width: 380px) {
    /* Ensure about section images remain fully visible on very small screens */
    .showcase-image {
        min-height: 300px; /* Increased height for larger images on very small screens */
        padding: 8px; /* Reduced padding for very small screens */
        max-width: 100%; /* Match feature container width */
    }

    /* Special height for main product on very small screens */
    .main-product {
        min-height: 320px; /* Extra height for the main product image */
    }

    .secondary-product {
        min-height: 280px; /* Increased height for larger images on very small screens */
        padding: 8px; /* Reduced padding for very small screens */
        max-width: 100%; /* Match feature container width */
    }

    .experience-image {
        min-height: 300px; /* Increased height for larger images on very small screens */
        max-width: 100%; /* Match feature container width */
    }

    .showcase-image img,
    .experience-image img {
        object-fit: contain;
        width: 100%; /* Full width for very small screens */
        height: auto;
        max-height: 100%;
        margin: 0 auto;
        display: block;
        transform: scale(1.0); /* Remove scaling effect */
    }

    /* Make the first image (main product) even larger on very small screens */
    .main-product img {
        transform: scale(1.4); /* Extra size for the main product image */
    }

    /* Simple wellness images on very small screens */
    .wellness-images {
        gap: 1rem; /* Reduced gap */
        width: 100%;
        max-width: 100%;
    }

    .wellness-image {
        width: 100%;
        margin-bottom: 1rem; /* Reduced margin */
    }

    .wellness-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        object-fit: contain; /* Changed to contain to avoid cropping */
        padding: 0;
        user-select: none; /* Make images unselectable */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none; /* Disable all pointer events for non-linked images */
        touch-action: manipulation; /* Prevent touch interference with scrolling */
    }

    /* Very small screen styles for clickable wellness image links */
    .wellness-image-link {
        border-radius: 15px;
    }

    /* Re-enable pointer events for linked images on very small screens */
    .wellness-image-link img {
        pointer-events: auto;
        border-radius: 15px;
    }
    .hero h1 {
        font-size: 1.6rem; /* Smaller font size to maintain stack layout */
        padding: 0.6rem 0.8rem;
        border-width: 1.5px;
        line-height: 1.3; /* Improved line height for better readability */
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: none; /* Ensure buttons remain hidden on very small screens */
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Products section adjustments for very small screens - match feature container width */
    .products-outer-container {
        padding: 2.5rem 0.75rem; /* Reduced side padding to match features section */
        margin: 0 auto; /* Center the container like features section */
        max-width: 100%; /* Match feature container width */
    }

    /* Wellness section adjustments for very small screens - 50% less padding at the top */
    .wellness-outer-container {
        padding: 0.25rem 0.75rem 2rem; /* 50% less top padding for very small screens */
        margin: 0 auto;
        border-radius: 15px;
        max-width: 100%;
    }

    /* Product grid for very small screens - match feature grid */
    .products-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 2rem; /* Match feature grid gap */
        max-width: 100%; /* Match feature container width */
        margin: 0 auto; /* Center the grid */
    }

    /* Style product cards to match feature cards on very small screens */
    .product-card {
        padding: 1.8rem 1rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    /* Adjust gradient reflection for very small screens */
    .product-card::before,
    .product-card::after {
        border-radius: 6px;
    }

    .product-image {
        padding-bottom: 100%; /* Square aspect ratio like feature icons */
        max-width: 100%; /* Match feature container width */
        margin: 0 auto 1.5rem; /* Center the image container and add bottom margin like feature icons */
    }

    /* All product images have the same styling on very small screens - 25% bigger */
    .product-card .product-image img {
        object-fit: contain;
        padding: 5px;
        max-height: 95%;
        max-width: 95%;
        top: 2.5%;
        left: 2.5%;
    }

    /* Base styling for all product images on very small screens */
    .product-card .product-image img {
        object-fit: contain;
        padding: 5px;
        max-height: 95%;
        max-width: 95%;
        top: 2.5%;
        left: 2.5%;
        transform: none;
    }

    /* Product 1 styling on very small screens */
    .product-card:nth-child(1) .product-image img {
        transform: scale(1.8);
        object-position: center;
        width: 100%;
        max-width: 100%;
        left: 0;
    }

    /* Product 2 styling to match product 1 on very small screens */
    .product-card:nth-child(2) .product-image img {
        transform: scale(1.8);
        object-position: center;
        width: 100%;
        max-width: 100%;
        left: 0;
    }

    /* Product 3 styling on very small screens - less cropping */
    .product-card:nth-child(3) .product-image img {
        transform: scale(1.5);
        object-position: center;
        object-fit: contain;
    }

    /* Product 4 styling on very small screens - no cropping */
    .product-card:nth-child(4) .product-image img {
        transform: scale(1.0);
        object-position: center;
        object-fit: contain;
    }

    /* Hover effects for each product image on very small screens */
    .product-card:nth-child(1):hover .product-image img {
        transform: scale(1.85);
    }

    .product-card:nth-child(2):hover .product-image img {
        transform: scale(1.85); /* Same hover effect as product 1 */
    }

    .product-card:nth-child(3):hover .product-image img {
        transform: scale(1.55);
    }

    .product-card:nth-child(4):hover .product-image img {
        transform: scale(1.05); /* Very slight zoom on hover for product 4 */
    }

    .product-info {
        padding: 1.25rem 0.5rem; /* Reduced side padding to match features section */
        height: 210px; /* Further increased height for very small screens */
    }

    .product-content {
        min-height: 150px; /* Increased min-height for very small screens */
    }

    .product-info h3 {
        font-size: 1rem; /* Smaller font */
    }

    .product-info p {
        -webkit-line-clamp: 4; /* Adjusted to 4 lines for very small screens */
        line-clamp: 4;
    }

    .product-price {
        font-size: 1.1rem; /* Slightly smaller font for very small screens */
        margin-bottom: 1.2rem;
        text-align: center;
        width: 100%;
        display: block;
    }

    .product-button {
        height: 32px; /* Adjusted height for very small screens */
    }

    .product-button .btn {
        padding: 6px 12px; /* Even smaller padding */
        font-size: 0.8rem; /* Even smaller font */
    }
}

/* Removed iOS-specific styles in favor of simpler approach */

/* Shopify Buy Button - Using default styling */
#product-component-1747699180049 {
    margin: 20px 0;
}

/* Legal Modal Styles */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.legal-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.legal-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.legal-modal-close:hover,
.legal-modal-close:focus {
    color: var(--primary);
    text-decoration: none;
}

.legal-modal-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.legal-modal-header h2 {
    margin-top: 0;
    color: var(--dark);
    font-size: 1.8rem;
}

.legal-date {
    color: #777;
    font-size: 0.9rem;
    margin-top: 5px;
}

.legal-section {
    margin-bottom: 25px;
}

.legal-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}
