
@media screen and (max-width: 768px) and (orientation: landscape) {
    #floral-products .product-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Visually Hidden Class for Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Import Sophisticated Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap');

:root {
    /* Saket Impex Royal Heritage Palette */
    --primary-green: #1B4332;
    --secondary-green: #2D5A47;
    --accent-green: #40916C;
    --tea-gold: #DAA520;
    --heritage-bronze: #CD7F32;
    --warm-cream: #FFFDF5; /* Lighter cream */
    --sage-mist: #95D5B2;
    --forest-depth: #081C15;
    --text-charcoal: #2C3E2F;
    --text-warm: #6B5B73;
    --paper-white: #FFFEF7;
    --tea-leaf-green: #4A6741;
    --darjeeling-mist: #F0F8F0; /* Lighter mist */
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Lato', sans-serif;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(27, 67, 50, 0.1);
    --shadow-medium: 0 4px 20px rgba(27, 67, 50, 0.15);
    --shadow-heavy: 0 8px 30px rgba(27, 67, 50, 0.25);
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-charcoal);
    background-color: var(--warm-cream);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(149, 213, 178, 0.03) 0%, transparent 50%);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Image Loading Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
    loading: lazy;
    image-rendering: optimizeQuality;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-main-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #FFFFFF;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.logo-text h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin: 0;
}

.logo-text span {
    color: var(--tea-gold);
    font-size: 0.9rem;
    font-style: italic;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-charcoal);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

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

/* Hero Section */
.hero {
    height: auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 70px; /* For navbar height */
}

.hero-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-main-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Center the image for fuller display */
}

/* Mobile hero image optimization */
@media (max-width: 768px) {
    .hero-main-bg-image {
        object-position: center center;
        filter: brightness(0.85); /* Slightly darken for better text contrast */
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1500px;
    width: 100%;
    padding: 0 100px;
}

.hero-text {
    position: relative;
    max-width: 484px; /* Another 1/4 larger (387 + 97) */
    background: rgba(0, 0, 0, 0.05); /* Reduced transparency by 15% */
    padding: 3.5rem 4.25rem; /* Another 1/4 larger */
    margin: 0; /* Reset margins */
    border-radius: 40px; /* Slightly more rounded */
    text-align: left; /* Left-aligned content */
    z-index: 10; /* Ensure it's above background */
}

.hero-text h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.6rem; /* Another 1/4 larger (2.1 + 0.5) */
    color: #fff;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 1.75rem; /* Another 1/4 larger */
    letter-spacing: 1.2px;
}

.hero-text p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem; /* Another 1/4 larger (0.8 + 0.2) */
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.75;
    margin-bottom: 2.5rem; /* Another 1/4 larger */
    font-weight: 300;
    letter-spacing: 0.8px;
}

.hero-buttons {
    display: flex;
    gap: 1rem; /* Reduced gap for smaller text block */
    flex-wrap: nowrap; /* Keep buttons on one line */
}

.hero-buttons .btn {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.94rem; /* Another 1/4 larger (0.75 + 0.19) */
    font-weight: 300;
    padding: 0.94rem 2.75rem; /* Another 1/4 larger */
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px; /* Matching rounded corners */
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 1.2px;
    white-space: nowrap; /* Keep text on one line */
    text-align: center; /* Ensure text is centered in button */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Ensure proper spacing below hero */
.hero + section {
    margin-top: 0;
}

/* Legacy Section */
.legacy {
    padding: 80px 0;
    background: var(--warm-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    color: var(--primary-green);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.legacy-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: var(--text-warm);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.legacy-content {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    /* ANNOTATION: Added lighter green transparent background for better readability */
    background: linear-gradient(135deg, #fdfdfd 0%, #f5fbf5 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.legacy-story p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    color: var(--text-charcoal);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: justify;
}

.legacy-tagline {
    text-align: center;
    margin: 2rem 0;
    color: var(--tea-gold);
    font-style: italic;
    font-size: 1.3rem;
}

.legacy-story h3 {
    color: var(--primary-green);
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    font-size: 2.2rem;
}

.legacy-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.heritage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.legacy-image:hover .heritage-image {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .legacy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 40px 30px;
    }
    
    .legacy-image {
        min-height: 400px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .legacy-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.heritage-story {
    margin-bottom: 3rem;
}

.heritage-story p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(149, 213, 178, 0.2);
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-mist));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.tea-garden-gallery {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tea-garden-gallery:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.tea-garden-gallery:hover .main-garden-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 67, 50, 0.9));
    color: #FFFFFF;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.tea-garden-gallery:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: var(--tea-gold);
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: var(--paper-white);
    margin: 0;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--warm-cream);
}

/* Packaging feature list styling */
#packaging-products .feature-list {
    list-style: disc;
    margin: 0 0 1rem 1.25rem;
    text-align: left;
    color: #666666;
    line-height: 1.5;
}
#packaging-products .feature-list li {
    margin: 0.15rem 0;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    #packaging-products .feature-list {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}

/* Product Section Styling */
.product-section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title p {
    color: var(--text-warm);
    font-size: 1.1rem;
    margin: 0;
}

/* Horizontal Scroll Container */
.horizontal-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-horizontal {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: calc(100% - 120px); /* Account for scroll arrows */
}

/* ANNOTATION: Match original and blends sections to floral alignment - floral is perfect */

.products-horizontal::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

/* Scroll Arrows */
.scroll-arrow {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    z-index: 5;
    flex-shrink: 0;
}

.scroll-arrow:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.scroll-arrow {
    font-size: 1.2rem;
    line-height: 1;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(149, 213, 178, 0.2);
    position: relative;
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    
    /* Dynamic height that accommodates content properly */
    height: auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ANNOTATION: Both original and blends sections now match floral width perfectly */
/* All sections use the same default .product-card styling for consistent width */

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

/* Product Cards - Tea Makers Inspired */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--tea-gold);
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-card.featured .product-badge {
    background: linear-gradient(135deg, var(--tea-gold), var(--heritage-bronze));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Standardized height for ALL product sections */
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    /* Force consistent aspect ratio */
    aspect-ratio: 1 / 1;
    min-height: 250px;
    max-height: 250px;
}

.product-image-container:hover {
    box-shadow: var(--shadow-medium);
}

