/*
 * Hewn Shop - Premium Artisan Theme
 * Handcrafted raised beds made from reclaimed wood
 * Modern, premium, organic aesthetic
 */

:root {
    /* Color Palette - Refined & Sophisticated */
    --color-primary: #1a3c1a;
    /* Deep Forest Green */
    --color-primary-light: #2d5016;
    /* Lighter Forest Green for hover */
    --color-secondary: #8B6F47;
    /* Refined Warm Brown */
    --color-accent: #B8935C;
    /* Sophisticated Gold */
    --color-accent-light: #D4AF7A;
    /* Light Gold for subtle highlights */

    --color-bg-body: #FAFAF9;
    /* Premium Off-White */
    --color-bg-card: #FFFFFF;
    /* Pure White */
    --color-bg-feature: #F5F7F3;
    /* Subtle Green Tint */
    --color-bg-elevated: #F8F8F7;
    /* Elevated surface color */

    --color-text-main: #1A1A1A;
    /* Rich Black */
    --color-text-muted: #6B6B6B;
    /* Professional Grey */
    --color-text-light: #FFFFFF;

    --color-border: #E8E8E7;
    /* Refined Border */
    --color-border-light: #F2F2F1;
    /* Light Border */
    --color-border-focus: #1a3c1a;

    /* Typography - Enhanced Hierarchy */
    --font-heading: 'Cormorant Garamond', 'Merriweather', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Spacing - Refined Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* UI Elements - Premium Feel */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.011em;
    /* Page transition */
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

/* Black background for landing page during load */
body.landing-page {
    background: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* Header / Hero */
.header-hero {
    padding: 160px 0 120px;
    /* Increased bottom padding for spacing */
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    /* Added margin for extra spacing before grid */
}

/* Subtle background accent for hero */
.header-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 60, 26, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Ensure text stays on top of animation */
.hero-content {
    position: relative;
    z-index: 2;
}

.header-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    /* Ensure z-index works if needed directly */
    z-index: 2;
    color: var(--color-text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-hero .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Full-Screen Hero for Landing Page */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: background 1.5s ease-in-out;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video-background.active {
    opacity: 1;
}

.hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.75) blur(1px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 60, 26, 0.15) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
    backdrop-filter: blur(0.5px);
}

/* SVG Background */
.hero-svg-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-svg-background.active {
    opacity: 1;
}

.hero-svg-background svg {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

.hero-svg-background .paint {
    stroke-dasharray: 1.2;
    stroke-dashoffset: 1.2;
    animation: paint 7s ease-in-out 0.5s both;
}

@keyframes paint {
    0% {
        stroke-dashoffset: 1.2;
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Landing Page Header Override */
.landing-page .site-header {
    background: linear-gradient(to bottom,
            rgba(250, 248, 245, 0.97) 0%,
            rgba(248, 246, 243, 0.95) 100%);
    border-bottom: 1px solid rgba(184, 147, 92, 0.15);
    box-shadow: 0 2px 12px rgba(26, 60, 26, 0.08);
}

/* Logo Container - Now in header, keeping old for animation */
.logo-container {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: none;
    /* Hidden by default, only shown on old landing page */
}

.landing-page .logo-container {
    display: none;
    /* Use header logo instead */
}

.logo-bubble {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    overflow: hidden;
    box-sizing: border-box;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.brand-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (max-width: 480px) {
    .hero-content-centered {
        padding: 1.5rem 1rem;
    }
}

.brand-title {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.brand-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.brand-location {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Professional Landing Page Buttons */
.landing-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-primary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-nav-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-hero {
    background: var(--color-primary);
    color: #fff;
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn-hero:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Site Header - Consistent across all pages */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom,
            rgba(250, 248, 245, 0.98) 0%,
            rgba(248, 246, 243, 0.97) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 147, 92, 0.12);
    box-shadow: 0 1px 8px rgba(26, 60, 26, 0.06);
    z-index: 10000;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.site-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo-image {
    height: 48px;
    width: auto;
    transition: var(--transition-base);
}

.header-logo:hover .header-logo-image {
    opacity: 0.8;
}

.header-brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.nav-link:hover {
    background: var(--color-bg-elevated);
    color: var(--color-primary);
}

.nav-link-icon {
    font-size: 1.125rem;
    line-height: 1;
}

/* Menu button for future use */
.menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-text-main);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.menu-button:hover {
    background: var(--color-bg-elevated);
}

/* Page content spacing to account for fixed header */
.page-content {
    padding-top: 80px;
}

/* Landing page doesn't need the padding */
.landing-page .page-content {
    padding-top: 0;
}

/* Old navigation styles for backwards compatibility */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 10000;
    pointer-events: none;
}

.nav-bar .nav-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.nav-bar .nav-link:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateX(-4px);
}

.nav-bar .nav-link span {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .site-header {
        height: 70px;
        padding: 0 1.5rem;
    }

    .header-logo-image {
        height: 40px;
    }

    .header-brand-text {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .page-content {
        padding-top: 70px;
    }
}

/* Products Page Header (No Animation) */
.products-header {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--color-bg-body);
}

.products-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.products-header .subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Availability Toast */
.availability-toast {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-bg-card);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 80px;
}

.product-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-border);
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-image {
    height: 320px;
    background: #e6e4e0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    transition: transform 0.4s ease-out;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Blur-up lazy loading effect */
.slideshow-image.blur-load {
    filter: blur(20px);
    transition: none;
}

.slideshow-image.loaded {
    filter: blur(0);
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.2s ease;
    padding-bottom: 4px;
    /* Center align fix */
}

.slideshow-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: 10px;
}

.slideshow-nav.next {
    right: 10px;
}

/* Product Page Gallery */
.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    justify-content: center;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}


.product-image-placeholder {
    font-family: var(--font-heading);
    color: rgba(26, 60, 26, 0.2);
    font-size: 1.5rem;
    font-style: italic;
}

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

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: 1rem;
}

