/*
Theme Name: Tevolio Olive Oil
Description: A premium WordPress theme for Tevolio Olive Oil company. Features customizable content, modern design, and responsive layout.
Version: 1.0.0
Author: Tevolio Team
Text Domain: tevolio
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(82, 25%, 22%);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* CSS Variables for Design System - Updated to olive green theme */
:root {
    --background: 0 0% 100%;
    --foreground: 82 25% 22%;
    --card: 0 0% 100%;
    --card-foreground: 82 25% 22%;
    --popover: 0 0% 100%;
    --popover-foreground: 82 25% 22%;
    --primary: 82 25% 22%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 82 30% 35%;
    --secondary: 48 100% 45%;
    --secondary-foreground: 0 0% 100%;
    --muted: 82 25% 96%;
    --muted-foreground: 82 25% 46%;
    --accent: 48 100% 45%;
    --accent-foreground: 82 25% 22%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 82 25% 98%;
    --border: 82 25% 91%;
    --input: 82 25% 91%;
    --ring: 82 25% 22%;
    
    /* Custom design tokens */
    --olive-green: 82 25% 22%;
    --olive-light: 82 30% 35%;
    --golden-yellow: 48 100% 45%;
    --golden-light: 48 100% 60%;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(var(--olive-green)), hsl(var(--olive-light)));
    --gradient-accent: linear-gradient(135deg, hsl(var(--golden-yellow)), hsl(var(--golden-light)));
    
    /* Shadows */
    --shadow-elegant: 0 10px 30px -10px hsl(var(--olive-green) / 0.2);
    --shadow-card: 0 4px 20px -4px hsl(var(--olive-green) / 0.1);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Organic shapes */
    --blob-1: 64% 36% 55% 45% / 63% 42% 58% 37%;
    --blob-2: 41% 59% 66% 34% / 42% 68% 32% 58%;
    --blob-3: 73% 27% 44% 56% / 59% 52% 48% 41%;

    --radius: 0.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: hsl(var(--muted-foreground));
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--olive-green)), hsl(var(--golden-yellow)));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elegant);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(82, 25%, 22%), hsl(82, 30%, 35%));
    color: white;
    box-shadow: 0 4px 15px hsla(82, 25%, 22%, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, hsl(82, 30%, 35%), hsl(82, 25%, 22%));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(82, 25%, 22%, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: hsl(82, 25%, 22%);
    border: 2px solid hsl(82, 25%, 22%);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: hsl(82, 25%, 22%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px hsla(82, 25%, 22%, 0.3);
}

.btn-golden {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-golden:hover {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Card Component */
.card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 0;
}

.card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-8px);
}

/* Badge Component */
.badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-smooth);
}

.badge-olive {
    background-color: hsl(var(--olive-green) / 0.1);
    color: hsl(var(--olive-green));
    border: 1px solid hsl(var(--olive-green) / 0.2);
}