.product-tea-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    /* Enhanced image clarity and definition */
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.product-image-container:hover .product-tea-image {
    transform: scale(1.1);
}

.product-icon-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(27, 67, 50, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.product-content {
    padding: 0 1rem;
    /* ANNOTATION: Flex layout for consistent alignment of all elements */
    flex: 1; /* Take remaining space */
    display: flex;
    flex-direction: column;
}

/* Fixed product content layout for Original and Blends */
.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ensure descriptions show fully without truncation */
.product-description {
    flex-grow: 1;
    margin-bottom: 1rem;
}

/* Ensure CTA buttons are always visible at bottom */
.product-cta {
    margin-top: auto;
    flex-shrink: 0;
}

.product-origin {
    display: block;
    font-size: 0.85rem;
    color: var(--tea-gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.product-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(149, 213, 178, 0.2);
}

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

.detail-label {
    font-weight: 500;
    color: var(--text-charcoal);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-cta {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.product-cta:hover {
    background: var(--primary-green);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.product-card.featured {
    border: 3px solid var(--tea-gold);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(218, 165, 32, 0.08) 100%);
    box-shadow: 0 8px 35px rgba(218, 165, 32, 0.25);
    position: relative;
}

.product-card.featured::before {
    content: 'PREMIUM SELECTION';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--tea-gold), var(--heritage-bronze));
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    z-index: 10;
}

/* Product Categories Styling */
.products-categories {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-radius: 20px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1e3a1e;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-header p {
    font-size: 1.1rem;
    color: #5a6b5a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #228B22, #32CD32);
    transition: left 0.3s ease;
}

.category-card:hover::before {
    left: 0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.15);
    border-color: #e8f5e8;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #228B22, #32CD32);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.2);
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(34, 139, 34, 0.3);
}

.category-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1e3a1e;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card p {
    color: #5a6b5a;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.category-card ul li {
    color: #228B22;
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    transition: all 0.2s ease;
}

.category-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #32CD32;
    font-weight: bold;
    font-size: 1rem;
}

.category-card ul li:hover {
    color: #1e3a1e;
    padding-left: 25px;
}

/* Responsive design for categories */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr); /* Show 2 cards per row */
        gap: 15px;
    }

    .categories-grid.mobile {
        grid-template-columns: repeat(2, 1fr) !important; /* Show 2 cards on very small screens */
    }
    
    .category-header h3 {
        font-size: 2rem;
    }
    
    .category-card {
        padding: 12px 8px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .category-card h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .category-card p {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .category-card ul li {
        font-size: 0.7rem;
        padding: 3px 0;
    }
    
    .category-card ul li::before {
        font-size: 0.7rem;
    }
}

.product-card.featured .product-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #FFFFFF;
    border: none;
}

.product-card.featured .product-cta:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-2px);
}

/* Additional Image Consistency Rules for ALL product sections */
/* These rules ensure consistent sizing across Original Teas, Signature Blends, and any future sections */
#original-products .product-image-container,
#blends-products .product-image-container,
#floral-products .product-image-container,
.product-section .product-image-container {
    height: 250px !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 250px !important;
    max-height: 250px !important;
    overflow: hidden !important;
}

#original-products .product-tea-image,
#blends-products .product-tea-image,
#floral-products .product-tea-image,
.product-section .product-tea-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Compact Floral Product Cards */
#floral-products .product-card {
    height: auto !important; /* Allow auto height for compact design */
    min-height: auto !important;
    flex: 0 0 calc(33.333% - 1rem) !important; /* Same width as other sections */
    max-width: calc(33.333% - 1rem) !important;
    padding: 1rem !important; /* Reduced padding for compact look */
}

#floral-products .product-content {
    padding: 0 0.5rem !important; /* Reduced content padding */
    text-align: center;
}

#floral-products .product-origin {
    font-size: 0.75rem !important; /* Smaller origin text */
    margin-bottom: 0.25rem !important;
}

#floral-products .product-card h3 {
    font-size: 1.1rem !important; /* Smaller title */
    margin-bottom: 0.75rem !important;
    line-height: 1.3;
}

#floral-products .product-cta {
    padding: 8px 12px !important; /* Smaller button */
    font-size: 0.75rem !important;
    margin-top: 0.5rem !important;
}

/* Responsive adjustments for floral cards */
@media (max-width: 768px) {
    #floral-products .product-card {
        flex: 0 0 calc(50% - 1rem) !important; /* 2 cards on tablet */
        max-width: calc(50% - 1rem) !important;
    }
}

@media (max-width: 480px) {
    #floral-products .product-card {
        flex: 0 0 80% !important; /* Single card focus on mobile, same as other sections */
        max-width: 80% !important;
    }
}


/* Quality Section */
.quality {
    padding: 80px 0;
    background: var(--white);
}

.quality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-points {
    margin-top: 2rem;
}

.quality-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quality-point i {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.quality-point h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.quality-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    color: var(--paper-white);
    box-shadow: var(--shadow-medium);
}

.stat h3 {
    font-size: 3rem;
    color: var(--tea-gold);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--paper-white);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(149, 213, 178, 0.1) 100%);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item i {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

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

.form-group.full-width {
    grid-template-columns: 1fr;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(149, 213, 178, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--warm-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(82, 183, 136, 0.2);
}

/* Custom Multiselect Dropdown */
.custom-multiselect {
    position: relative;
    width: 100%;
}
.multiselect-trigger {
    border: 2px solid rgba(149, 213, 178, 0.3);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--warm-cream);
    font-size: 1rem;
    transition: all 0.3s ease;
}
#multiselect-display {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--text-charcoal);
    flex: 1;
}

.multiselect-trigger::after {
    content: '▼';
    font-size: 0.8rem;
    color: var(--text-charcoal);
    margin-left: 10px;
}

.custom-multiselect.open .multiselect-trigger::after {
    content: '▲';
}
.multiselect-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid rgba(149, 213, 178, 0.3);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background-color: #ffffff;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: -2px;
}
.custom-multiselect.open .multiselect-options {
    display: block;
}

