/* 
 * Cabin Girl Granola LLC - Style Sheets
 * A custom premium visual design system built for the Northwoods lifestyle brand.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-primary: #fefdfb;      /* Elegant soft white/cream */
    --bg-secondary: #f7f2ea;    /* Warm organic cozy tan */
    --forest-green: #2e4a3f;    /* Premium Northwoods forest green */
    --forest-green-light: #446558;
    --forest-green-soft: rgba(46, 74, 63, 0.08);
    --text-dark: #271f18;       /* Rich warm dark brown */
    --text-muted: #5e5246;      /* Soft organic charcoal */
    --honey-amber: #d97706;     /* Pure honey/maple tone */
    --honey-amber-soft: rgba(217, 119, 6, 0.08);
    --blush-pink: #fdf5f5;      /* Delicate breast cancer support blush */
    --blush-pink-accent: #f5e1e2;
    --blush-dark: #d49a9c;
    --border-color: rgba(46, 74, 63, 0.1);
    --white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(39, 31, 24, 0.04);
    --shadow-md: 0 8px 24px rgba(39, 31, 24, 0.08);
    --shadow-lg: 0 16px 40px rgba(39, 31, 24, 0.12);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Reusable Components */
.section-padding {
    padding: 100px 24px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 16px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--forest-green);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--forest-green-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 74, 63, 0.2);
}

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

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

.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--forest-green);
    margin-bottom: 20px;
}

/* Header & Navigation */
header.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(254, 253, 251, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
    transition: var(--transition-smooth);
}

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

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest-green);
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon-btn {
    position: relative;
    font-size: 1.4rem;
    color: var(--text-dark);
    padding: 6px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--honey-amber);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 24px 80px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(39, 31, 24, 0.4) 0%, rgba(39, 31, 24, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bg-secondary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(254, 253, 251, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background-color: var(--white);
    color: var(--forest-green);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--bg-secondary);
}

.hero-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--forest-green);
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
}

/* Brand Intro Section */
.brand-intro {
    background-color: var(--bg-secondary);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.pine-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 24px 0 32px;
}

.pine-divider svg {
    color: var(--forest-green);
}

.pine-divider::before, .pine-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background-color: var(--border-color);
}

.brand-intro p {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--forest-green);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .brand-intro p {
        font-size: 1.15rem;
    }
}

/* Our Story Section */
.our-story {
    background-color: var(--bg-primary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    pointer-events: none;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--forest-green);
}

.story-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--honey-amber);
    margin-bottom: 24px;
}

.story-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-content p.story-highlight {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--forest-green);
    border-left: 3px solid var(--honey-amber);
    padding-left: 20px;
    margin: 32px 0;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Shop Section & Grid */
.shop-section {
    background-color: var(--bg-secondary);
}

.shop-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.shop-header h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 16px;
}

.shop-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.shop-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--forest-green);
    color: var(--white);
    border-color: var(--forest-green);
}

/* Horizontal Info Strip */
.info-strip {
    background-color: var(--forest-green);
    color: var(--bg-primary);
    padding: 20px 24px;
    text-align: center;
    margin-top: 60px;
    border-radius: 12px;
}

.info-strip-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.info-strip-items span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-strip-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
    margin-top: 16px;
}

/* Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 74, 63, 0.2);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--honey-amber);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-image-container {
    position: relative;
    height: 240px;
    background-color: #efefef;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* Sizing Selector */
.size-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.size-btn {
    flex: 1;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 6px 0;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--bg-primary);
}

.size-btn.active, .size-btn:hover {
    background-color: var(--forest-green-soft);
    border-color: var(--forest-green);
    color: var(--forest-green);
}

/* Product Pricing & Buy Panel */
.product-action-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(39, 31, 24, 0.05);
    padding-top: 16px;
    margin-top: auto;
}

.product-price-block {
    display: flex;
    flex-direction: column;
}

.price-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest-green);
}