.badge-golden {
    background-color: hsl(var(--golden-yellow));
    color: white;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Header Styles - Match testing site exactly */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(82, 121, 111, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(82, 25%, 22%);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.site-logo:hover {
    color: hsl(82, 30%, 35%);
    transform: translateY(-1px);
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation ul,
.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a {
    color: hsl(82, 25%, 46%);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.main-navigation a:hover,
.main-navigation a.current {
    color: hsl(82, 25%, 22%);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, hsl(82, 25%, 22%), hsl(82, 30%, 35%));
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
    width: 100%;
}

.header-cta {
    margin-left: 1rem;
}

.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Section - Match testing site exactly */
.hero {
    position: relative;
    padding: 6rem 1.5rem 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(82, 121, 111, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(82, 121, 111, 0.1));
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(82, 25%, 22%), hsl(82, 30%, 35%));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    color: hsl(82, 25%, 22%);
}

.hero-title-line {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: hsl(82, 25%, 46%);
    line-height: 1.6;
    max-width: 28rem;
    margin-bottom: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(82, 121, 111, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 2rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hero-visual:hover {
    transform: translateY(-8px);
}

.hero-visual-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #52796f, #8b9a8b);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.hero-stats {
    position: absolute;
    top: -2rem;
    left: -2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 100px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(82, 121, 111, 0.1);
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #52796f;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: linear-gradient(135deg, hsl(var(--muted) / 0.2), #ffffff);
}

/* Contact Section Styles */
.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(82, 25%, 22%);
}

.contact-description {
    font-size: 1.125rem;
    color: hsl(82, 25%, 46%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem; /* Increased spacing between buttons and cards */
    flex-wrap: wrap;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 121, 111, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(82, 25%, 22%);
}

.contact-info-card p {
    color: hsl(82, 25%, 46%);
    margin: 0;
    font-size: 0.95rem;
}

.section-flow {
    position: relative;
    overflow: hidden;
}

.section-flow::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, hsl(var(--background)) 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section - Match testing site */
.stats-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(82, 25%, 22%);
}

.stats-description {
    font-size: 1.125rem;
    color: hsl(82, 25%, 46%);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid rgba(82, 121, 111, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, hsl(82, 25%, 22%), hsl(48, 100%, 45%));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, hsla(82, 25%, 22%, 0.1), hsla(48, 100%, 45%, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: hsl(82, 25%, 22%);
    border: 2px solid hsla(82, 25%, 22%, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(82, 25%, 22%);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: hsl(82, 25%, 46%);
    font-weight: 500;
    line-height: 1.4;
}

/* Comparison Section - Match testing site */
.comparison-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-section .text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.comparison-section .text-center .btn {
    margin: 0 auto;
}

/* Contact Section Centering */
.contact-content.text-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content.text-center .contact-actions {
    justify-content: center;
    display: flex;
}

.comparison-content {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(82, 25%, 22%);
}

.comparison-description {
    font-size: 1.125rem;
    color: hsl(82, 25%, 46%);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-card {
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.comparison-other {
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.comparison-other::before {
    background: linear-gradient(135deg, #e53e3e, #fc8181);
}

.comparison-tevolio {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
}

.comparison-tevolio::before {
    background: linear-gradient(135deg, #52796f, #ffc107);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: hsl(82, 25%, 22%);
}

.comparison-tevolio h3 {
    background: linear-gradient(135deg, hsl(82, 25%, 22%), hsl(48, 100%, 45%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: hsl(82, 25%, 46%);
    line-height: 1.5;
}

.comparison-item::before {
    content: '✓';
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(82, 25%, 22%);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 0.875rem;
}

.comparison-other .comparison-item::before {
    content: '✗';
    color: #e53e3e;
}

.vs-circle {
    width: 5rem;
    height: 5rem;
    background: white;
    border: 2px solid hsla(82, 25%, 22%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(82, 25%, 22%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.vs-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.vs-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsla(82, 25%, 22%, 0.2), hsla(48, 100%, 45%, 0.2));
    filter: blur(12px);
    z-index: -1;
}

/* Footer - Match testing site */
.site-footer {
    background: hsl(82, 25%, 22%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Remove any extra spacing before footer */
.section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 4rem;
}

/* Ensure no white space between content and footer */
main {
    margin-bottom: 0;
}

/* Remove any potential white space from the last element before footer */
.site-footer {
    margin-top: 0 !important;
}

/* Ensure no white space above footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Mobile Menu - Match testing site */
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid rgba(82, 121, 111, 0.1);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu li {
    margin-bottom: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: hsl(82, 25%, 46%);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid hsla(82, 25%, 22%, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: hsl(82, 25%, 22%);
    padding-left: 1rem;
}

.mobile-menu-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(82, 25%, 22%, 0.1);
    text-align: center;
}

.mobile-menu-actions .btn {
    width: 100%;
    max-width: 200px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: hsl(82, 25%, 22%);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design - Match testing site */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vs-circle {
        order: 2;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem 6rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        position: static;
        justify-content: center;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .hero-visual {
        max-width: 300px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .section-header {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-section {
        padding: 4rem 1rem;
    }
    
    .comparison-section {
        padding: 4rem 1rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 1rem 4rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-title,
    .comparison-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat {
        min-width: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* WordPress Menu Reset - Force Override */
.main-navigation ul,
.main-navigation .nav-menu,
.main-navigation li,
.main-navigation a {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.main-navigation ul,
.main-navigation .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    gap: 2.5rem !important;
    align-items: center !important;
}

/* Additional override for WordPress menu */
#primary-menu,
#primary-menu ul,
#primary-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 2.5rem !important;
    align-items: center !important;
}

#primary-menu a {
    color: hsl(82, 25%, 46%) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 0.5rem 0 !important;
    display: block !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

#primary-menu a:hover {
    color: hsl(82, 25%, 22%) !important;
}

.main-navigation li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation a {
    display: block !important;
    color: #6c757d !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding: 0.5rem 0 !important;
}

/* WordPress Specific Styles */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.wp-block-image {
    margin: 2rem 0;
}

.wp-block-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
}

/* Customizer Preview Styles */
.customize-preview .site-header,
.customize-preview .hero,
.customize-preview .section {
    transition: none;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(82, 121, 111, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(82, 25%, 22%);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(82, 121, 111, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(82, 25%, 22%);
    box-shadow: 0 0 0 3px hsla(82, 25%, 22%, 0.1);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Contact Form Messages */
#contact-form-messages {
    margin-bottom: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.success-message h3 {
    margin: 0 0 0.5rem 0;
    color: #155724;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #f5c6cb;
    text-align: center;
    margin-bottom: 1rem;
}

/* Form Loading State */
.contact-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form .btn .btn-text {
    transition: opacity 0.3s ease;
}

.contact-form .btn:disabled .btn-text {
    opacity: 0;
}

/* Blog Page Styles */
.blog-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: hsla(82, 25%, 22%, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(82, 25%, 22%);
}

.category-count {
    color: hsl(82, 25%, 46%);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.category-link {
    color: hsl(82, 25%, 22%);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.category-link:hover {
    color: hsl(82, 30%, 35%);
    transform: translateX(4px);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(82, 121, 111, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(82, 25%, 22%, 0.1), hsla(48, 100%, 45%, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon {
    font-size: 3rem;
    opacity: 0.7;
}

.blog-meta {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date,
.blog-category {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: hsl(82, 25%, 22%);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: hsl(82, 25%, 22%);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-title a:hover {
    color: hsl(82, 30%, 35%);
}

.blog-excerpt {
    color: hsl(82, 25%, 46%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-read-more {
    color: hsl(82, 25%, 22%);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.blog-read-more:hover {
    color: hsl(82, 30%, 35%);
    transform: translateX(4px);
}

.blog-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: hsl(82, 25%, 46%);
}

/* Newsletter Signup */
.newsletter-signup {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, hsla(82, 25%, 22%, 0.05), hsla(48, 100%, 45%, 0.05));
    border-radius: 1.5rem;
    border: 1px solid rgba(82, 121, 111, 0.1);
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(82, 25%, 22%);
}

.newsletter-description {
    font-size: 1.125rem;
    color: hsl(82, 25%, 46%);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(82, 121, 111, 0.1);
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    outline: none;
}

.newsletter-input-group .btn {
    white-space: nowrap;
    padding: 1rem 2rem;
    border-radius: 25px;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-input-group input,
    .newsletter-input-group .btn {
        border-radius: 0.5rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
}

/* Heritage Section Spacing Fix */
.heritage-story {
    margin-bottom: 2rem !important;
    padding-bottom: 0 !important;
}

.heritage-stats {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Heritage Stats Alignment */
.heritage-stats .heritage-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heritage-stats .stat-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, hsla(82, 25%, 22%, 0.1), hsla(48, 100%, 45%, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: hsl(82, 25%, 22%);
    border: 2px solid hsla(82, 25%, 22%, 0.1);
}

.heritage-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(82, 25%, 22%);
    line-height: 1;
    text-align: center;
}

.heritage-stats .stat-label {
    font-size: 1rem;
    color: hsl(82, 25%, 46%);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

/* Enhanced Newsletter Form Styling */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(82, 25%, 22%);
    font-size: 1.1rem;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid hsl(82, 25%, 90%);
    border-radius: 0.75rem;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper input:focus {
    border-color: hsl(82, 25%, 22%);
    box-shadow: 0 0 0 3px hsla(82, 25%, 22%, 0.1);
}

.input-wrapper input:focus + .input-icon {
    opacity: 1;
}

.input-wrapper input::placeholder {
    color: hsl(82, 25%, 60%);
    font-style: italic;
}

.newsletter-btn {
    position: relative;
    min-width: 140px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(82, 25%, 22%, 0.2);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-btn.loading .btn-text,
.newsletter-btn.loading .btn-arrow {
    opacity: 0;
}

.newsletter-btn.loading .btn-loading {
    display: inline-block !important;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.newsletter-privacy {
    text-align: center;
    margin-top: 0.5rem;
}

.newsletter-privacy small {
    color: hsl(82, 25%, 60%);
    font-size: 0.875rem;
    line-height: 1.4;
}

#newsletter-messages {
    margin-bottom: 1rem;
}

.newsletter-message {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.newsletter-message.success {
    background: hsl(120, 50%, 95%);
    color: hsl(120, 50%, 25%);
    border: 1px solid hsl(120, 50%, 80%);
}

.newsletter-message.error {
    background: hsl(0, 50%, 95%);
    color: hsl(0, 50%, 25%);
    border: 1px solid hsl(0, 50%, 80%);
}

/* Mobile Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        min-width: 100%;
    }
    
    .input-wrapper input {
        padding: 1.25rem 1rem 1.25rem 3rem;
        font-size: 1.1rem;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(82, 25%, 22%), hsl(82, 30%, 35%));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px hsla(82, 25%, 22%, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(82, 25%, 22%, 0.4);
    background: linear-gradient(135deg, hsl(82, 30%, 35%), hsl(82, 25%, 22%));
}

.floating-contact:active {
    transform: translateY(-2px);
}

/* Mobile Responsive Floating Button */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Enhanced Typography for Mobile */
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Enhanced Button Touch Targets */
    .btn {
        min-height: 48px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .btn-small {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Enhanced Form Elements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 48px;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        touch-action: manipulation;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Enhanced Card Layouts */
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-card {
        padding: 1.25rem;
    }
    
    .team-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    /* Enhanced Grid Systems */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Enhanced Navigation */
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Enhanced Mobile Menu */
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        border-top: 1px solid rgba(82, 121, 111, 0.1);
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu ul {
        gap: 0;
    }
    
    .mobile-menu a {
        padding: 1.25rem 0;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-actions {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(82, 121, 111, 0.1);
    }
    
    .mobile-menu-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Enhanced Hero Section */
    .hero {
        padding: 3rem 1rem 5rem;
        min-height: auto;
    }
    
    .hero-visual {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-stats {
        position: static;
        justify-content: center;
        margin-top: 2rem;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-stat {
        min-width: 140px;
        padding: 1.25rem;
    }
    
    /* Enhanced Sections */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    /* Enhanced Stats Section */
    .stats-section {
        padding: 3rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    /* Enhanced Comparison Section */
    .comparison-section {
        padding: 3rem 1rem;
    }
    
    .comparison-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .vs-circle {
        order: 2;
        margin: 1.5rem auto;
    }
    
    /* Enhanced Contact Section */
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .contact-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Enhanced Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        margin-bottom: 1.5rem;
    }
    
    /* Enhanced Newsletter Form */
    .newsletter-form {
        margin-top: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .input-wrapper {
        width: 100%;
    }
    
    .input-wrapper input {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .newsletter-btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }
    
    /* Enhanced Product Grids */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        text-align: center;
    }
    
    /* Enhanced Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Enhanced Heritage Section */
    .heritage-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .heritage-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .heritage-stat {
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2.5rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stat {
        min-width: 120px;
        padding: 1rem;
    }
    
    .mobile-menu {
        padding: 1rem;
    }
    
    .mobile-menu a {
        padding: 1rem 0;
        font-size: 1rem;
    }
    
    .floating-contact {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .newsletter-input-group {
        gap: 0.75rem;
    }
    
    .input-wrapper input {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .newsletter-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .card:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .product-card:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .team-card:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .hero-stat:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .floating-contact:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    /* Enhanced touch feedback */
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .card:active {
        transform: scale(0.99);
        transition: transform 0.1s ease;
    }
    
    .mobile-menu a:active {
        background-color: hsla(82, 25%, 22%, 0.05);
        transform: none;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero-visual img,
    .product-card img,
    .team-card img,
    .blog-card img {
        will-change: auto;
    }
    
    /* Optimize scrolling performance */
    .hero,
    .section,
    .card {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Reduce repaints */
    .btn,
    .card,
    .product-card,
    .team-card {
        contain: layout style paint;
    }
    
    /* Optimize text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-visual img,
    .product-card img,
    .team-card img,
    .blog-card img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .mobile-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Very Small Screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 42px;
    }
    
    .card {
        padding: 1rem;
    }
    
    .hero-stat {
        min-width: 100px;
        padding: 0.875rem;
    }
    
    .floating-contact {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    /* Product Page Very Small Screens */
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-price {
        font-size: 1.75rem;
    }
    
    .product-actions .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .tab-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Blog Page Very Small Screens */
    .blog-categories-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .blog-stats {
        gap: 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Comparison Section Very Small Screens */
    .vs-circle {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.1rem;
    }
    
    .comparison-card {
        padding: 1.25rem 1rem;
    }
}

/* Product Page Mobile Optimizations */
@media (max-width: 768px) {
    .product-single {
        padding: 0;
    }
    
    .product-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-gallery {
        order: 1;
    }
    
    .product-details {
        order: 2;
    }
    
    .product-image-main {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-img {
        width: 100%;
        height: auto;
        border-radius: 1rem;
    }
    
    .product-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .product-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .product-features {
        margin-bottom: 1.5rem;
    }
    
    .product-features h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .features-list {
        padding-left: 1rem;
    }
    
    .feature-item {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .product-pricing {
        margin-bottom: 1.5rem;
    }
    
    .price-main {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-price {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .product-original-price {
        font-size: 1.25rem;
        text-decoration: line-through;
        color: hsl(82, 25%, 46%);
    }
    
    .product-save {
        font-size: 0.9rem;
        color: hsl(120, 50%, 40%);
        font-weight: 600;
    }
    
    .product-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .product-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    
    .product-benefits {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: hsla(82, 25%, 22%, 0.05);
        border-radius: 0.5rem;
    }
    
    .benefit-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .benefit-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Product Tabs Mobile */
    .product-tabs {
        margin-top: 2rem;
    }
    
    .tab-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 1rem;
        text-align: left;
        border: 1px solid hsla(82, 25%, 22%, 0.2);
        background: white;
        border-radius: 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .tab-btn.active {
        background: hsl(82, 25%, 22%);
        color: white;
        border-color: hsl(82, 25%, 22%);
    }
    
    .tab-content {
        padding: 1.5rem 0;
    }
    
    .tab-pane h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .shipping-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .shipping-item {
        padding: 1rem;
        background: hsla(82, 25%, 22%, 0.05);
        border-radius: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Related Products Mobile */
    .related-products {
        margin-top: 3rem;
    }
    
    .related-products .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .related-products .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-products .product-card {
        text-align: center;
    }
    
    .related-products .product-image {
        margin-bottom: 1rem;
    }
    
    .related-products .product-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 0.75rem;
    }
    
    .related-products .product-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .related-products .product-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .related-products .product-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Page Mobile Optimizations */
@media (max-width: 768px) {
    /* Blog Hero Mobile */
    .hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero .hero-image {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero .hero-text {
        order: 2;
    }
    
    .hero .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Blog Categories Mobile */
    .blog-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.25rem;
        text-align: center;
    }
    
    .category-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .category-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-count {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .category-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    /* Blog Posts Mobile */
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 0;
        overflow: hidden;
    }
    
    .blog-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    .blog-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .blog-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: hsla(82, 25%, 22%, 0.1);
    }
    
    .blog-icon {
        font-size: 3rem;
        color: hsl(82, 25%, 46%);
    }
    
    .blog-meta {
        position: absolute;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .blog-date,
    .blog-category {
        background: rgba(255, 255, 255, 0.9);
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .blog-title a {
        color: hsl(82, 25%, 22%);
        text-decoration: none;
    }
    
    .blog-title a:hover {
        color: hsl(48, 100%, 45%);
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        color: hsl(82, 25%, 46%);
    }
    
    .blog-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .blog-read-more {
        font-size: 0.9rem;
        font-weight: 600;
        color: hsl(82, 25%, 22%);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .blog-stats {
        display: flex;
        gap: 1rem;
        font-size: 0.8rem;
        color: hsl(82, 25%, 46%);
    }
    
    /* Newsletter Mobile */
    .newsletter-signup {
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Fix Comparison Section VS Circle Positioning */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-card:first-child {
        order: 1;
    }
    
    .vs-circle {
        order: 2;
        margin: 1rem auto;
        width: 4rem;
        height: 4rem;
        font-size: 1.25rem;
    }
    
    .comparison-card:last-child {
        order: 3;
    }
}

/* Breadcrumbs */
.breadcrumbs-container {
    background: hsl(82, 25%, 98%);
    padding: 1rem 0;
    border-bottom: 1px solid hsla(82, 25%, 22%, 0.1);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: hsl(82, 25%, 46%);
    font-weight: 600;
}

.breadcrumb-link {
    color: hsl(82, 25%, 22%);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-link:hover {
    color: hsl(82, 30%, 35%);
    text-decoration: underline;
}

.breadcrumb-current span {
    color: hsl(82, 25%, 46%);
    font-weight: 500;
}

/* Responsive Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs-container {
        padding: 0.75rem 0;
    }
    
    .breadcrumbs {
        padding: 0 1rem;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.25rem;
    }
}