.custom-multiselect.open .multiselect-trigger {
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(82, 183, 136, 0.2);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.multiselect-option {
    display: block;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(149, 213, 178, 0.1);
}

.multiselect-option:last-child {
    border-bottom: none;
}

.multiselect-option:hover {
    background-color: var(--warm-cream);
    color: var(--primary-green);
}
.multiselect-option input {
    margin-right: 10px;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--tea-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--tea-gold);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-green);
    border-radius: 50%;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--tea-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-green);
    padding-top: 2rem;
    text-align: center;
}

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

/* Large screens / Fullscreen compatibility */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1600px; /* Wider container for large screens */
        padding: 0 150px; /* More padding for better positioning */
    }
    
    .hero-text {
        margin-left: 50px; /* Additional left margin for better positioning */
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #FFFFFF; /* Solid white background */
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-medium);
        padding: 1rem 0; /* Reduced from 2rem to 1rem for shorter height */
        height: auto;
        max-height: 300px; /* Limit maximum height */
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
        z-index: 9999;
        max-height: calc(100vh - 80px); /* Ensure it fits on screen */
        overflow-y: auto; /* Add scroll if needed */
    }
    /* Improved menu item spacing for shorter height */
    .nav-menu li {
        margin: 0.5rem 0; /* Reduced spacing between menu items */
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem; /* Reduced padding for more compact menu */
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }
    
    /* Show and style nav close button on mobile */
    .nav-close-button {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }
    
    .nav-close-button button {
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
        color: var(--primary-green);
        padding: 5px 10px;
        transition: all 0.3s ease;
    }
    
    .nav-close-button button:hover {
        color: var(--tea-gold);
        transform: scale(1.1);
    }

    .hero {
        padding: 100px 0 0;
    }

    .hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .hero-text {
        padding: 3.5rem 3.5rem;
        margin: 0 auto;
        margin-top: 60px;
        background: rgba(0, 0, 0, 0.1);
    }
    
    .hero-text h1 {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .hero-text p {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
    
    .hero-buttons {
        gap: 2rem;
        justify-content: center;
    }

    .about-content,
    .contact-content,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .hero-text {
        padding: 3.5rem 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        letter-spacing: 1.5px;
        font-weight: 300;
    }
    
    .hero-text p {
        font-size: 1.25rem;
        letter-spacing: 0.8px;
        line-height: 1.7;
        font-weight: 300;
    }
    
    .hero-buttons .btn {
        padding: 1.1rem 3rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
        border-color: rgba(255, 255, 255, 0.25);
        font-weight: 300;
    }

    .tea-leaves-animation {
        width: 60px;
        height: 60px;
    }

    .hero-bg-image {
        width: 280px;
        height: 280px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-feature {
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 1.5rem 1.2rem;
        border-radius: 20px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .products-horizontal {
        width: 100%;
        gap: 0.8rem; /* Smaller gap on mobile */
        padding: 0.5rem;
    }

    .scroll-arrow {
        display: none;
    }

    /* Original mobile layout - one card at a time */
    .product-card {
        flex: 0 0 80%;
        max-width: 80%;
        min-height: 480px !important;
    }

    /* Floral cards show one at a time on mobile (restored to original) */
    #floral-products .product-card {
        flex: 0 0 95% !important;
        max-width: 95% !important;
        min-height: auto !important;
    }
    
    /* Optimize product images for mobile */
    .product-image-container {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    
    .product-card h3 {
        font-size: 1.1rem !important;
    }
    
    .product-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    .product-cta {
        font-size: 0.8rem !important;
        padding: 10px 15px !important;
    }

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

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

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

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

/* Selection Colors */
::selection {
    background: var(--accent-green);
    color: #FFFFFF;
}

::-moz-selection {
    background: var(--accent-green);
    color: #FFFFFF;
}

/* ========================================= */
/* MODERN RESPONSIVE MOBILE OPTIMIZATIONS */
/* ========================================= */

/* Mobile-specific improvements for better resizing */
@media (max-width: 768px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        height: auto;
        padding-top: 60px; /* Reduced from 70px */
    }
    
    .hero-content {
        flex-direction: column;
        padding: 1rem;
        transform: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        width: 90%;
        max-width: 500px;
    }

    .hero-text {
        max-width: 100%;
        padding: 2rem 1.5rem;
        text-align: center;
        margin: 0;
        border-radius: 25px; /* Smaller radius for mobile */
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.3;
        letter-spacing: 0.8px;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        justify-content: center;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        border-radius: 25px;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-buttons .btn:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.15);
    }
    
    /* ============================= */
    /* RESPONSIVE PRODUCT CARDS */
    /* ============================= */
    
    /* Optimized mobile horizontal scrolling */
    .products-horizontal {
        display: flex !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        width: calc(100vw - 40px) !important;
        padding: 0.5rem 0 !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .products-horizontal::-webkit-scrollbar {
        display: none !important;
    }
    
    /* Show scroll arrows on mobile for better UX */
    .scroll-arrow {
        display: flex !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    /* Mobile-optimized product cards - show 1.5-2 cards */
    .product-card {
        flex: 0 0 280px !important; /* Fixed width for consistent scrolling */
        max-width: 280px !important;
        min-height: 420px !important;
        height: auto !important;
        padding: 1rem !important;
        margin: 0 !important;
        scroll-snap-align: start !important;
    }
    
    /* Scroll snap for better mobile experience */
    .products-horizontal {
        scroll-snap-type: x mandatory !important;
    }
    
    /* Smaller, responsive product images */
    .product-image-container {
        height: clamp(140px, 25vw, 180px) !important;
        min-height: clamp(140px, 25vw, 180px) !important;
        max-height: clamp(140px, 25vw, 180px) !important;
        margin-bottom: 1rem !important;
    }
    
    /* Responsive typography in product cards */
    .product-card h3 {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }
    
    .product-origin {
        font-size: clamp(0.7rem, 3vw, 0.8rem) !important;
        margin-bottom: 0.4rem !important;
    }
    
    .product-description {
        font-size: clamp(0.8rem, 3.5vw, 0.9rem) !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Simplified product details */
    .product-details {
        margin-bottom: 1rem !important;
    }
    
    .detail-item {
        padding: 0.3rem 0 !important;
    }
    
    .detail-label,
    .detail-value {
        font-size: clamp(0.7rem, 3vw, 0.8rem) !important;
    }
    
    /* Responsive CTA buttons */
    .product-cta {
        padding: 0.75rem 1rem !important;
        font-size: clamp(0.7rem, 3vw, 0.8rem) !important;
        border-radius: 6px !important;
    }
    
    /* ============================= */
    /* COMPACT FLORAL CARDS - MOBILE */
    /* ============================= */
    
    #floral-products .product-card {
        padding: 0.75rem !important;
        min-height: auto !important;
    }
    
    #floral-products .product-image-container {
        height: clamp(120px, 22vw, 150px) !important;
        min-height: clamp(120px, 22vw, 150px) !important;
        max-height: clamp(120px, 22vw, 150px) !important;
        margin-bottom: 0.75rem !important;
    }
    
    #floral-products .product-content {
        padding: 0 !important;
    }
    
    #floral-products .product-card h3 {
        font-size: clamp(0.9rem, 3.5vw, 1rem) !important;
        margin-bottom: 0.5rem !important;
    }
    
    #floral-products .product-origin {
        font-size: clamp(0.65rem, 2.5vw, 0.7rem) !important;
    }
    
    #floral-products .product-cta {
        padding: 0.5rem 0.75rem !important;
        font-size: clamp(0.65rem, 2.8vw, 0.7rem) !important;
        margin-top: 0.5rem !important;
    }

