/* =====================================================
   CONSOLIDATED PAGES STYLES
   Ozmosis Naturals™ - About, Contact, Shop & Terms Pages
   ===================================================== */

/* =====================================================
   SHARED PAGE HERO STYLES
   ===================================================== */
.page-hero,
.contact-hero,
.shop-hero,
.terms-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero,
.shop-hero,
.terms-hero {
    padding: 160px 0 80px;
}

.page-hero-background::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 137, 104, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero::before {
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.1) 0%, transparent 70%);
}

.terms-hero::before {
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(176, 137, 104, 0.08) 0%, transparent 70%);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--dark-brown);
}

.breadcrumb .separator {
    color: var(--charcoal);
    opacity: 0.5;
}

/* Page Titles */
.page-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 64px);
    color: var(--dark-brown);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.shop-hero .page-title,
.terms-hero .page-title {
    font-size: clamp(40px, 6vw, 56px);
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--charcoal);
    max-width: 700px;
    line-height: 1.8;
}

.shop-hero .page-subtitle,
.terms-hero .page-subtitle {
    font-size: 18px;
    max-width: 600px;
}

.last-updated {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    background-color: rgba(156, 175, 136, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: var(--dark-brown);
    font-weight: 500;
}

/* Section Headers - Shared */
.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-heading,
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--dark-brown);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-description {
    color: var(--charcoal);
    font-size: 16px;
    margin-top: 12px;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--primary-brown);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-brown);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* =====================================================
   ABOUT PAGE - REFRESHED STYLES
   ===================================================== */

/* Hero Section */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #FAF7F0 0%, #F5F1E8 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 137, 104, 0.15) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.12) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 72px);
    color: var(--dark-brown);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 900px;
}

.about-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--charcoal);
    max-width: 700px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-decoration {
    position: absolute;
    top: -24px;
    left: -24px;
    right: 24px;
    bottom: 24px;
    border: 3px solid var(--primary-brown);
    border-radius: 16px;
    z-index: 1;
}

.story-content .section-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 16px;
}

.story-content .section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    color: var(--dark-brown);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF7F0 0%, #F5F1E8 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 60px 48px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brown), var(--sage-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(176, 137, 104, 0.1), rgba(156, 175, 136, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.card-icon-wrapper svg {
    color: var(--primary-brown);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.card-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background-color: var(--white);
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.value-card {
    position: relative;
    padding: 48px 40px;
    background-color: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: var(--light-beige);
    transform: translateX(8px);
}

.value-number {
    position: absolute;
    top: 24px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--primary-brown);
    opacity: 0.15;
    font-weight: 700;
    line-height: 1;
}

.value-card {
    padding-top: 80px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal);
}

/* Promise Section */
.promise-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F5F1E8 0%, #FAF7F0 100%);
}

.promise-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.promise-header {
    text-align: center;
    margin-bottom: 64px;
}

.promise-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    color: var(--dark-brown);
    margin-bottom: 24px;
    font-weight: 600;
}