.product-card h3 {
    font-size: 1.625rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.product-desc {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.feature-tag {
    background: var(--color-bg-feature);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.01em;
    border: 1px solid var(--color-border-light);
}

.card-actions {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
    /* Bring above card-link */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-bg-card);
    border: 1.5px solid var(--color-border);
    color: var(--color-primary);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-elevated);
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
}

/* Quote Section */
.quote-section {
    background: #fff;
    padding: 100px 0;
    border-top: 1px solid var(--color-border);
}

/* Custom Enquiries Section */
.custom-enquiries-section {
    padding: 80px 0;
}

.enquiry-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.enquiry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--color-bg-feature);
    border-radius: 50%;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.enquiry-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.enquiry-card p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.enquiry-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    background: var(--color-bg-card);
    transition: var(--transition-base);
    color: var(--color-text-main);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 26, 0.08);
    background: var(--color-bg-card);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    padding: 60px 0;
    background: #F4F3F0;
    /* Darker stone */
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-link {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header-hero h1 {
        font-size: 2.5rem;
    }

    .brand-title {
        font-size: 2.5rem;
    }

    .logo-bubble {
        width: 120px;
        height: 120px;
        padding: 20px;
    }

    .logo-container {
        top: 20px;
    }

    .brand-tagline {
        font-size: 1.1rem;
    }

    .brand-location {
        font-size: 0.9rem;
    }

    .hero-content-centered {
        padding: 1rem;
    }

    .hero-animation-wrapper svg {
        width: 80%;
        max-width: 300px;
    }

    .btn-hero {
        padding: 16px 36px;
        font-size: 1.1rem;
    }

    .products-header h1 {
        font-size: 2.2rem;
    }

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

    .form-wrapper {
        padding: 24px;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .enquiry-card {
        padding: 40px 24px;
    }

    .enquiry-card h2 {
        font-size: 1.75rem;
    }

    .enquiry-actions {
        flex-direction: column;
    }

    .enquiry-actions .btn {
        width: 100%;
    }
}

/* Single Product Page Styles */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 60px 0;
    align-items: start;
}

.product-gallery-main {
    background: #e6e4e0;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    cursor: zoom-in;
}

.enlarge-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
    z-index: 5;
}

.enlarge-button:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Product Gallery Enlarge */
.product-gallery-main {
    position: relative;
}

.enlarge-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.enlarge-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Image Modal */
.image-modal-backdrop {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.image-modal-backdrop.active {
    background: rgba(0, 0, 0, 0.95);
    opacity: 1;
    pointer-events: all;
}

.modal-gallery {
    position: relative;
    width: 90vw;
    height: 90vh;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-modal-backdrop.active .modal-gallery {
    transform: scale(1);
}

.modal-gallery .slideshow-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-gallery .close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-gallery .close-modal-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.modal-gallery .slideshow-nav {
    background: rgba(255, 255, 255, 0.9);
    z-index: 10001;
}

.modal-gallery .slideshow-nav:hover {
    background: #fff;
}

.modal-gallery .gallery-thumbnails {
    display: none;
}

.product-info-col h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.product-info-col .price {
    font-size: 2.25rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 2.5rem;
    display: block;
    letter-spacing: -0.02em;
}

.product-specs-box {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.specs-list {
    display: grid;
    gap: 1.125rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 0.75rem;
    gap: 1rem;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9375rem;
}

.spec-item span:last-child {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.long-description {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.long-description h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.long-description p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery-main {
        height: 350px;
    }
}

/* Living Garden Background */
.living-garden-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.garden-mote {
    position: absolute;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.garden-leaf {
    position: absolute;
    color: rgba(45, 80, 22, 0.08);
    /* Very faint green */
    will-change: transform, top;
}

/* Animations */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes moteFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-40vh) translateX(20px);
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(-20px);
        opacity: 0;
    }
}

@keyframes leafFall {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

@keyframes leafSway {
    0% {
        transform: rotate(0deg) translateX(-15px);
    }

    100% {
        transform: rotate(45deg) translateX(15px);
    }
}

/* =========================================
   Old Animation Styles - Kept for backwards compatibility
   ========================================= */

/* Social Buttons Container */
.social-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* Social Button Base */
.social-button {
    display: block;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 50px;
    width: 50px;
    position: relative;
    transition: background 0.1s linear, border 0.1s linear, transform 0.2s ease;
    cursor: pointer;
}

.social-button:hover {
    transform: scale(1.05);
}

.social-icon {
    height: 30px;
    width: 30px;
    left: 50%;
    margin: -15px 0 0 -15px;
    position: absolute;
    top: 50%;
}

/* Email Button */
.email-btn:hover {
    background: #E24E43;
    border-color: #E24E43;
}

/* Location Button */
.location-btn:hover {
    background: #808080;
    border-color: #808080;
}

.trustpilot-bottom-center {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.trustpilot-footer-wrap {
    text-align: center;
    padding: 3rem 0;
    width: 100%;
}

@media (max-width: 768px) {
    .social-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

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

    .social-icon {
        height: 26px;
        width: 26px;
        margin: -13px 0 0 -13px;
    }
}