/* ================================ */
/* COMPREHENSIVE MOBILE OPTIMIZATIONS */
/* ================================ */

/* Fix viewport height issues across all mobile browsers */
@media screen and (max-width: 768px) {
    .hero {
        /* Multiple fallbacks for different browsers */
        height: 100vh; /* Standard fallback */
        height: calc(100vh - env(safe-area-inset-top)); /* iOS safe area */
        height: 100svh; /* Small viewport height */
        min-height: 600px; /* Minimum height to prevent cut-off */
        
        /* Fix Safari rendering artifacts */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* iOS Safari specific fixes */
    @supports (-webkit-touch-callout: none) {
        .hero {
            height: -webkit-fill-available;
            min-height: calc(100vh - 20px);
        }
    }
    
    /* Better mobile text scaling */
    .hero-text h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile Navigation Improvements */
    .nav-container {
        padding: 0 15px;
    }
    
    .company-logo {
        height: 45px;
        max-width: 180px;
    }
    
    /* Galaxy Section Mobile Improvements */
    .legacy-content {
        padding: 30px 20px !important;
        margin: 0 15px !important;
        border-radius: 15px !important;
    }
    
    .section-header {
        margin-bottom: 2.5rem !important;
    }
    
    .legacy-subtitle {
        font-size: 1.1rem !important;
        padding: 0 0.5rem !important;
        line-height: 1.5 !important;
    }
    
    .legacy-story p {
        font-size: 1.05rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1.5rem !important;
        text-align: left !important;
    }
    
    .legacy-story h3 {
        font-size: 1.8rem !important;
        margin: 2rem 0 1rem 0 !important;
    }
    
    .product-image-container {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }
    
    .product-content {
        padding: 0 0.75rem;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .detail-item {
        padding: 0.4rem 0;
    }
    
    .detail-label,
    .detail-value {
        font-size: 0.8rem;
    }
    
    .product-cta {
        padding: 10px;
        font-size: 0.75rem;
    }
    
    /* Mobile Section Spacing */
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-title h3 {
        font-size: 1.5rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile Contact Form */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Mobile multiselect styling */
    .multiselect-trigger {
        padding: 12px !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }
    
    .multiselect-options {
        font-size: 0.9rem !important;
    }
    
    .multiselect-option {
        padding: 10px 12px !important;
    }
    
    /* Prevent bounce scrolling issues */
    body {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: none;
    }
    
    html {
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

/* Mobile Portrait Text Justification for Our Legacy */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .legacy-story p {
        text-align: justify !important;
    }
}

/* Emergency fallback for problematic browsers */
@media screen and (max-height: 600px) {
    .hero {
        height: auto !important;
        min-height: 500px !important;
    }
    
    .hero-content {
        min-height: 400px !important;
    }
    
    .hero-text {
        padding: 1rem !important;
    }
}

/* ========================================= */
/* HORIZONTAL MOBILE (LANDSCAPE) FIX */
/* ========================================= */

/* Force landscape optimizations for mobile devices */
@media only screen and (orientation: landscape) and (max-height: 600px),
       only screen and (orientation: landscape) and (max-width: 932px),
       only screen and (max-aspect-ratio: 16/9) and (orientation: landscape) {
    /* Global landscape adjustments */
    body {
        font-size: 14px !important;
    }
    
    section {
        padding: 20px 0 !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    .section-header {
        margin-bottom: 15px !important;
    }
    
    .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }
    
    .section-header p {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
    }
    
    /* Legacy Section - Landscape */
    .legacy {
        padding: 20px 0 !important;
    }
    
    .legacy-content {
        max-height: calc(100vh - 100px) !important;
        overflow-y: auto !important;
    }
    
    .legacy-story p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .legacy-story h3 {
        font-size: 1rem !important;
        margin: 0.5rem 0 !important;
    }
    
    /* Products Section - Landscape */
    .products {
        padding: 20px 0 !important;
    }
    
    .product-section {
        margin-bottom: 20px !important;
    }
    
    .section-title h3 {
        font-size: 1.2rem !important;
        margin-bottom: 3px !important;
    }
    
    .section-title p {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }
    
    .horizontal-scroll-container {
        height: auto !important;
        max-height: calc(100vh - 150px) !important;
    }
    
    .product-card {
        min-height: auto !important;
        max-width: 280px !important;
    }
    
    .product-badge {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
    }
    
    .product-image-container {
        height: 120px !important;
    }
    
    .product-content {
        padding: 10px !important;
    }
    
    .product-origin {
        font-size: 0.65rem !important;
        margin-bottom: 3px !important;
    }
    
    .product-content h3 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }
    
    .product-description {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .product-details {
        gap: 3px !important;
        margin-bottom: 8px !important;
    }
    
    .detail-item {
        font-size: 0.65rem !important;
    }
    
    .product-cta {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
    }
    
    /* Complete Product Range - Landscape */
    .products-categories {
        padding: 15px 0 !important;
        margin-top: 15px !important;
    }
    
    .category-header {
        margin-bottom: 10px !important;
    }
    
    .category-header h3 {
        font-size: 1.2rem !important;
        margin-bottom: 3px !important;
    }
    
    .category-header p {
        font-size: 0.75rem !important;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        max-height: calc(100vh - 120px) !important;
        overflow-y: auto !important;
    }
    
    .category-card {
        padding: 8px !important;
    }
    
    .category-icon {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 5px !important;
    }
    
    .category-icon i {
        font-size: 0.8rem !important;
    }
    
    .category-card h4 {
        font-size: 0.85rem !important;
        margin-bottom: 3px !important;
    }
    
    .category-card p {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        margin-bottom: 5px !important;
    }
    
    .category-card ul {
        margin-top: 3px !important;
    }
    
    .category-card li {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
        padding-left: 12px !important;
    }
    
    .category-card li::before {
        width: 10px !important;
        height: 10px !important;
        font-size: 6px !important;
        left: 0 !important;
        top: 1px !important;
    }
    
    /* Quality Section - Landscape */
    .quality {
        padding: 20px 0 !important;
    }
    
    .quality-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    
    .quality-point {
        margin-bottom: 10px !important;
    }
    
    .quality-point i {
        font-size: 0.9rem !important;
    }
    
    .quality-point h4 {
        font-size: 0.85rem !important;
        margin-bottom: 3px !important;
    }
    
    .quality-point p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
    
    .quality-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }
    
    .stat {
        padding: 10px 5px !important;
    }
    
    .stat h3 {
        font-size: 1.2rem !important;
        margin-bottom: 2px !important;
    }
    
    .stat p {
        font-size: 0.65rem !important;
    }
    
    /* Contact Section - Landscape */
    .contact {
        padding: 20px 0 !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    
    .contact-info {
        padding: 15px !important;
    }
    
    .contact-info h3 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .contact-item {
        margin-bottom: 10px !important;
    }
    
    .contact-item i {
        font-size: 0.9rem !important;
        width: 25px !important;
    }
    
    .contact-item h4 {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }
    
    .contact-item p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
    
    .contact-form {
        padding: 15px !important;
    }
    
    .contact-form h3 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .form-group {
        margin-bottom: 8px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px !important;
        font-size: 0.75rem !important;
    }
    
    .form-group textarea {
        min-height: 60px !important;
    }
    
    .multiselect-trigger {
        padding: 8px !important;
        font-size: 0.75rem !important;
    }
    
    .multiselect-options {
        max-height: 120px !important;
    }
    
    .multiselect-option {
        padding: 5px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .btn-primary {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
    
    /* Footer - Landscape */
    .footer {
        padding: 20px 0 10px !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }
    
    .footer-section p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 3px !important;
    }
    
    .footer-section ul {
        gap: 5px !important;
    }
    
    .footer-section a {
        font-size: 0.7rem !important;
    }
    
    .social-links {
        gap: 5px !important;
        margin-top: 5px !important;
    }
    
    .social-links a {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }
    
    .footer-bottom {
        padding-top: 10px !important;
    }
    
    .footer-bottom p {
        font-size: 0.65rem !important;
    }
}

/* General mobile landscape fix for hero padding issues */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding-top: 40px !important;
        min-height: 100vh !important;
    }
    
    .hero-content {
        padding: 0 !important;
        max-width: 90% !important;
        width: 90% !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        position: absolute !important;
    }
    
    .hero-text {
        max-width: 100% !important;
        width: auto !important;
        padding: 1rem 1.5rem !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        border-radius: 20px !important;
        display: inline-block !important;
    }
    
    .hero-text h1 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem !important;
    }
    
    .hero-text p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-buttons {
        gap: 0.5rem !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.75rem !important;
        min-width: 140px !important;
    }
}

/* Modern floating hero solution for landscape mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        padding: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 600px !important;
        z-index: 10 !important;
        padding: 0 20px !important; /* Small padding instead of 0 */
    }
    
    .hero-text {
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        border-radius: 15px !important;
        padding: 0.8rem 1.2rem !important;
        text-align: center !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        max-width: 85% !important;
        max-height: 80vh !important;
        overflow-y: hidden !important; /* Remove scroll */
        overflow-x: hidden !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .hero-text h1 {
        font-size: clamp(1rem, 3.5vw, 1.4rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 0.75rem !important;
        letter-spacing: 0.5px !important;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 400 !important;
    }
    
    .hero-text p {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        letter-spacing: 0.3px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        font-weight: 300 !important;
    }
    
    .hero-buttons {
        gap: 0.75rem !important;
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.8px !important;
        border-radius: 25px !important;
        white-space: nowrap !important;
        min-width: 120px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: rgba(255, 255, 255, 0.9) !important;
        transition: all 0.3s ease !important;
    }
    
    .hero-buttons .btn:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        transform: translateY(-1px) !important;
    }
    
    /* Navbar adjustments for landscape */
    .navbar {
        padding: 0.2rem 0 !important;
        position: fixed !important;
        z-index: 1001 !important;
        height: 40px !important;
    }
    
    .nav-container {
        padding: 0 15px !important;
    }
    
    .company-logo {
        height: 25px !important;
        max-width: 100px !important;
    }
    
    .nav-menu {
        font-size: 0.75rem !important;
    }
    
    .nav-menu a {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }
    
    /* Ensure proper flow after hero */
    .legacy {
        padding: 30px 0 !important;
    }
}

/* Special handling for iPhone 14 Pro Max and similar large landscape phones */
@media screen and (max-height: 430px) and (orientation: landscape) and (min-width: 900px) {
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        padding-top: 45px !important;
        overflow: hidden !important;
    }
    
    .hero-text {
        max-width: 70% !important;
        padding: 0.75rem 1.25rem !important;
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-text h1 {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem) !important;
        line-height: 1.05 !important;
        margin-bottom: 0.4rem !important;
    }
    
    .hero-text p {
        font-size: clamp(0.65rem, 2.2vw, 0.8rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem !important;
    }
    
    .hero-buttons .btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.65rem !important;
    }
    
    .navbar {
        padding: 0.2rem 0 !important;
    }
    
    .company-logo {
        height: 25px !important;
        max-width: 100px !important;
    }
}