.promise-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background-color: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.promise-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.promise-content h4 {
    font-size: 18px;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.promise-content p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: 120px 0;
    background-color: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: var(--primary-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.founder-role {
    font-size: 16px;
    color: var(--sage-green);
    margin-bottom: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-quote {
    font-size: 20px;
    line-height: 1.7;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 32px;
    padding-left: 28px;
    border-left: 4px solid var(--primary-brown);
}

.founder-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

/* Impact Section */
.impact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    color: white;
}

.impact-header {
    text-align: center;
    margin-bottom: 80px;
}

.impact-header .section-title {
    color: white;
}

.impact-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(56px, 7vw, 80px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
    opacity: 0.8;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Certifications Section */
.certifications-section {
    padding: 120px 0;
    background-color: var(--cream);
}

.certifications-header {
    text-align: center;
    margin-bottom: 80px;
}

.certifications-subtitle {
    font-size: 16px;
    color: var(--charcoal);
    max-width: 600px;
    margin: 16px auto 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.certification-card {
    background-color: var(--white);
    padding: 48px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.cert-icon {
    margin-bottom: 24px;
}

.cert-icon svg {
    color: var(--primary-brown);
}

.cert-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.cert-description {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 56px);
    margin-bottom: 24px;
    font-weight: 600;
}

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--dark-green);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
    .story-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-image-wrapper {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 80px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .value-card {
        padding-top: 60px;
    }
    
    .value-number {
        font-size: 56px;
        top: 20px;
        left: 32px;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .promise-item {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .mission-card,
    .vision-card {
        padding: 40px 32px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .value-title {
        font-size: 20px;
    }
    
    .founder-name {
        font-size: 32px;
    }
    
    .founder-quote {
        font-size: 18px;
        padding-left: 20px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .certification-card {
        padding: 36px 24px;
    }
}

/* Impact Section */
.impact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    color: white;
    text-align: center;
}

.impact-section .section-heading {
    color: white;
    margin-bottom: 16px;
}

.impact-subtitle {
    font-size: 18px;
    margin-bottom: 80px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
    opacity: 0.8;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Certifications Section */
.certifications-section {
    padding: 120px 0;
    background-color: var(--cream);
}

.certifications-section .section-heading {
    margin-bottom: 16px;
}

.certifications-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto 80px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.certification-badge {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.certification-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    color: var(--primary-brown);
    margin-bottom: 24px;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.badge-description {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
}

/* Journey CTA Section */
.journey-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 24px;
    font-weight: 600;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--dark-green);
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background-color: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.method-card {
    background-color: var(--cream);
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.method-card:hover {
    border-color: var(--primary-brown);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.method-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.method-info {
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.method-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.method-link:hover {
    color: var(--dark-brown);
    gap: 8px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background-color: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.form-description {
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 12px;
    color: #888;
    background-color: white;
    padding: 2px 6px;
    border-radius: 3px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 3px;
    position: relative;
    transition: var(--transition);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
    animation: spin 1s linear infinite;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    padding: 16px;
    border-radius: 4px;
    font-size: 15px;
    display: none;
    margin-top: 16px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light-gray);
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day {
    font-weight: 600;
    color: var(--dark-brown);
}

.time {
    color: var(--charcoal);
    font-size: 14px;
}

.social-description {
    color: var(--charcoal);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.whatsapp {
    background-color: #25d366;
}

.highlight-card {
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    color: white;
}

.highlight-card h3 {
    color: white;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.highlight-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
}

.highlight-link:hover {
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--cream);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-brown);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-brown);
}

.faq-icon {
    min-width: 24px;
    color: var(--primary-brown);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 15px;
}

/* Map Section */
.map-section {
    padding: 80px 0 0;
    background-color: var(--cream);
}

.map-section .section-title {
    margin-bottom: 40px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    z-index: 10;
}

.map-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.map-info p {
    color: var(--charcoal);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* =====================================================
   SHOP PAGE STYLES
   ===================================================== */

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 600px;
    width: 90%;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.search-input {
    width: 100%;
    padding: 20px 24px;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    background-color: white;
    font-family: var(--font-body);
}

.search-input:focus {
    outline: 3px solid var(--primary-brown);
}

.search-results {
    margin-top: 20px;
    background-color: white;
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.search-result-item:hover {
    background-color: var(--light-beige);
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info h4 {
    color: var(--dark-brown);
    margin-bottom: 4px;
    font-size: 16px;
}

.search-result-info p {
    color: var(--charcoal);
    font-size: 14px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-brown);
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 8px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--charcoal);
}

.empty-cart svg {
    color: var(--light-gray);
    margin-bottom: 16px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
    font-size: 14px;
}

.cart-item-price {
    color: var(--primary-brown);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--light-gray);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

.quantity-value {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    margin-top: 8px;
}

.cart-footer {
    padding: 24px;
    border-top: 2px solid var(--light-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.cart-total span:first-child {
    font-weight: 600;
    color: var(--charcoal);
}

.total-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-brown);
}

.checkout-btn {
    width: 100%;
    padding: 16px;
}

/* Filter Bar */
.filter-bar,
.quick-links-banner {
    background-color: white;
    border-bottom: 1px solid var(--light-gray);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.quick-links-banner {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-links-content {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.quick-links-content::-webkit-scrollbar {
    height: 4px;
}

.quick-links-content::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.quick-links-content::-webkit-scrollbar-thumb {
    background: var(--primary-brown);
    border-radius: 2px;
}

.quick-links-label {
    font-weight: 600;
    color: var(--dark-brown);
    white-space: nowrap;
    font-size: 14px;
}

.quick-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-link {
    padding: 8px 16px;
    background-color: var(--light-beige);
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.quick-link:hover {
    background-color: var(--primary-brown);
    color: white;
    transform: translateY(-2px);
}

.filter-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--light-beige);
    border: 1px solid var(--primary-brown);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-brown);
    transition: var(--transition);
}

.filter-toggle:hover {
    background-color: var(--primary-brown);
    color: white;
}

.active-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: var(--sage-green);
    color: white;
    border-radius: 20px;
    font-size: 13px;
}

.filter-tag button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.result-count {
    font-size: 14px;
    color: var(--charcoal);
    white-space: nowrap;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
}

.view-toggle {
    display: flex;
    gap: 4px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.view-btn {
    padding: 8px 12px;
    background: white;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    transition: var(--transition);
}

.view-btn.active {
    background-color: var(--primary-brown);
    color: white;
}

/* Shop Content & Layout */
.shop-content,
.terms-content {
    padding: 40px 0 80px;
}

.terms-content {
    padding: 60px 0 100px;
    background-color: var(--cream);
}

.shop-layout,
.terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.terms-layout {
    gap: 60px;
}

/* Sidebar Styles */
.shop-sidebar,
.terms-sidebar {
    position: sticky;
    top: 160px;
    height: fit-content;
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shop-sidebar {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

.terms-sidebar {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    top: 180px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    font-weight: 600;
}

.clear-filters {
    background: none;
    border: none;
    color: var(--primary-brown);
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-gray);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.filter-option input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--light-gray);
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
    transition: var(--transition);
}

.filter-option input:checked ~ .checkmark {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
}

.filter-option input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.filter-label {
    flex: 1;
    color: var(--charcoal);
}

.filter-count {
    color: var(--primary-brown);
    font-size: 13px;
}

.stars {
    color: #FFB800;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-inputs input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 14px;
}

.price-inputs span {
    color: var(--charcoal);
}

#priceSlider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--light-gray);
    outline: none;
    -webkit-appearance: none;
}

#priceSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-brown);
    cursor: pointer;
}

#priceSlider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-brown);
    cursor: pointer;
    border: none;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--charcoal);
}

/* Products Grid */
.products-container {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--sage-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.new {
    background-color: #3498db;
}

.product-badge.sale {
    background-color: #e74c3c;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-action-btn:hover {
    background-color: var(--primary-brown);
    color: white;
}

.quick-add-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background-color: var(--dark-brown);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .quick-add-btn {
    opacity: 1;
    transform: translateY(0);
}

.quick-add-btn:hover {
    background-color: var(--primary-brown);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--sage-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-stars {
    color: #FFB800;
    font-size: 14px;
}

.product-reviews {
    font-size: 13px;
    color: #888;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-brown);
}

.product-price.sale {
    display: flex;
    align-items: center;
    gap: 8px;
}

.original-price {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
    font-weight: 400;
}

.product-description {
    display: none;
}

.list-actions {
    display: none;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 24px;
}

.products-grid.list-view .product-image-wrapper {
    aspect-ratio: 1;
}

.products-grid.list-view .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-grid.list-view .product-description {
    display: block;
    color: var(--charcoal);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.products-grid.list-view .list-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 4px;
}

.page-number {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.page-number:hover {
    background-color: var(--light-beige);
}

.page-number.active {
    background-color: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

/* =====================================================
   TERMS PAGE STYLES
   ===================================================== */

/* Terms Navigation */
.terms-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.nav-item {
    padding: 12px 16px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-item:hover {
    background-color: var(--light-beige);
    color: var(--dark-brown);
}

.nav-item.active {
    background-color: var(--primary-brown);
    color: white;
    font-weight: 600;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background-color: white;
    border-radius: 0 3px 3px 0;
}

.sidebar-help {
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    padding: 24px;
    border-radius: 8px;
    color: white;
    text-align: center;
}

.help-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sidebar-help h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.sidebar-help p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.95;
}

.help-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.help-link:hover {
    transform: translateX(4px);
}

/* Terms Main Content */
.terms-main {
    background-color: white;
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.terms-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--light-gray);
}

.terms-intro h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--light-beige);
    border-radius: 8px;
    border-left: 4px solid var(--primary-brown);
}

.intro-highlight svg {
    flex-shrink: 0;
    color: var(--primary-brown);
}

.intro-highlight p {
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
}

.terms-section {
    margin-bottom: 48px;
    padding: 32px;
    background-color: var(--cream);
    border-radius: 8px;
    position: relative;
    scroll-margin-top: 200px;
    transition: var(--transition);
}

.terms-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.terms-section.highlighted {
    background-color: #fff8f0;
    border: 2px solid var(--primary-brown);
}

.section-number {
    position: absolute;
    top: 20px;
    left: -60px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-brown);
    opacity: 0.15;
}

.section-content {
    color: var(--charcoal);
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 20px;
}

.section-content h4 {
    font-size: 18px;
    color: var(--dark-brown);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.terms-list {
    margin: 16px 0;
    padding-left: 24px;
}

.terms-list li {
    margin-bottom: 12px;
    line-height: 1.8;
    position: relative;
}

.terms-list li::marker {
    color: var(--primary-brown);
    font-weight: 600;
}

.key-point {
    padding: 16px 20px;
    background-color: rgba(156, 175, 136, 0.15);
    border-left: 4px solid var(--sage-green);
    border-radius: 4px;
    margin: 24px 0;
}

.key-point strong {
    color: var(--dark-brown);
}

.info-box {
    padding: 20px;
    background-color: white;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    margin: 24px 0;
}

.info-box h4 {
    font-size: 16px;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 15px;
}

.inline-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.inline-link:hover {
    color: var(--dark-brown);
    gap: 8px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--light-beige);
    border-radius: 6px;
}

.contact-item svg {
    color: var(--primary-brown);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-brown);
}

.contact-item span {
    color: var(--charcoal);
}

.terms-acceptance {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-brown), var(--sage-green));
    border-radius: 8px;
    color: white;
    text-align: center;
}

.acceptance-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
}

.acceptance-date {
    font-size: 14px;
    opacity: 0.9;
}

.related-pages {
    padding: 80px 0;
    background-color: white;
}

.related-pages .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.related-card {
    background-color: var(--cream);
    padding: 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.related-card:hover {
    border-color: var(--primary-brown);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.related-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.related-card p {
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 15px;
}

/* Newsletter Section (Shop Page) */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    color: white;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 16px;
    font-weight: 600;
}

.newsletter-description {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-body);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* =====================================================
   SCROLL TO TOP BUTTON
   ===================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-brown);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--dark-brown);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.faq-question:focus-visible,
.nav-item:focus-visible,
.quick-link:focus-visible {
    outline: 2px solid var(--primary-brown);
    outline-offset: 2px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
html {
    scroll-behavior: smooth;
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-section.highlight-active {
    animation: highlightPulse 1s ease;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(176, 137, 104, 0.3);
    }
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-message.success {
    animation: successPulse 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .story-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-layout,
    .terms-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar,
    .terms-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        max-height: 100vh;
        z-index: 10000;
        transition: left 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .shop-sidebar.active {
        left: 0;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 400px;
    }
    
    .section-number {
        position: static;
        display: block;
        font-size: 32px;
        margin-bottom: 16px;
        opacity: 0.3;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .page-hero,
    .contact-hero,
    .shop-hero,
    .terms-hero {
        padding: 140px 0 60px;
    }
    
    .contact-hero,
    .shop-hero,
    .terms-hero {
        padding: 140px 0 60px;
    }
    
    .our-story-section,
    .values-section,
    .promise-section,
    .founder-section,
    .impact-section,
    .certifications-section,
    .journey-cta {
        padding: 80px 0;
    }
    
    .mission-vision-section {
        padding: 80px 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .value-item {
        padding-left: 60px;
    }
    
    .value-number {
        font-size: 36px;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .map-overlay {
        position: static;
        margin: 16px;
        max-width: none;
    }
    
    .quick-links-banner,
    .filter-bar {
        padding: 16px 0;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-right {
        flex-direction: column;
        align-items: stretch;
    }
    
    .view-toggle {
        justify-content: center;
    }
    
    .quick-links-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-links {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }
    
    .products-grid.list-view .list-actions {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .terms-content {
        padding: 40px 0 80px;
    }
    
    .terms-main {
        padding: 32px 24px;
    }
    
    .terms-intro h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .terms-section {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-to-top {
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .value-title {
        font-size: 20px;
    }
    
    .founder-name {
        font-size: 28px;
    }
    
    .founder-quote {
        font-size: 16px;
        padding-left: 16px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .contact-methods,
    .contact-form-section,
    .faq-section,
    .map-section {
        padding: 60px 0;
    }
    
    .method-card {
        padding: 32px 24px;
    }
    
    .method-icon {
        width: 64px;
        height: 64px;
    }
    
    .method-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .info-card {
        padding: 24px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .terms-main {
        padding: 24px 16px;
    }
    
    .terms-section {
        padding: 20px 16px;
    }
    
    .intro-highlight,
    .key-point,
    .info-box {
        padding: 16px;
    }
    
    .terms-acceptance {
        padding: 24px;
    }
    
    .acceptance-content h3 {
        font-size: 20px;
    }
    
    .related-card {
        padding: 24px;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .navbar,
    .contact-methods,
    .contact-info-sidebar,
    .faq-section,
    .footer,
    .quick-links-banner,
    .terms-sidebar,
    .related-pages,
    .scroll-to-top,
    .filter-bar,
    .shop-sidebar,
    .cart-sidebar,
    .search-overlay {
        display: none;
    }
    
    .contact-form-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .terms-layout,
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .terms-main {
        box-shadow: none;
        padding: 0;
    }
    
    .terms-section {
        page-break-inside: avoid;
        background-color: white;
    }
    
    .section-number {
        position: static;
        display: block;
        opacity: 0.3;
    }
}

/* =====================================================
   BLOG PAGE STYLES
   ===================================================== */

/* Blog Hero */
.blog-hero {
    padding: 140px 0 60px;
}

/* Featured Post */
.featured-post-section {
    padding: 80px 0;
    background-color: var(--white);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary-brown), var(--sage-green));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-post-content {
    padding: 40px 60px 40px 0;
}

.post-category-tag {
    display: inline-block;
    background-color: var(--sage-green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.featured-post-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 36px);
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.featured-post-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.featured-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--charcoal);
}

.meta-item svg {
    color: var(--primary-brown);
}

/* Blog Layout */
.blog-content-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.blog-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.widget-description {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Search Widget */
.blog-search-form {
    position: relative;
    display: flex;
}

.blog-search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-body);
}

.blog-search-form input:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.blog-search-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-brown);
    cursor: pointer;
    padding: 8px;
}

/* Categories Widget */
.category-list {
    list-style: none;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--light-beige);
}

.category-item:hover {
    background-color: var(--primary-brown);
    color: white;
}

.category-item.active {
    background-color: var(--primary-brown);
    color: white;
    font-weight: 600;
}

.category-count {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Popular Posts Widget */
.popular-post-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-item:hover {
    transform: translateX(4px);
}

.popular-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-info h4 {
    font-size: 14px;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.4;
}

.popular-post-date {
    font-size: 12px;
    color: var(--sage-green);
}

/* Newsletter Widget */
.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-newsletter-form input {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 14px;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.sidebar-newsletter-form .btn {
    width: 100%;
    padding: 12px;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--light-beige);
    color: var(--dark-brown);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-brown);
    color: white;
}

/* Blog Posts Container */
.blog-posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.posts-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-brown);
    font-weight: 600;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.blog-post-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--dark-brown);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 24px;
}

.blog-post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--sage-green);
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-post-excerpt {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 14px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.blog-post-card:hover .read-more-link {
    gap: 8px;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post-content {
        padding: 40px;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .featured-post-section {
        padding: 60px 0;
    }
    
    .featured-post-content {
        padding: 32px 24px;
    }
    
    .featured-post-title {
        font-size: 24px;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .blog-posts-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .featured-post-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .sidebar-widget {
        padding: 24px;
    }
    
    .posts-heading {
        font-size: 24px;
    }
}


/* =====================================================
   BLOG DETAIL PAGE STYLES
   ===================================================== */

/* Blog Detail Hero */
.blog-detail-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #FAF7F0 0%, #F5F1E8 100%);
}

.blog-detail-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.post-category-badge {
    display: inline-block;
    background-color: var(--sage-green);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-detail-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 32px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

/* Featured Image */
.blog-featured-image {
    padding: 40px 0 80px;
    background-color: var(--cream);
}

.featured-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 0 auto;
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Detail Content */
.blog-detail-content-section {
    padding: 80px 0;
    background-color: white;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Content */
.blog-detail-main {
    max-width: 800px;
}

.blog-content-wrapper {
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.7;
    color: var(--dark-brown);
    margin-bottom: 40px;
    font-weight: 500;
}

.blog-content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-brown);
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-brown);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.blog-content-wrapper p {
    margin-bottom: 24px;
}

.blog-content-wrapper ul,
.blog-content-wrapper ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-content-wrapper li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: 700;
    font-size: 18px;
}

/* Content Highlights */
.content-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: rgba(176, 137, 104, 0.1);
    border-left: 4px solid var(--primary-brown);
    border-radius: 8px;
    margin: 32px 0;
}

.content-highlight.success {
    background-color: rgba(156, 175, 136, 0.1);
    border-left-color: var(--sage-green);
}

.content-highlight svg {
    flex-shrink: 0;
    color: var(--primary-brown);
    margin-top: 2px;
}

.content-highlight.success svg {
    color: var(--sage-green);
}

.content-highlight p {
    margin: 0;
    line-height: 1.7;
}

.content-callout {
    padding: 32px;
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    color: white;
    border-radius: 12px;
    margin: 40px 0;
}

.content-callout h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 12px;
}

.content-callout p {
    margin: 0;
    opacity: 0.95;
}

/* Blog Images */
.blog-image-wrapper {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 16px;
    background-color: var(--light-beige);
    font-size: 14px;
    color: var(--charcoal);
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
    margin-top: 48px;
    border-top: 2px solid var(--light-gray);
}

.tag-label {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 14px;
}

/* Share Buttons */
.blog-share {
    padding: 32px 0;
    border-top: 2px solid var(--light-gray);
}

.share-label {
    display: block;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { background-color: #1877f2; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.whatsapp { background-color: #25d366; }
.share-btn.linkedin { background-color: #0077b5; }

/* Author Bio */
.author-bio {
    display: flex;
    gap: 24px;
    padding: 40px;
    background-color: var(--cream);
    border-radius: 12px;
    margin-top: 48px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown), var(--sage-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.author-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
}

.author-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

/* Related Posts */
.related-posts-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid var(--light-gray);
}

.related-posts-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 40px;
    font-weight: 600;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.related-post-card {
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.related-post-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 24px;
}

.related-post-category {
    display: inline-block;
    background-color: var(--dark-brown);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.related-post-content h3 {
    margin: 0 0 12px 0;
}

.related-post-content h3 a {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
}

.related-post-content h3 a:hover {
    color: var(--primary-brown);
}

.related-post-content p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.blog-detail-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Featured Product Widget */
.featured-product-widget {
    background: linear-gradient(135deg, var(--sage-green), var(--dark-green));
    color: white;
}

.featured-product-widget .widget-title {
    color: white;
}

.featured-product {
    text-align: center;
}

.featured-product img {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.featured-product h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.featured-product p {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.featured-product .product-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-product .btn {
    width: 100%;
    background-color: white;
    color: var(--dark-green);
}

.featured-product .btn:hover {
    background-color: var(--light-beige);
    transform: translateY(-2px);
}

/* Table of Contents Widget */
.toc-widget {
    background-color: var(--cream);
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    display: block;
    padding: 10px 16px;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
}

.toc-list a:hover {
    background-color: var(--light-beige);
    color: var(--dark-brown);
    transform: translateX(4px);
}

/* Newsletter Widget */
.newsletter-widget {
    background-color: var(--light-beige);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */


   

/* =====================================================
   THANK YOU PAGE STYLES
   ===================================================== */


        .thankyou-hero {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, #F5F1E8 0%, #FAF7F0 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .thankyou-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(156, 175, 136, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .success-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #9CAF88, #6B8E23);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            animation: scaleIn 0.6s ease;
            box-shadow: 0 20px 40px rgba(156, 175, 136, 0.3);
        }

        .success-icon svg {
            color: white;
            width: 60px;
            height: 60px;
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .thankyou-title {
            font-family: var(--font-heading);
            font-size: clamp(36px, 5vw, 52px);
            color: var(--dark-brown);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .thankyou-subtitle {
            font-size: 18px;
            color: var(--charcoal);
            max-width: 600px;
            margin: 0 auto 32px;
            line-height: 1.8;
        }

        .order-number {
            display: inline-block;
            padding: 12px 24px;
            background-color: rgba(176, 137, 104, 0.1);
            border-radius: 25px;
            font-weight: 600;
            color: var(--primary-brown);
            font-size: 16px;
            margin-bottom: 24px;
        }

        .order-number span {
            color: var(--dark-brown);
            font-weight: 700;
        }

        /* Order Details Section */
        .order-details-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .order-layout {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .order-summary-card,
        .customer-info-card {
            background-color: var(--cream);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light-gray);
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary-brown);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .card-title {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--dark-brown);
            font-weight: 600;
            margin: 0;
        }

        /* Order Items */
        .order-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 32px;
        }

        .order-item {
            display: flex;
            gap: 20px;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
        }

        .item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .item-details {
            flex: 1;
        }

        .item-name {
            font-weight: 600;
            color: var(--dark-brown);
            margin-bottom: 4px;
            font-size: 16px;
        }

        .item-meta {
            font-size: 14px;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .item-price {
            font-weight: 700;
            color: var(--primary-brown);
            font-size: 18px;
        }

        /* Order Totals */
        .order-totals {
            background-color: white;
            padding: 24px;
            border-radius: 8px;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .total-row:last-child {
            border-bottom: none;
            padding-top: 20px;
            margin-top: 12px;
            border-top: 2px solid var(--light-gray);
        }

        .total-label {
            color: var(--charcoal);
            font-weight: 500;
        }

        .total-value {
            font-weight: 600;
            color: var(--dark-brown);
        }

        .total-row:last-child .total-label {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-brown);
        }

        .total-row:last-child .total-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-brown);
        }

        /* Customer Info */
        .info-group {
            margin-bottom: 28px;
        }

        .info-group:last-child {
            margin-bottom: 0;
        }

        .info-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--sage-green);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .info-value {
            color: var(--charcoal);
            line-height: 1.6;
            font-size: 15px;
        }

        .info-highlight {
            background-color: white;
            padding: 16px;
            border-radius: 8px;
            margin-top: 8px;
        }

        /* Next Steps Section */
        .next-steps-section {
            padding: 80px 0;
            background-color: var(--cream);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .step-card {
            background-color: white;
            padding: 40px 32px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-brown), var(--sage-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: white;
            font-size: 24px;
            font-weight: 700;
            font-family: var(--font-heading);
        }

        .step-title {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--dark-brown);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .step-description {
            color: var(--charcoal);
            line-height: 1.7;
            font-size: 14px;
        }

        /* Actions Section */
        .actions-section {
            background: linear-gradient(135deg, var(--primary-brown), var(--sage-green));
            padding: 60px 0;
            text-align: center;
            color: white;
        }

        .actions-title {
            font-family: var(--font-heading);
            font-size: 32px;
            margin-bottom: 32px;
            font-weight: 600;
        }

        .actions-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background-color: white;
            color: var(--dark-brown);
            border-color: white;
        }

        .btn-white:hover {
            background-color: var(--light-beige);
            transform: translateY(-2px);
        }

        .btn-outline-white {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline-white:hover {
            background-color: white;
            color: var(--dark-brown);
        }

        /* Related Products Section */
        .related-products-section {
            padding: 80px 0;
            background-color: white;
        }

        .related-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Email Confirmation Notice */
        .email-notice {
            background-color: rgba(156, 175, 136, 0.1);
            border-left: 4px solid var(--sage-green);
            padding: 20px 24px;
            border-radius: 8px;
            margin-top: 40px;
            display: flex;
            align-items: start;
            gap: 16px;
        }

        .email-notice svg {
            color: var(--sage-green);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .email-notice-text {
            color: var(--charcoal);
            line-height: 1.7;
            font-size: 14px;
        }

        .email-notice-text strong {
            color: var(--dark-brown);
        }

        /* Support Banner */
        .support-banner {
            background-color: var(--light-beige);
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin-top: 60px;
        }

        .support-banner h3 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--dark-brown);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .support-banner p {
            color: var(--charcoal);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .support-contacts {
            display: flex;
            gap: 32px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .support-contact {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--primary-brown);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .support-contact:hover {
            color: var(--dark-brown);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .order-layout {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .thankyou-hero {
                padding: 120px 0 40px;
            }

            .success-icon {
                width: 100px;
                height: 100px;
            }

            .success-icon svg {
                width: 50px;
                height: 50px;
            }

            .order-summary-card,
            .customer-info-card {
                padding: 28px 20px;
            }

            .order-item {
                flex-direction: column;
            }

            .item-image {
                width: 100%;
                height: 200px;
            }

            .actions-buttons {
                flex-direction: column;
                align-items: center;
            }

            .actions-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

            .related-products-grid {
                grid-template-columns: 1fr;
            }

            .support-contacts {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .thankyou-title {
                font-size: 28px;
            }

            .card-title {
                font-size: 20px;
            }

            .order-totals {
                padding: 20px;
            }
        }
/* Blog post image as link */
.blog-post-image {
    display: block;
    text-decoration: none;
}

/* Blog post title link */
.blog-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--primary-brown);
}

/* Read more link */
.read-more-link {
    text-decoration: none;
}