.sub-price-val {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.add-to-cart-btn {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-to-cart-btn:hover {
    background-color: var(--honey-amber);
    transform: translateY(-1px);
}

/* Ingredients Link */
.ingredient-btn {
    font-size: 0.75rem;
    color: var(--forest-green);
    text-decoration: underline;
    margin-top: 12px;
    align-self: flex-start;
}

/* Freshness & Food Safety Sections */
.freshness-safety {
    background-color: var(--bg-primary);
}

.fs-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.freshness-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.freshness-card h3 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.freshness-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.safety-card {
    background-color: #faf8f5;
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--honey-amber);
}

.safety-card h3 {
    font-size: 1.5rem;
    color: var(--honey-amber);
    margin-bottom: 16px;
}

.safety-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .fs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Waggin' Oats Dog Treats Section */
.waggin-oats-section {
    background-color: #f6efe2; /* Soft tan */
    position: relative;
}

.wo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wo-content h2 {
    font-size: 2.5rem;
    color: #5c4033; /* Soft brown tone */
    margin-bottom: 8px;
}

.wo-subtitle {
    font-weight: 600;
    color: var(--honey-amber);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.wo-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.wo-list {
    list-style: none;
    margin-bottom: 32px;
}

.wo-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.wo-list li svg {
    color: var(--honey-amber);
}

.wo-content .btn {
    background-color: #5c4033;
    color: var(--bg-primary);
}

.wo-content .btn:hover {
    background-color: #402c22;
}

@media (max-width: 992px) {
    .wo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wo-image-wrapper {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Pink Power Collection */
.pink-power-section {
    background-color: var(--blush-pink);
    position: relative;
}

.pink-power-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f5e1e2" stroke-width="1.5"><path d="M12 2C9.5 2 7 4 7 7c0 3.5 5 11 5 11s5-7.5 5-11c0-3-2.5-5-5-5z"/><path d="M12 2c1.5 0 3 1.5 3 3.5 0 2-3 5.5-3 5.5s-3-3.5-3-5.5C9 3.5 10.5 2 12 2z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    pointer-events: none;
}

.pp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pp-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pp-badge {
    background-color: var(--blush-pink-accent);
    color: #b86266;
    border: 1px solid rgba(184, 98, 102, 0.15);
}

.pp-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.pp-donation {
    font-weight: 500;
    font-size: 0.9rem;
    border-top: 1px solid rgba(184, 98, 102, 0.15);
    padding-top: 16px;
    margin-bottom: 24px;
    color: #b86266;
}

@media (max-width: 992px) {
    .pp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Where to Find Us (Stores) */
.find-us-section {
    background-color: var(--bg-secondary);
}

.find-us-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.find-us-header h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 16px;
}

.find-us-header p {
    color: var(--text-muted);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.store-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.store-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--forest-green);
}

.store-name {
    font-size: 1.15rem;
    color: var(--forest-green);
    margin-bottom: 6px;
}

.store-loc {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--honey-amber);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Wholesale Section */
.wholesale-section {
    background-color: var(--bg-primary);
    text-align: center;
}

.wholesale-content {
    max-width: 700px;
    margin: 0 auto;
}

.wholesale-content h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 16px;
}

.wholesale-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Gives Back & Guarantee */
.gives-back-promise {
    background-color: var(--bg-secondary);
}

.gb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gb-card, .promise-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.gb-card h3, .promise-card h3 {
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 16px;
}

.gb-card p, .promise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gb-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Carousel */
.testimonials-section {
    background-color: var(--bg-primary);
    text-align: center;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 40px;
}

.carousel-track {
    overflow: hidden;
    position: relative;
    height: 220px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--honey-amber);
    margin-bottom: 16px;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-green);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
    padding: 10px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: var(--shadow-sm);
}

.carousel-nav-btn:hover {
    background-color: var(--forest-green);
    color: var(--white);
}

.carousel-prev { left: -10px; }
.carousel-next { right: -10px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(46, 74, 63, 0.2);
}

.carousel-dot.active {
    background-color: var(--forest-green);
    width: 24px;
    border-radius: 4px;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-secondary);
}

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

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.faq-question-btn:hover {
    color: var(--forest-green);
}

.faq-icon-arrow {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
    color: var(--honey-amber);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top-color: rgba(39, 31, 24, 0.05);
}

.faq-answer-inner {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Email Section */
.newsletter-section {
    background-color: var(--forest-green);
    color: var(--bg-primary);
    text-align: center;
    padding: 80px 24px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: rgba(254, 253, 251, 0.8);
    font-size: 1rem;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(254, 253, 251, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    background-color: var(--white);
    color: var(--forest-green);
}

.newsletter-form .btn:hover {
    background-color: var(--bg-secondary);
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Footer Section */
.site-footer {
    background-color: #1e312a; /* Slightly darker forest green */
    color: rgba(254, 253, 251, 0.7);
    padding: 60px 24px 30px;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(254, 253, 251, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 12px;
}

.footer-brand p {
    line-height: 1.6;
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link-icon {
    font-size: 1.2rem;
}

.social-link-icon:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-certs {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
}

/* Sliding Shopping Cart Tray Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(39, 31, 24, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.3rem;
    color: var(--forest-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart-btn {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.close-cart-btn:hover {
    color: var(--text-dark);
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cart Empty State */
.cart-empty-state {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}

.cart-empty-state svg {
    margin-bottom: 16px;
    color: var(--border-color);
}

/* Cart Item Card */
.cart-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid rgba(39, 31, 24, 0.05);
    padding-bottom: 16px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-secondary);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    padding: 4px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    background-color: var(--bg-secondary);
}

.qty-btn:hover {
    background-color: var(--border-color);
}

.qty-val {
    padding: 0 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.remove-item-btn {
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 500;
}

.remove-item-btn:hover {
    text-decoration: underline;
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--forest-green);
}

/* Cart Footer panel */
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.cart-summary-line.total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-top: 1px solid rgba(39, 31, 24, 0.05);
    padding-top: 12px;
}

.checkout-btn {
    width: 100%;
}

/* Wholesale Modal Form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(39, 31, 24, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-primary);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-container {
    transform: translateY(0);
}

.modal-header {
    background-color: var(--forest-green);
    color: var(--bg-primary);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.4rem;
}

.close-modal-btn {
    font-size: 1.5rem;
    color: rgba(254, 253, 251, 0.8);
}

.close-modal-btn:hover {
    color: var(--white);
}

.modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: var(--white);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(46, 74, 63, 0.1);
}

/* Dynamic Notification Popups */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success-icon {
    color: #34d399;
}
