/* 
   WOODEN VOGUE - Luxury Wooden Craft
   Main Stylesheet
   Version: 1.0.1
   Last Updated: Cache-Busted
*/

/* Base Styles */
:root {
    --primary-color: #785538;
    --secondary-color: #a47e3b;
    --accent-color: #d4b483;
    --text-color: #2c2418;
    --light-text: #f5f2eb;
    --background-color: #f9f6f0;
    --wood-dark: #4d341f;
    --wood-medium: #8b6c4e;
    --wood-light: #c4a775;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #f5f1e8 0%, #f9f6f0 25%, #f3ede3 50%, #f7f4ed 75%, #f5f1e8 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ensure main content takes up available space */
main {
    flex: 1;
}

/* Page layout for products page */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none;
    /* Enhanced image rendering for all images */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Prevent image loading issues and ensure visibility */
.category-image img,
.product-image img,
.featured-image img {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    display: block !important;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--wood-medium);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--wood-dark);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Premium Button Design */
.btn-premium {
    position: relative;
    background: linear-gradient(135deg, 
        #8B6F47 0%, 
        #A68B5B 25%, 
        #C5975A 50%, 
        #A68B5B 75%, 
        #8B6F47 100%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(139, 111, 71, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

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

.btn-premium:hover {
    background: linear-gradient(135deg, 
        #A68B5B 0%, 
        #C5975A 25%, 
        #E6B366 50%, 
        #C5975A 75%, 
        #A68B5B 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(139, 111, 71, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-premium:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.btn-premium:hover .btn-icon {
    transform: translateX(8px) rotate(45deg);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    animation: shimmer 3s infinite;
    border-radius: 50px;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

/* Enhanced effects for premium button */
.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-premium:hover::after {
    width: 300px;
    height: 300px;
}

/* Mobile optimizations for premium button */
@media (max-width: 768px) {
    .btn-premium {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-width: 200px;
        letter-spacing: 0.8px;
    }
    
    .view-all-container {
        margin-top: 3rem;
        padding: 1.5rem 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .btn-premium {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        min-width: 180px;
        letter-spacing: 0.6px;
    }
    
    .btn-premium:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(249, 246, 240, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

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

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
}

.logo a:hover {
    color: var(--wood-dark);
}

.logo a:hover h1 {
    color: var(--wood-dark);
}

/* Navigation */
nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

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

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

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

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

/* Header scrolled state */
header.scrolled {
    background-color: rgba(249, 246, 240, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile nav active state */
nav ul.active {
    display: flex;
}

/* Hero Section with Interior Background */
.hero {
    background: #2c4c66 url('../images/ship-2.jpg') center center / cover no-repeat !important;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    width: 100%;
    /* Enhanced image rendering for crisp display */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Performance optimizations */
    will-change: transform;
    contain: layout paint;
}

/* ==========================================
   FLOATING PARTICLES FOR HERO SECTION
   ========================================== */

/* Floating Particles Container */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* Base Particle Styles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    animation: floatUp linear infinite;
}

/* Floating Animation */
@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(0px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(0px) scale(1);
    }
    100% {
        transform: translateY(-10vh) translateX(0px) scale(0);
        opacity: 0;
    }
}

/* Individual Particle Styles with Different Sizes, Colors, and Timing */
.particle-1 {
    width: 4px;
    height: 4px;
    left: 10%;
    background: rgba(255, 255, 255, 0.7);
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    left: 20%;
    background: rgba(197, 151, 90, 0.6);
    animation-duration: 18s;
    animation-delay: 2s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    left: 30%;
    background: rgba(255, 255, 255, 0.5);
    animation-duration: 12s;
    animation-delay: 4s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    left: 40%;
    background: rgba(139, 90, 43, 0.4);
    animation-duration: 20s;
    animation-delay: 1s;
}

.particle-5 {
    width: 7px;
    height: 7px;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation-duration: 16s;
    animation-delay: 6s;
}

.particle-6 {
    width: 4px;
    height: 4px;
    left: 60%;
    background: rgba(197, 151, 90, 0.5);
    animation-duration: 14s;
    animation-delay: 3s;
}

.particle-7 {
    width: 5px;
    height: 5px;
    left: 70%;
    background: rgba(255, 255, 255, 0.6);
    animation-duration: 17s;
    animation-delay: 5s;
}

.particle-8 {
    width: 3px;
    height: 3px;
    left: 80%;
    background: rgba(139, 90, 43, 0.3);
    animation-duration: 13s;
    animation-delay: 7s;
}

.particle-9 {
    width: 6px;
    height: 6px;
    left: 90%;
    background: rgba(255, 255, 255, 0.7);
    animation-duration: 19s;
    animation-delay: 2s;
}

.particle-10 {
    width: 4px;
    height: 4px;
    left: 15%;
    background: rgba(197, 151, 90, 0.4);
    animation-duration: 15s;
    animation-delay: 8s;
}

.particle-11 {
    width: 5px;
    height: 5px;
    left: 75%;
    background: rgba(255, 255, 255, 0.5);
    animation-duration: 21s;
    animation-delay: 1s;
}

.particle-12 {
    width: 3px;
    height: 3px;
    left: 85%;
    background: rgba(139, 90, 43, 0.6);
    animation-duration: 11s;
    animation-delay: 9s;
}

/* Mobile-specific particles (hidden on desktop) */
.particle-mobile-1,
.particle-mobile-2,
.particle-mobile-3,
.particle-mobile-4,
.particle-mobile-5,
.particle-mobile-6 {
    display: none;
}

.particle-mobile-1 {
    width: 4px;
    height: 4px;
    left: 5%;
    background: rgba(255, 255, 255, 0.7);
    animation-duration: 16s;
    animation-delay: 3s;
}

.particle-mobile-2 {
    width: 3px;
    height: 3px;
    left: 25%;
    background: rgba(197, 151, 90, 0.6);
    animation-duration: 14s;
    animation-delay: 7s;
}

.particle-mobile-3 {
    width: 5px;
    height: 5px;
    left: 45%;
    background: rgba(255, 255, 255, 0.5);
    animation-duration: 17s;
    animation-delay: 2s;
}

.particle-mobile-4 {
    width: 3px;
    height: 3px;
    left: 65%;
    background: rgba(139, 90, 43, 0.5);
    animation-duration: 13s;
    animation-delay: 6s;
}

.particle-mobile-5 {
    width: 4px;
    height: 4px;
    left: 95%;
    background: rgba(255, 255, 255, 0.6);
    animation-duration: 15s;
    animation-delay: 4s;
}

.particle-mobile-6 {
    width: 3px;
    height: 3px;
    left: 35%;
    background: rgba(197, 151, 90, 0.4);
    animation-duration: 18s;
    animation-delay: 8s;
}

/* Mobile Optimization for Particles - Enhanced Count */
@media (max-width: 768px) {
    .hero-particles {
        /* Show more particles on mobile */
        overflow: hidden;
    }
    
    /* Show mobile-specific particles */
    .particle-mobile-1,
    .particle-mobile-2,
    .particle-mobile-3,
    .particle-mobile-4,
    .particle-mobile-5,
    .particle-mobile-6 {
        display: block !important;
    }
    
    /* Keep all regular particles visible except the largest one */
    .particle-5 {
        display: none;
    }
    
    /* Faster animation for more dynamic mobile experience */
    .particle {
        animation-duration: 15s !important;
    }
    
    /* Enhanced mobile particle sizes for better visibility */
    .particle-1,
    .particle-2,
    .particle-3,
    .particle-4 {
        width: 6px !important;
        height: 6px !important;
        background: rgba(255, 255, 255, 0.8) !important;
    }
    
    .particle-6,
    .particle-7,
    .particle-8,
    .particle-9 {
        width: 5px !important;
        height: 5px !important;
        background: rgba(197, 151, 90, 0.7) !important;
    }
    
    .particle-10,
    .particle-11,
    .particle-12 {
        width: 4px !important;
        height: 4px !important;
        opacity: 0.9 !important;
        background: rgba(139, 90, 43, 0.6) !important;
    }
    
    /* Enhanced mobile-specific particles */
    .particle-mobile-1,
    .particle-mobile-2,
    .particle-mobile-3,
    .particle-mobile-4,
    .particle-mobile-5,
    .particle-mobile-6 {
        animation-duration: 16s !important;
        opacity: 0.8 !important;
    }
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-particles {
        display: none;
    }
}

/* Performance optimization for older devices */
@media (max-width: 480px) and (max-resolution: 150dpi) {
    .hero-particles {
        display: none;
    }
}

/* Glass Effect Hero Content Container - Refined & Elegant */
.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 246, 240, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(120, 85, 56, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    /* Animation entrance effect */
    animation: glassContentSlideIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    /* Prevent content overflow */
    overflow: hidden;
    text-align: center;
}

/* Glass Content Animation */
@keyframes glassContentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

/* Enhanced Main Heading - Sophisticated & Elegant */
.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #2c2418;
    text-shadow: 
        0 1px 3px rgba(255, 255, 255, 0.8),
        0 2px 6px rgba(249, 246, 240, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
    line-height: 1.15;
    position: relative;
    font-family: 'Playfair Display', serif;
}



/* Subtitle - Elegant & Refined */
.hero-content h2 {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1.8rem;
    color: #785538;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.7),
        0 2px 4px rgba(249, 246, 240, 0.5);
    letter-spacing: 1px;
    position: relative;
    animation: subtitleFadeIn 1.5s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* Subtitle animation */
@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced description text - Sophisticated & Readable */
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #8b6c4e;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(249, 246, 240, 0.4);
    line-height: 1.6;
    letter-spacing: 0.3px;
    font-weight: 400;
    position: relative;
    animation: descriptionFadeIn 1.5s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(15px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Description animation */
@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced CTA Button - Elegant & Refined */
.hero-content .btn {
    position: relative;
    background: linear-gradient(135deg, #785538 0%, #a47e3b 100%);
    border: 2px solid #785538;
    color: #ffffff;
    box-shadow: 
        0 8px 32px rgba(120, 85, 56, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: buttonFadeIn 1.5s ease-out 0.9s forwards;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

/* Button animation */
@keyframes buttonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced button hover effect */
.hero-content .btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #8b5a2b 0%, #785538 100%);
    border-color: #8b5a2b;
    box-shadow: 
        0 15px 40px rgba(120, 85, 56, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Decorative glass elements with brand colors */
/* .hero-content::before - removed for simplicity */

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(12px)) {
    .hero-content {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(120, 85, 56, 0.2);
    }
}

/* Safari specific optimizations */
@supports (-webkit-backdrop-filter: blur(12px)) {
    .hero-content {
        -webkit-backdrop-filter: blur(12px) saturate(130%);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-content h1,
    .hero-content h2,
    .hero-content p,
    .hero-content .btn {
        animation: none;
        transition: none;
    }
    
    .hero-content {
        opacity: 1;
        transform: none;
    }
    
    .hero-content h2,
    .hero-content p,
    .hero-content .btn {
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
    .hero-content {
        background: rgba(120, 85, 56, 0.9);
        border: 2px solid rgba(212, 180, 131, 0.9);
    }
    
    .hero-content h1,
    .hero-content h2,
    .hero-content p {
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Categories Section - Fixed for Single Horizontal Line */
.categories {
    padding: 4rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    text-align: center;
    padding: 1.5rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Force image visibility on all categories */
.category-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #f0f0f0;
}

.category-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform var(--transition-speed) ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

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

/* Products Section */
.products {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.3);
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-link {
    display: block;
    color: inherit;
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
    /* Optimal image quality - no blur causing properties */
    image-rendering: auto;
    image-rendering: high-quality;
    /* Add subtle shadow for depth */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    /* Optimal image rendering for maximum quality */
    image-rendering: auto;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    /* Remove blur-causing properties */
    transform: none;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    will-change: auto;
    /* Remove filters that reduce clarity */
    filter: none;
    /* Better quality scaling */
    -ms-interpolation-mode: bicubic;
}

/* Enhanced hover effect with maintained image quality */
.product-card:hover .product-image img {
    transform: scale(1.08);
    /* Remove filters to maintain maximum clarity */
    filter: none;
}

/* High-DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
    .product-image img {
        /* Enhanced rendering for high-DPI displays */
        image-rendering: auto;
        image-rendering: high-quality;
        image-rendering: -webkit-optimize-contrast;
        /* Remove filters for maximum clarity on retina displays */
        filter: none;
        /* Remove problematic transforms */
        transform: none;
        -webkit-transform: none;
    }
}

/* Loading state with better placeholder */
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    background-size: 200% 200%;
    animation: shimmer 1.5s infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image.loading::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Image lazy loading optimization */
.product-image img[loading="lazy"] {
    transition: opacity 0.3s ease;
}

.product-image img[loading="lazy"]:not([src]) {
    opacity: 0;
}

/* Fallback for broken images */
.product-image img:not([src]),
.product-image img[src=""],
.product-image img[src="#"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.product-image img:not([src])::before,
.product-image img[src=""]::before,
.product-image img[src="#"]::before {
    content: '🖼️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #adb5bd;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info > * {
    margin-bottom: 0.5rem;
}

.product-info > *:last-child {
    margin-bottom: 0;
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info h3 {
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-size: 1.3rem;
}

.product-description {
    color: var(--wood-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.view-all-container {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(249, 246, 240, 0.1) 0%, 
        rgba(245, 242, 235, 0.15) 50%, 
        rgba(249, 246, 240, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(120, 85, 56, 0.1);
}

.view-all-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(197, 151, 90, 0.03) 25%, 
        transparent 50%, 
        rgba(139, 90, 43, 0.03) 75%, 
        transparent 100%);
    border-radius: 20px;
    pointer-events: none;
}

/* New Releases Section */
.new-releases {
    padding: 4rem 0;
}

.releases-showcase {
    display: grid;
    gap: 2rem;
}

.featured-release {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
    overflow: hidden;
    border-radius: 12px;
    background-color: #f0f0f0;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.featured-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.featured-info p {
    color: var(--wood-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
    object-fit: contain;
}

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

.story-text {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--wood-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Premium Story Values Container */
.story-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
    padding: 0 1rem;
    position: relative;
}

/* Premium Value Cards with Glass Morphism */
.value {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(249, 246, 240, 0.98) 50%,
        rgba(245, 242, 235, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(139, 90, 43, 0.15),
        0 3px 10px rgba(120, 85, 56, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0) scale(1);
    opacity: 0;
    animation: valueCardSlideIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Staggered animation delays for each card */
.value:nth-child(1) { animation-delay: 0.2s; }
.value:nth-child(2) { animation-delay: 0.4s; }
.value:nth-child(3) { animation-delay: 0.6s; }

/* Premium card entrance animation */
@keyframes valueCardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating decorative border */
.value::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(139, 90, 43, 0.4) 0%,
        rgba(160, 103, 47, 0.3) 25%,
        rgba(197, 151, 90, 0.2) 50%,
        rgba(160, 103, 47, 0.3) 75%,
        rgba(139, 90, 43, 0.4) 100%);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Floating particles effect */
.value::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><radialGradient id="sparkle" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%23C5975A" stop-opacity="0.6"/><stop offset="100%25" stop-color="%23C5975A" stop-opacity="0"/></radialGradient></defs><circle cx="60" cy="80" r="1.5" fill="url(%23sparkle)"/><circle cx="240" cy="60" r="1" fill="url(%23sparkle)"/><circle cx="180" cy="220" r="1.5" fill="url(%23sparkle)"/><circle cx="270" cy="180" r="1" fill="url(%23sparkle)"/><circle cx="40" cy="250" r="1" fill="url(%23sparkle)"/></svg>') center/contain no-repeat;
    animation: sparkleFloat 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(90deg); }
    50% { transform: translateY(-4px) rotate(180deg); }
    75% { transform: translateY(-12px) rotate(270deg); }
}

/* Premium hover effects */
.value:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.18),
        0 10px 25px rgba(139, 90, 43, 0.25),
        0 5px 15px rgba(120, 85, 56, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        inset 0 -2px 0 rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(249, 246, 240, 1) 50%,
        rgba(245, 242, 235, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.6);
}

.value:hover::before {
    opacity: 1;
    animation: borderPulse 2s ease-in-out infinite;
}

.value:hover::after {
    opacity: 1;
}

@keyframes borderPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Premium Icon Styling with Floating Animation */
.value i {
    font-size: 3rem;
    background: linear-gradient(135deg, 
        #785538 0%,
        #8b6544 25%,
        #a47e3b 50%,
        #8b6544 75%,
        #785538 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(139, 90, 43, 0.3));
}

/* Floating icon animation */
@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(2deg);
    }
    50% { 
        transform: translateY(-4px) rotate(0deg);
    }
    75% { 
        transform: translateY(-12px) rotate(-2deg);
    }
}

/* Enhanced icon hover effects */
.value:hover i {
    transform: translateY(-3px) scale(1.08) rotate(3deg);
    filter: drop-shadow(0 5px 10px rgba(139, 90, 43, 0.4));
    background: linear-gradient(135deg, 
        #8b6544 0%,
        #a47e3b 25%,
        #c5975a 50%,
        #a47e3b 75%,
        #8b6544 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Typography for Titles */
.value h4 {
    background: linear-gradient(135deg, 
        #2c2418 0%,
        #3d3426 50%,
        #2c2418 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    position: relative;
}

/* Premium title hover effect */
.value:hover h4 {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        #785538 0%,
        #8b6544 50%,
        #785538 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced description text */
.value p {
    color: #8b6c4e;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.value:hover p {
    color: #785538;
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive Design for Premium Value Cards */
@media screen and (max-width: 768px) {
    .story-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .value {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
        min-height: 180px;
    }
    
    .value i {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }
    
    .value h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .value p {
        font-size: 0.85rem;
    }
    
    /* Enhanced mobile hover effects */
    .value:hover {
        transform: translateY(-6px) scale(1.02);
    }
    
    .value:hover i {
        transform: translateY(-2px) scale(1.05) rotate(2deg);
    }
}

@media screen and (max-width: 480px) {
    .story-values {
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .value {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        min-height: 160px;
    }
    
    .value i {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }
    
    .value h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .value p {
        font-size: 0.8rem;
    }
}

/* Reviews Section - Enhanced with Nature Background */
.reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(30, 45, 25, 0.94) 0%, 
        rgba(40, 55, 35, 0.96) 25%, 
        rgba(50, 65, 45, 0.98) 50%, 
        rgba(35, 50, 30, 0.96) 75%, 
        rgba(25, 40, 20, 0.94) 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(20, 35, 15, 0.5) 0%, 
            rgba(30, 45, 25, 0.6) 25%,
            rgba(40, 60, 35, 0.7) 50%,
            rgba(35, 50, 30, 0.6) 75%,
            rgba(25, 40, 20, 0.5) 100%),
        linear-gradient(rgba(139, 108, 78, 0.15), rgba(120, 85, 56, 0.25)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23654321"/><path d="M0,10 Q5,8 10,10 T20,10" stroke="%23543012" stroke-width="0.5" fill="none"/><path d="M0,15 Q8,13 15,15 T20,15" stroke="%23765432" stroke-width="0.3" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)" opacity="0.1"/></svg>') center/80px 80px,
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><radialGradient id="leaf" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%23228B22" stop-opacity="0.3"/><stop offset="100%25" stop-color="%23006400" stop-opacity="0.1"/></radialGradient></defs><circle cx="50" cy="50" r="25" fill="url(%23leaf)"/><circle cx="150" cy="100" r="20" fill="url(%23leaf)"/><circle cx="100" cy="150" r="30" fill="url(%23leaf)"/><circle cx="30" cy="170" r="15" fill="url(%23leaf)"/><circle cx="170" cy="30" r="25" fill="url(%23leaf)"/></svg>') center/150px 150px;
    opacity: 0.8;
    z-index: -2;
    background-attachment: scroll;
    animation: naturalSway 20s ease-in-out infinite;
}

.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(34, 139, 34, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(107, 142, 35, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(85, 107, 47, 0.04) 0%, transparent 60%),
        linear-gradient(45deg, transparent 0%, rgba(143, 188, 143, 0.03) 25%, transparent 50%, rgba(154, 205, 50, 0.02) 75%, transparent 100%),
        linear-gradient(-45deg, rgba(107, 142, 35, 0.02) 0%, transparent 30%, rgba(85, 107, 47, 0.03) 70%, transparent 100%);
    z-index: -1;
}

/* Nature Animation for Background */
@keyframes naturalSway {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg); 
        filter: hue-rotate(0deg);
    }
    25% { 
        transform: translateX(2px) translateY(-1px) rotate(0.5deg); 
        filter: hue-rotate(2deg);
    }
    50% { 
        transform: translateX(-1px) translateY(-2px) rotate(-0.3deg); 
        filter: hue-rotate(0deg);
    }
    75% { 
        transform: translateX(-2px) translateY(1px) rotate(0.2deg); 
        filter: hue-rotate(-1deg);
    }
}

.reviews .section-header h2 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.6),
        0 0 20px rgba(143, 188, 143, 0.3),
        0 0 40px rgba(107, 142, 35, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}

.reviews .section-header p {
    color: #D4C5A9;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.6),
        0 0 15px rgba(212, 197, 169, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* Mobile optimization */
    touch-action: pan-x;
    scroll-behavior: smooth;
}

.review-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(248, 245, 240, 0.15) 50%,
        rgba(245, 242, 235, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(85, 107, 47, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    /* Mobile touch optimization - Fixed for smooth scrolling */
    touch-action: pan-x pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(143, 188, 143, 0.05) 0%,
        transparent 30%,
        rgba(107, 142, 35, 0.03) 70%,
        transparent 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.18),
        0 8px 25px rgba(85, 107, 47, 0.12),
        0 2px 12px rgba(34, 139, 34, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.18) 0%,
        rgba(248, 245, 240, 0.22) 50%,
        rgba(245, 242, 235, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.35);
}

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

/* Mobile active state for better touch feedback */
.review-card:active {
    transform: translateY(-2px);
    transition: transform 0.1s ease;
}

.quote-icon {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, 
        #8B6F47 0%, 
        #A68B5B 50%, 
        #C5975A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.25),
        0 2px 8px rgba(139, 111, 71, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover .quote-icon {
    transform: translateX(-50%) translateY(-2px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        0 3px 12px rgba(139, 111, 71, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.review-text {
    margin: 1.5rem 0 2rem 0;
}

.review-text p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    /* Better mobile readability */
    letter-spacing: 0.3px;
    /* Prevent text selection interference with scrolling */
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: auto;
}

.review-rating {
    margin-bottom: 2rem;
}

.review-rating i {
    color: #FFD700;
    font-size: 1.1rem;
    margin: 0 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    /* Mobile touch target optimization */
    display: inline-block;
    padding: 2px;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #C5975A;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.2),
        0 2px 6px rgba(197, 151, 90, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.reviewer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    z-index: 1;
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    /* Enhanced image quality for profile pictures */
    image-rendering: auto;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: bicubic;
    /* Remove any blur-causing properties */
    filter: none;
    transform: none;
    backface-visibility: visible;
}

.reviewer-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.25),
        0 3px 10px rgba(197, 151, 90, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #FFD700;
}

.reviewer-image:hover img {
    transform: scale(1.1);
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.reviewer-info p {
    color: #C5975A;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Enhanced Dots Indicator with Mobile Optimization */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
    padding: 1rem 0;
    /* Mobile touch optimization */
    min-height: 44px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    /* Mobile touch target - larger hit area */
    position: relative;
    padding: 8px;
    margin: -8px;
}

.dot:focus {
    outline: 2px solid #C5975A;
    outline-offset: 2px;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.dot:hover::before {
    background-color: rgba(255, 255, 255, 0.7);
    transform: translate(-50%, -50%) scale(1.2);
}

.dot.active::before {
    background-color: #C5975A;
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 10px rgba(197, 151, 90, 0.5);
}

/* Mobile Swipe Indicator */
.mobile-swipe-indicator {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: #C5975A;
    text-align: center;
    opacity: 0.8;
    animation: pulseSwipe 2s ease-in-out infinite;
}

.swipe-icon {
    font-size: 1.2rem;
    color: #f5f2eb;
    animation: swipeAnimation 2s ease-in-out infinite;
}

.swipe-text {
    font-weight: 500;
    color: #f5f2eb;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes pulseSwipe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes swipeAnimation {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* Mobile Responsive - Enhanced */
@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
        /* Optimize background for mobile performance */
        background-attachment: scroll;
    }
    
    .reviews::before {
        background: 
            linear-gradient(135deg, 
                rgba(25, 40, 20, 0.6) 0%, 
                rgba(35, 50, 30, 0.7) 25%,
                rgba(45, 65, 40, 0.8) 50%,
                rgba(40, 55, 35, 0.7) 75%,
                rgba(30, 45, 25, 0.6) 100%),
            linear-gradient(rgba(139, 108, 78, 0.2), rgba(120, 85, 56, 0.3)),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="wood-mobile" x="0" y="0" width="12" height="12" patternUnits="userSpaceOnUse"><rect width="12" height="12" fill="%23654321"/><path d="M0,6 Q3,5 6,6 T12,6" stroke="%23543012" stroke-width="0.3" fill="none"/><path d="M0,9 Q5,8 10,9 T12,9" stroke="%23765432" stroke-width="0.2" fill="none"/></pattern></defs><rect width="80" height="80" fill="url(%23wood-mobile)" opacity="0.2"/></svg>') center/50px 50px,
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><radialGradient id="leaf-mobile" cx="50%25" cy="50%25" r="50%25"><stop offset="0%25" stop-color="%23228B22" stop-opacity="0.5"/><stop offset="100%25" stop-color="%23006400" stop-opacity="0.2"/></radialGradient></defs><circle cx="30" cy="30" r="18" fill="url(%23leaf-mobile)"/><circle cx="90" cy="60" r="12" fill="url(%23leaf-mobile)"/><circle cx="60" cy="90" r="20" fill="url(%23leaf-mobile)"/><circle cx="20" cy="100" r="10" fill="url(%23leaf-mobile)"/><circle cx="100" cy="20" r="15" fill="url(%23leaf-mobile)"/></svg>') center/100px 100px;
        background-attachment: scroll;
        background-size: cover, cover, 50px 50px, 100px 100px;
        background-position: center center;
        opacity: 0.9;
        animation: naturalSway 30s ease-in-out infinite;
    }
    
    .reviews .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .reviews .section-header p {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .mobile-swipe-indicator {
        display: flex;
        margin: 0 1rem 2rem 1rem;
        /* Enhanced visibility on mobile */
        background: rgba(120, 85, 56, 0.9);
        padding: 0.8rem 1.2rem;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: opacity 0.3s ease;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
        .reviews-grid {
        display: flex !important;
        grid-template-columns: none;
        gap: 1rem;
        padding: 0 1rem;
        /* Mobile horizontal slider */
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar on mobile */
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* Smooth scrolling */
        scroll-behavior: smooth;
        /* Better touch handling */
        touch-action: pan-x;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0;
        /* Horizontal slider styling */
        min-width: 280px;
        max-width: 320px;
        flex-shrink: 0;
        /* Better mobile shadow */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        scroll-snap-align: center;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Smooth transitions */
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0.7;
        transform: scale(0.95);
        /* Fix touch scrolling issues */
        touch-action: auto;
        pointer-events: auto;
    }

    .review-card.active {
        opacity: 1;
        transform: scale(1);
    }
    
    .review-text {
        flex-grow: 1;
        display: flex;
        align-items: center;
        margin: 1rem 0 1.5rem 0;
    }
    
    .review-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        /* Better mobile contrast */
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        letter-spacing: 0.2px;
    }
    
    .reviewer {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .reviewer-info {
        text-align: center;
    }
    
    .reviewer-image {
        width: 55px;
        height: 55px;
        border-width: 2px;
        box-shadow: 
            0 3px 8px rgba(0,0,0,0.15),
            0 1px 4px rgba(197, 151, 90, 0.25);
    }
    
    .reviewer-image:hover {
        transform: scale(1.03);
        box-shadow: 
            0 4px 12px rgba(0,0,0,0.2),
            0 2px 6px rgba(197, 151, 90, 0.35);
    }
    
    .quote-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: -14px;
    }
    
    .review-rating {
        margin-bottom: 1.5rem;
    }
    
    .review-rating i {
        font-size: 1.05rem;
        margin: 0 1px;
        /* Larger touch targets on mobile */
        padding: 4px 2px;
    }
    
    .slider-dots {
        margin-top: 2.5rem;
        gap: 16px;
        /* Better mobile spacing */
        padding: 1.5rem 0;
        min-height: 50px;
    }
    
    .dot {
        /* Larger touch targets for mobile */
        padding: 12px;
        margin: -12px;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
    }
    
    .dot:focus {
        outline: 2px solid #C5975A;
        outline-offset: 2px;
    }
    
    .dot::before {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 3rem 0;
    }
    
    .reviews .section-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin-bottom: 0.8rem;
    }
    
    .reviews .section-header p {
        font-size: 1rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    
    .mobile-swipe-indicator {
        display: flex;
        margin: 0 0.5rem 1.5rem 0.5rem;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
        /* Enhanced styling for small mobile */
        background: rgba(120, 85, 56, 0.9);
        border-radius: 20px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
        justify-content: center;
        align-items: center;
        gap: 0.4rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
        .reviews-grid {
        padding: 0 0.5rem;
        gap: 0.8rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* Maintain horizontal flex layout */
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        touch-action: pan-x;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        min-height: 280px;
        /* Small mobile slider sizing */
        min-width: 260px;
        max-width: 280px;
        flex-shrink: 0;
        /* Enhanced mobile shadow */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        scroll-snap-align: center;
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0.7;
        transform: scale(0.95);
        /* Fix touch scrolling issues on small mobile */
        touch-action: auto;
        pointer-events: auto;
    }

    .review-card.active {
        opacity: 1;
        transform: scale(1);
    }
    
    .review-text {
        margin: 0.8rem 0 1.2rem 0;
    }
    
    .review-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        /* Enhanced readability on small screens */
        text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
        letter-spacing: 0.1px;
    }
    
    .reviewer {
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .reviewer-image {
        width: 50px;
        height: 50px;
    }
    
    .reviewer-info h4 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .reviewer-info p {
        font-size: 0.85rem;
    }
    
    .quote-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
        top: -13px;
    }
    
    .review-rating {
        margin-bottom: 1.2rem;
    }
    
    .review-rating i {
        font-size: 1rem;
        /* Even larger touch targets for small screens */
        padding: 6px 3px;
    }
    
    .slider-dots {
        margin-top: 2rem;
        gap: 18px;
        padding: 1.5rem 1rem;
    }
    
    .dot {
        /* Maximum touch area for small screens */
        padding: 15px;
        margin: -15px;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
    }
    
    .dot:focus {
        outline: 2px solid #C5975A;
        outline-offset: 2px;
    }
    
    .dot::before {
        width: 16px;
        height: 16px;
    }
}

/* Ultra-small screens optimization */
@media (max-width: 360px) {
    .reviews {
        padding: 2.5rem 0;
    }
    
    .reviews .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .reviews .section-header p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
        .reviews-grid {
        padding: 0 0.25rem;
        gap: 0.6rem;
        /* Extra small mobile horizontal layout */
        display: flex !important;
    }

    .review-card {
        padding: 1.2rem 0.8rem;
        min-height: 260px;
        /* Extra small mobile sizing */
        min-width: 240px;
        max-width: 260px;
        /* Fix touch scrolling issues on extra small mobile */
        touch-action: auto;
        pointer-events: auto;
    }
    
    .review-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .reviewer-image {
        width: 45px;
        height: 45px;
    }
    
    .reviewer-info h4 {
        font-size: 0.95rem;
    }
    
    .reviewer-info p {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.3);
}

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

.contact-info-card {
    background: #8B5A2B;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(139, 90, 43, 0.3);
}

.contact-info-section {
    margin-bottom: 2.5rem;
}

.contact-info-section:last-child {
    margin-bottom: 0;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.info-header i {
    font-size: 1.5rem;
    color: #F5DEB3;
}

.info-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.contact-info-section p {
    color: #F5DEB3;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.follow-title {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 222, 179, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5DEB3;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 222, 179, 0.3);
}

.social-icon:hover {
    background: #F5DEB3;
    color: #8B5A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 222, 179, 0.4);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--wood-dark);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.footer-column ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: opacity var(--transition-speed) ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color var(--transition-speed) ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

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

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20C65A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

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

.whatsapp-float i {
    color: white;
    font-size: 24px;
}

/* Mobile-first hero image optimization for very small screens */
@media (max-width: 480px) {
    .hero {
        /* Aggressive mobile optimization for crisp images */
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        /* Alternative mobile image approach - use the same image but with better rendering */
        background-image: url('../images/ship2025.png') !important;
        /* Force GPU acceleration */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        will-change: auto;
        contain: layout paint style;
        /* Enhanced mobile rendering */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimizeQuality;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Prevent iOS Safari issues */
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
        /* Additional mobile optimizations */
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        /* Improve rendering on mobile devices */
        -webkit-perspective: 1000px;
        perspective: 1000px;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    /* Extra Small Mobile Hero Content */
    .hero-content {
        padding: 2rem 1.5rem 2.5rem;
        max-width: 92%;
        width: 92%;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(249, 246, 240, 0.9) 100%);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 
            0 12px 25px rgba(0, 0, 0, 0.06),
            0 4px 15px rgba(120, 85, 56, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.15;
        letter-spacing: 0.1px;
    }

    .hero-content h2 {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        letter-spacing: 0.4px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-content .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
        border-radius: 30px;
        margin-top: 0.2rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-release {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .story-text {
        order: 2;
        text-align: left;
        padding: 1rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .info-header h3 {
        font-size: 1.2rem;
    }
    
    .follow-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    header .container {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    /* Optimized hero background for mobile */
    .hero {
        /* Remove fixed attachment for mobile performance */
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-image: url('../images/ship2025.png') !important;
        min-height: 100vh;
        /* Mobile-specific optimizations for crisp images */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* Optimized image rendering for mobile */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimizeQuality;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Performance improvements */
        will-change: transform;
        contain: layout paint;
        /* Prevent iOS Safari zoom issues */
        -webkit-text-size-adjust: 100%;
        /* Better mobile rendering */
        -webkit-tap-highlight-color: transparent;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(249, 246, 240, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .hamburger {
        display: flex;
    }
    
        /* Mobile Glass Effect Optimizations - Enhanced Spacing */
    .hero-content {
        padding: 3rem 2.5rem 3.5rem;
        max-width: 85%;
        width: 85%;
        border-radius: 20px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 246, 240, 0.95) 100%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 8px 25px rgba(120, 85, 56, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        margin: 0 auto;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        margin-bottom: 1.2rem;
        line-height: 1.15;
        letter-spacing: 0.2px;
    }

    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1.8rem;
        letter-spacing: 0.6px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-content .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        border-radius: 35px;
        margin-top: 0.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        min-height: 400px !important;
        height: auto !important;
    }
    
    .product-image {
        height: 180px;
        /* Enhanced mobile image quality */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
        border-radius: 8px 8px 0 0;
    }
    
    .product-image img {
        /* Mobile-specific image enhancements */
        filter: contrast(1.06) saturate(1.12) brightness(1.03);
        /* Better mobile scaling */
        transform: translateZ(0) scale(1);
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
        /* Improved mobile touch handling */
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .product-card:hover .product-image img {
        /* Reduced hover effect for mobile */
        transform: translateZ(0) scale(1.05);
        filter: contrast(1.08) saturate(1.14) brightness(1.04);
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        margin: 0.3rem 0;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .featured-info h3 {
        font-size: 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .story-image {
        padding: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .story-image img {
        max-width: 100%;
    }
    
    .story-text {
        text-align: center;
        padding: 1rem 0;
    }
    
    .story-text h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 20px;
    }
    
    /* CRITICAL: Force price visibility on mobile - Maximum specificity */
    .product-grid .product-card .product-info .product-price {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.1rem !important;
        color: #785538 !important;
        font-weight: 700 !important;
        background: rgba(212, 180, 131, 0.3) !important;
        padding: 0.4rem 0.6rem !important;
        border-radius: 4px !important;
        text-align: center !important;
        border: 2px solid #785538 !important;
        margin: 0.5rem 0 0 0 !important;
        position: relative !important;
        z-index: 100 !important;
        min-height: 30px !important;
        box-sizing: border-box !important;
    }
}

/* High-DPI (Retina) Display Optimization */
/* High-DPI (Retina) Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
    .hero {
        /* Force hardware acceleration for smooth rendering */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Optimize image rendering for high-DPI displays */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimizeQuality;
        /* Prevent blurry scaling on retina displays */
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        /* Enhanced rendering for retina */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        contain: layout paint;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 0.8rem;
    }
    
    /* Enhanced hero optimization for small mobile screens */
    .hero {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
        background-image: url('../images/ship2025.png') !important;
        /* Mobile-specific rendering optimizations */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimizeQuality;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        contain: layout paint;
        /* Prevent iOS Safari rendering issues */
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
    }
    
    /* Small Mobile Glass Effect - Refined */
        .hero-content {
        padding: 2.5rem 2rem 3rem;
        max-width: 90%;
        width: 90%;
        border-radius: 18px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 246, 240, 0.92) 100%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.08),
            0 6px 20px rgba(120, 85, 56, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        margin: 0 auto;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: 0.1px;
    }

    .hero-content h2 {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-content .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        border-radius: 32px;
        margin-top: 0.3rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .product-card {
        min-height: 350px !important;
        height: auto !important;
    }
    
    .product-image {
        height: 140px;
        /* Enhanced small screen image quality */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
        border-radius: 6px 6px 0 0;
        /* Better shadow for small screens */
        box-shadow: inset 0 0 15px rgba(0,0,0,0.03);
    }
    
    .product-image img {
        /* Enhanced image quality for small screens */
        image-rendering: auto;
        image-rendering: high-quality;
        image-rendering: -webkit-optimize-contrast;
        /* Remove blur-causing properties */
        transform: none;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        /* Remove filters that reduce clarity */
        filter: none;
    }
    
    .product-card:hover .product-image img {
        /* Subtle scale effect without quality loss */
        transform: scale(1.03);
        /* Remove filters to maintain image clarity */
        filter: none;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-info h3 {
        font-size: 0.95rem;
        margin: 0.2rem 0;
        line-height: 1.2;
    }
    
    .product-description {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Price styling removed */
    
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .featured-image img {
        height: 200px;
    }
    
    .featured-info {
        padding: 1rem;
    }
    
    .featured-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .featured-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Our Story section for mobile */
    .story {
        padding: 3rem 0;
    }
    
    .story-content {
        gap: 2rem;
        text-align: center;
    }
    
    .story-image {
        padding: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .story-image img {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .story-text {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .story-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #1a472a;
        line-height: 1.2;
    }
    
    .story-text p {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.6;
        color: #5a5a5a;
    }
    
    .story-text p:last-child {
        margin-bottom: 0;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 18px;
    }
    
    /* Price-related styling removed */
}

/* WebP Support Enhancement */
.webp-support .product-image img,
.webp-support .category-image img,
.webp-support .featured-image img {
    /* Remove filters to maintain WebP image quality */
    filter: none;
}

/* Error State Styling */
.product-image.error,
.category-image.error,
.featured-image.error {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image.error::after,
.category-image.error::after,
.featured-image.error::after {
    content: '🖼️\AIMAGE\AUNAVAILABLE';
    white-space: pre;
    text-align: center;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Enhanced Loading Animation */
@keyframes imageShimmer {
    0% { 
        background-position: -200% 0;
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% { 
        background-position: 200% 0;
        opacity: 0.5;
    }
}

.product-image.loading::before,
.category-image.loading::before,
.featured-image.loading::before {
    animation: imageShimmer 2s ease-in-out infinite;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.4) 25%, 
        rgba(255,255,255,0.6) 50%, 
        rgba(255,255,255,0.4) 75%, 
        transparent 100%);
    background-size: 200% 100%;
}

/* Image Quality Enhancement for Different Screen Types */
@media screen and (min-resolution: 2dppx) {
    .product-image img,
    .category-image img,
    .featured-image img {
        /* Retina display optimizations without blur */
        filter: none;
        image-rendering: auto;
        image-rendering: high-quality;
        image-rendering: -webkit-optimize-contrast;
    }
}

@media screen and (min-resolution: 3dppx) {
    .product-image img,
    .category-image img,
    .featured-image img {
        /* 3x density display optimizations without blur */
        filter: none;
        image-rendering: auto;
        image-rendering: high-quality;
    }
}

/* Enhanced Hover Effects with Maintained Image Quality */
.product-card:hover .product-image img,
.category-card:hover .category-image img,
.featured-release:hover .featured-image img {
    /* Maintain quality during interactions - remove blur-causing filters */
    filter: none;
    image-rendering: auto;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

/* Focus states for accessibility */
.product-card:focus-within .product-image img,
.category-card:focus-within .category-image img {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    /* Remove filters to maintain image clarity */
    filter: none;
}

/* Print Media Optimizations */
@media print {
    .product-image img,
    .category-image img,
    .featured-image img {
        /* Optimize for print quality */
        filter: contrast(1.2) saturate(0.8) brightness(1.1);
        image-rendering: auto;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .product-image img,
    .category-image img,
    .featured-image img {
        /* Minimal contrast adjustment without blur */
        filter: contrast(1.15);
    }
}

/* ULTIMATE IMAGE QUALITY OVERRIDE - ELIMINATES ALL BLUR */
.product-image img,
.category-image img,
.featured-image img {
    /* Force maximum image quality */
    image-rendering: auto !important;
    image-rendering: high-quality !important;
    image-rendering: -webkit-optimize-contrast !important;
    
    /* Remove ALL blur-causing properties */
    transform: none !important;
    filter: none !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
    will-change: auto !important;
    
    /* Optimal scaling */
    -ms-interpolation-mode: bicubic !important;
    
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Clean hover effects without blur */
.product-card:hover .product-image img,
.category-card:hover .category-image img {
    transform: scale(1.08) !important;
    filter: none !important;
}

/* Clean focus effects without blur */
.product-card:focus-within .product-image img,
.category-card:focus-within .category-image img {
    transform: scale(1.05) !important;
    filter: none !important;
}

@media (max-width: 576px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero {
        /* Same styles... */
    }

    /* Product Card Mobile Optimization */
    .product-card {
        min-height: 320px !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
    }
    
    .product-image {
        height: 140px;
        /* Enhanced small screen image quality */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
        border-radius: 6px 6px 0 0;
        /* Better shadow for small screens */
        box-shadow: inset 0 0 15px rgba(0,0,0,0.03);
    }

    .product-link {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .product-info {
        padding: 0.8rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-info h3 {
        font-size: 0.95rem;
        margin: 0.2rem 0;
        line-height: 1.2;
    }
    
    .product-description {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-top: 0.3rem;
        margin-bottom: 0;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #666;
    }
    
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
    /* Previously existing styles... */

    /* Enhanced Product Card Fixes */
    .product-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .product-link {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .product-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-description {
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0;
    }
}

/* Mobile-specific product description enhancements */
@media (max-width: 480px) {
    .product-description {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #555;
        margin-top: 0.4rem;
        -webkit-line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: normal;
        hyphens: auto;
    }
    
    .product-card {
        border: 1px solid rgba(120, 85, 56, 0.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    /* Ensure proper spacing and alignment */
    .product-info {
        padding: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100% - 140px); /* Adjust based on image height */
    }
    
    .product-info > * {
        margin-bottom: 0.3rem;
    }
    
    .product-info h3 {
        margin-top: 0.1rem;
    }
}