/* Extra small landscape phones */
@media screen and (max-height: 400px) and (orientation: landscape) {
    .hero {
        padding-top: 35px !important;
        min-height: 95vh !important;
    }
    
    .hero-text {
        padding: 0.75rem !important;
        margin-top: 0.25rem !important;
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-text h1 {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem) !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero-text p {
        font-size: clamp(0.65rem, 2.2vw, 0.8rem) !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-buttons .btn {
        padding: 0.4rem 1rem !important;
        font-size: 0.65rem !important;
    }
    
    /* Ultra compact sections */
    section {
        padding: 15px 0 !important;
    }
    
    .section-header h2 {
        font-size: 1.2rem !important;
    }
    
    /* Even more compact product cards */
    .product-card {
        max-width: 250px !important;
    }
    
    .product-image-container {
        height: 100px !important;
    }
    
    .product-content {
        padding: 8px !important;
    }
    
    .product-content h3 {
        font-size: 0.8rem !important;
    }
    
    .product-description {
        font-size: 0.65rem !important;
        -webkit-line-clamp: 1 !important;
    }
    
    /* Compact categories grid */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
    }
    
    .category-card {
        padding: 5px !important;
    }
    
    .category-icon {
        width: 25px !important;
        height: 25px !important;
    }
    
    .category-card h4 {
        font-size: 0.75rem !important;
    }
    
    .category-card p {
        font-size: 0.6rem !important;
    }
    
    .category-card li {
        font-size: 0.55rem !important;
    }
}

/* ========================================= */
/* MOBILE OPTIMIZATIONS FOR REMAINING SECTIONS */
/* ========================================= */

@media (max-width: 768px) {
    /* ============================= */
    /* COMPLETE PRODUCT RANGE - MOBILE */
    /* ============================= */
    
    .products-categories {
        margin-top: 20px !important;
        padding: 15px 0 !important;
        border-radius: 15px !important;
    }
    
    .category-header {
        margin-bottom: 15px !important;
        padding: 0 1rem !important;
    }
    
    .category-header h3 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }
    
    .category-header p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }
    
    /* Show all category cards in a grid on mobile */
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 cards per row */
        gap: 10px !important;
        padding: 0 5px !important;
    }
    
    .category-card {
        padding: 12px 8px !important;
        margin-bottom: 0 !important; /* Remove margin-bottom since gap handles spacing */
        border-radius: 10px !important;
        min-height: auto !important;
    }
    
    .category-icon {
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto 10px !important;
    }
    
    .category-icon i {
        font-size: 1rem !important;
    }
    
    .category-card h4 {
        font-size: 1rem !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
    }
    
    .category-card p {
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .category-card ul {
        margin-top: 5px !important;
    }
    
    .category-card ul li {
        font-size: 0.7rem !important;
        padding: 3px 0 !important;
        padding-left: 12px !important;
        line-height: 1.1 !important;
    }
    
    .category-card ul li::before {
        font-size: 0.7rem !important; /* Make tick smaller */
        left: 0 !important;
    }
    
    /* ============================= */
    /* CONTACT SECTION - COMPACT MOBILE */
    /* ============================= */
    
    .contact {
        padding: 30px 0 !important;
    }
    
    .contact .section-header {
        margin-bottom: 20px !important;
    }
    
    .contact .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-info {
        gap: 1rem !important;
        order: 2;
    }
    
    .contact-form {
        padding: 1rem !important;
        border-radius: 12px !important;
        order: 1;
    }
    
    .contact-item {
        gap: 0.5rem !important;
        align-items: flex-start !important;
    }
    
    .contact-item i {
        font-size: 1rem !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
    }
    
    .contact-item h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .contact-item p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    /* Compact form layout */
    .form-group {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }
    
    .form-group textarea {
        min-height: 80px !important;
    }
    
    /* Compact submit button */
    .contact-form .btn-primary {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
    
    /* ============================= */
    /* QUALITY ASSURANCE - COMPACT MOBILE */
    /* ============================= */
    
    .quality {
        padding: 30px 0 !important;
    }
    
    .quality .section-header {
        margin-bottom: 20px !important;
    }
    
    .quality .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }
    
    .quality .section-header p {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .quality-content {
        gap: 1rem !important;
    }
    
    /* Quality points (Heritage, Tailored, Sustainability) */
    .quality-points {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .quality-point {
        display: flex !important;
        gap: 10px !important;
        align-items: flex-start !important;
        padding: 10px !important;
        background: rgba(255, 255, 255, 0.5) !important;
        border-radius: 8px !important;
    }
    
    .quality-point i {
        font-size: 1rem !important;
        color: var(--primary-green) !important;
        min-width: 20px !important;
        margin-top: 2px !important;
    }
    
    .quality-point h4 {
        font-size: 0.9rem !important;
        margin-bottom: 3px !important;
        color: var(--primary-green) !important;
    }
    
    .quality-point p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        color: var(--text-charcoal) !important;
        margin: 0 !important;
    }
    
    .quality-card {
        padding: 15px !important;
        margin-bottom: 10px !important;
        border-radius: 10px !important;
    }
    
    .quality-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 10px !important;
    }
    
    .quality-icon i {
        font-size: 1.2rem !important;
    }
    
    .quality-card h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .quality-card p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .quality-certifications {
        margin-top: 20px !important;
        padding: 15px !important;
        border-radius: 10px !important;
    }
    
    .quality-certifications h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    .certification-list {
        gap: 8px !important;
    }
    
    .certification-badge {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        border-radius: 15px !important;
    }
    
    /* Compact stats blocks (65+ years, 9+ countries, 1957) */
    .quality-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        margin-top: 20px !important;
        padding: 0 5px !important;
    }
    
    .stat {
        padding: 15px 5px !important;
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)) !important;
        border-radius: 10px !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(27, 67, 50, 0.3) !important;
    }
    
    .stat h3 {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
        color: var(--tea-gold) !important;
    }
    
    .stat p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        color: var(--paper-white) !important;
        font-weight: 500 !important;
    }
    
    /* ============================= */
    /* FOOTER - COMPACT MOBILE */
    /* ============================= */
    
    .footer {
        padding: 30px 0 10px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section {
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-section p,
    .footer-section li,
    .footer-section a {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .footer-section ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .footer-section li {
        margin-bottom: 0 !important;
    }
    
    /* Compact social links */
    .social-links {
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    .social-links a {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }
    
    .footer-bottom {
        padding-top: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }
}

/* Extra small devices - keep 2 cards per row for better visibility */
@media (max-width: 380px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 cards per row even on very small screens */
        gap: 10px !important; /* Smaller gap on very small screens */
        padding: 0 10px;
    }
    
    /* ============================= */
    /* CONTACT FORM - MOBILE OPTIMIZED */
    /* ============================= */
    
    .contact {
        padding: 50px 0 !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info {
        gap: 1.5rem !important;
        order: 2;
    }
    
    .contact-form {
        padding: 1.5rem !important;
        border-radius: 15px !important;
        order: 1;
    }
    
    .contact-item {
        gap: 0.75rem !important;
    }
    
    .contact-item i {
        font-size: 1.2rem !important;
    }
    
    .contact-item h4 {
        font-size: clamp(1rem, 3.5vw, 1.1rem) !important;
        margin-bottom: 0.3rem !important;
    }
    
    .contact-item p {
        font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
        line-height: 1.4 !important;
    }
    
    /* Simplified form layout */
    .form-group {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px !important;
        font-size: clamp(0.85rem, 3vw, 0.9rem) !important;
        border-radius: 8px !important;
    }
    
    /* Simplified multiselect for mobile */
    .custom-multiselect {
        margin-bottom: 0.5rem !important;
    }
    
    .multiselect-trigger {
        padding: 12px !important;
        font-size: clamp(0.85rem, 3vw, 0.9rem) !important;
        border-radius: 8px !important;
    }
    
    .multiselect-options {
        max-height: 150px !important;
        border-radius: 8px !important;
    }
    
    .multiselect-option {
        padding: 8px !important;
        font-size: clamp(0.8rem, 2.8vw, 0.85rem) !important;
    }
    
    /* Responsive submit button */
    .btn-primary {
        padding: 12px 20px !important;
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
        width: 100% !important;
        border-radius: 8px !important;
    }
    
    /* ============================= */
    /* FOOTER - MOBILE SIMPLIFIED */
    /* ============================= */
    
    .footer {
        padding: 40px 0 15px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
        margin-bottom: 0.75rem !important;
    }
    
    .footer-section p {
        font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.4 !important;
    }
    
    .footer-section ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }
    
    .footer-section li {
        margin-bottom: 0 !important;
    }
    
    .footer-section a {
        font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
        padding: 0.25rem 0.5rem !important;
        border-radius: 4px !important;
        transition: all 0.2s ease !important;
    }
    
    .footer-section a:hover {
        background: rgba(218, 165, 32, 0.1) !important;
    }
    
    /* Simplified social links */
    .social-links {
        justify-content: center !important;
        gap: 0.75rem !important;
        margin-top: 0.75rem !important;
    }
    
    .social-links a {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .footer-bottom {
        padding-top: 1.5rem !important;
    }
    
    .footer-bottom p {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem) !important;
        line-height: 1.3 !important;
    }
    
    /* ============================= */
    /* QUALITY SECTION - MOBILE */
    /* ============================= */
    
    .quality {
        padding: 50px 0 !important;
    }
    
    .quality-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .quality-point {
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .quality-point i {
        font-size: 1.2rem !important;
    }
    
    .quality-point h4 {
        font-size: clamp(1rem, 3.5vw, 1.1rem) !important;
        margin-bottom: 0.4rem !important;
    }
    
    .quality-point p {
        font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
        line-height: 1.4 !important;
    }
    
    .quality-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
        gap: 1rem !important;
    }
    
    .stat {
        padding: 1.5rem 1rem !important;
        border-radius: 15px !important;
    }
    
    .stat h3 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        margin-bottom: 0.3rem !important;
    }
    
    .stat p {
        font-size: clamp(0.8rem, 3vw, 0.9rem) !important;
        margin: 0 !important;
    }
}

/* ========================================= */
/* ULTRA-AGGRESSIVE LANDSCAPE OPTIMIZATIONS */
/* ========================================= */

/* Apply to ALL landscape orientations regardless of device */
@media (orientation: landscape) {
    /* Global resets for landscape */
    * {
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    html {
        font-size: 13px !important;
    }
    
    body {
        line-height: 1.2 !important;
        font-size: 13px !important;
    }
    
    /* Ultra-compact navbar */
    .navbar {
        padding: 0.15rem 0 !important;
        height: 35px !important;
        box-shadow: none !important;
    }
    
    .nav-container {
        padding: 0 10px !important;
    }
    
    .company-logo {
        height: 20px !important;
        max-width: 80px !important;
    }
    
    .nav-menu {
        gap: 5px !important;
    }
    
    .nav-menu a {
        padding: 3px 8px !important;
        font-size: 0.65rem !important;
    }
    
    /* Ultra-compact sections */
    section {
        padding: 10px 0 !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
    
    .section-header {
        margin-bottom: 8px !important;
    }
    
    .section-header h2 {
        font-size: 1.1rem !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
    }
    
    .section-header p {
        font-size: 0.65rem !important;
        margin-bottom: 0 !important;
        line-height: 1.1 !important;
    }
    
    /* Ultra-compact hero */
    .hero {
        padding-top: 35px !important;
        min-height: calc(100vh - 35px) !important;
    }
    
    .hero-content {
        padding: 0 !important;
    }
    
    .hero-text {
        padding: 0.5rem !important;
        max-width: 80% !important;
    }
    
    .hero-text h1 {
        font-size: 1rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.3rem !important;
    }
    
    .hero-text p {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-buttons {
        gap: 0.3rem !important;
    }
    
    .hero-buttons .btn {
        padding: 0.3rem 0.8rem !important;
        font-size: 0.6rem !important;
        min-width: 100px !important;
    }
    
    /* Ultra-compact legacy section */
    .legacy {
        padding: 10px 0 !important;
    }
    
    .legacy-content {
        padding: 0 !important;
    }
    
    .legacy-story p {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.3rem !important;
        padding: 0 5px !important;
    }
    
    .legacy-story h3 {
        font-size: 0.85rem !important;
        margin: 0.3rem 0 !important;
        padding: 0 5px !important;
    }
    
    /* Ultra-compact products */
    .products {
        padding: 10px 0 !important;
    }
    
    .product-section {
        margin-bottom: 10px !important;
    }
    
    .section-title {
        padding: 0 10px !important;
    }
    
    .section-title h3 {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }
    
    .section-title p {
        font-size: 0.6rem !important;
        margin-bottom: 5px !important;
    }
    
    .horizontal-scroll-container {
        margin: 0 !important;
        padding: 0 5px !important;
    }
    
    .product-card {
        min-height: auto !important;
        max-width: 220px !important;
        margin: 0 3px !important;
    }
    
    .product-badge {
        font-size: 0.5rem !important;
        padding: 2px 5px !important;
        top: 3px !important;
        right: 3px !important;
    }
    
    .product-image-container {
        height: 80px !important;
        margin-bottom: 5px !important;
    }
    
    .product-content {
        padding: 5px !important;
    }
    
    .product-origin {
        font-size: 0.55rem !important;
        margin-bottom: 2px !important;
    }
    
    .product-content h3 {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
        line-height: 1.1 !important;
    }
    
    .product-description {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
        margin-bottom: 5px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .product-details {
        gap: 2px !important;
        margin-bottom: 5px !important;
    }
    
    .detail-item {
        font-size: 0.55rem !important;
        padding: 2px 0 !important;
    }
    
    .product-cta {
        padding: 4px 8px !important;
        font-size: 0.6rem !important;
    }
    
    /* Ultra-compact categories */
    .products-categories {
        padding: 8px 0 !important;
        margin-top: 8px !important;
    }
    
    .category-header {
        margin-bottom: 5px !important;
        padding: 0 10px !important;
    }
    
    .category-header h3 {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }
    
    .category-header p {
        font-size: 0.6rem !important;
    }
    
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3px !important;
        padding: 0 5px !important;
    }
    
    .category-card {
        padding: 3px !important;
        border-radius: 5px !important;
    }
    
    .category-icon {
        width: 20px !important;
        height: 20px !important;
        margin-bottom: 3px !important;
    }
    
    .category-icon i {
        font-size: 0.6rem !important;
    }
    
    .category-card h4 {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
        line-height: 1 !important;
    }
    
    .category-card p {
        font-size: 0.55rem !important;
        line-height: 1 !important;
        margin-bottom: 3px !important;
    }
    
    .category-card ul {
        margin-top: 2px !important;
    }
    
    .category-card li {
        font-size: 0.5rem !important;
        line-height: 1 !important;
        padding-left: 10px !important;
        margin-bottom: 1px !important;
    }
    
    .category-card li::before {
        width: 8px !important;
        height: 8px !important;
        font-size: 5px !important;
        left: 0 !important;
        top: 0 !important;
    }
    
    /* Ultra-compact quality section */
    .quality {
        padding: 10px 0 !important;
    }
    
    .quality-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }
    
    .quality-point {
        gap: 5px !important;
        margin-bottom: 5px !important;
    }
    
    .quality-point i {
        font-size: 0.7rem !important;
        width: 20px !important;
    }
    
    .quality-point h4 {
        font-size: 0.7rem !important;
        margin-bottom: 2px !important;
    }
    
    .quality-point p {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
    }
    
    .quality-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
        margin-top: 8px !important;
    }
    
    .stat {
        padding: 5px !important;
        border-radius: 8px !important;
    }
    
    .stat h3 {
        font-size: 1rem !important;
        margin-bottom: 1px !important;
    }
    
    .stat p {
        font-size: 0.55rem !important;
        margin: 0 !important;
    }
    
    /* Ultra-compact contact */
    .contact {
        padding: 10px 0 !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 0 10px !important;
    }
    
    .contact-info {
        padding: 8px !important;
        border-radius: 8px !important;
    }
    
    .contact-info h3 {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .contact-item {
        margin-bottom: 5px !important;
        gap: 5px !important;
    }
    
    .contact-item i {
        font-size: 0.7rem !important;
        width: 20px !important;
    }
    
    .contact-item h4 {
        font-size: 0.65rem !important;
        margin-bottom: 1px !important;
    }
    
    .contact-item p {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
    }
    
    .contact-form {
        padding: 8px !important;
        border-radius: 8px !important;
    }
    
    .contact-form h3 {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .form-group {
        margin-bottom: 5px !important;
        gap: 3px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 5px 8px !important;
        font-size: 0.65rem !important;
        border-radius: 5px !important;
    }
    
    .form-group textarea {
        min-height: 40px !important;
    }
    
    .multiselect-trigger {
        padding: 5px 8px !important;
        font-size: 0.65rem !important;
    }
    
    .multiselect-trigger::after {
        right: 5px !important;
        border-width: 3px 3px 0 !important;
    }
    
    .multiselect-options {
        max-height: 100px !important;
    }
    
    .multiselect-option {
        padding: 3px 5px !important;
        font-size: 0.6rem !important;
    }
    
    .btn-primary {
        padding: 5px 12px !important;
        font-size: 0.65rem !important;
        border-radius: 5px !important;
    }
    
    /* Ultra-compact footer */
    .footer {
        padding: 10px 0 5px !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 5px !important;
        padding: 0 10px !important;
    }
    
    .footer-section {
        text-align: left !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
    }
    
    .footer-section p {
        font-size: 0.6rem !important;
        line-height: 1.1 !important;
        margin-bottom: 2px !important;
    }
    
    .footer-section ul {
        gap: 3px !important;
    }
    
    .footer-section li {
        margin: 0 !important;
    }
    
    .footer-section a {
        font-size: 0.6rem !important;
        padding: 2px 4px !important;
    }
    
    .social-links {
        gap: 3px !important;
        margin-top: 3px !important;
    }
    
    .social-links a {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.6rem !important;
    }
    
    .footer-bottom {
        padding-top: 5px !important;
        border-top-width: 1px !important;
    }
    
    .footer-bottom p {
        font-size: 0.55rem !important;
        line-height: 1.1 !important;
    }
}
