/* styles.css - Complete styles for all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfaf7;
    color: #2c3e2b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1d3b1d;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(45, 70, 40, 0.1);
    background-color: #ffffffd9;
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #1d3b1d;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    font-weight: 300;
    color: #5e7c5a;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8faf7a;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8faf7a;
}

.header-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-icons a {
    color: #2c4a2b;
    font-size: 1.3rem;
    transition: color 0.2s;
    position: relative;
    text-decoration: none;
}

.header-icons a:hover {
    color: #8faf7a;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #8faf7a;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Page Header */
.page-header {
    padding: 4rem 0 3rem;
    background: linear-gradient(105deg, #f3f1ea 0%, #fcfaf7 60%);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1d3b1d;
}

.breadcrumbs {
    font-size: 1rem;
    color: #7d9c73;
}

.breadcrumbs a {
    color: #7d9c73;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #1d3b1d;
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(105deg, #f3f1ea 0%, #fcfaf7 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-pre {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7d9c73;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
    color: #1d3b1d;
}

.hero-text p {
    font-size: 1.2rem;
    color: #4a5f48;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.25s;
    font-size: 1rem;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #1d3b1d;
    color: white;
    box-shadow: 0 8px 18px -8px rgba(29, 59, 29, 0.3);
}

.btn-primary:hover {
    background-color: #2d562b;
    transform: translateY(-3px);
    box-shadow: 0 12px 22px -8px rgba(29, 59, 29, 0.4);
}

.btn-outline {
    border: 1px solid #1d3b1d;
    color: #1d3b1d;
    background: transparent;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: #1d3b1d;
    color: white;
}

.btn-light {
    background-color: #fcfaf7;
    color: #1d3b1d;
    border: none;
    box-shadow: 0 8px 18px -8px rgba(0,0,0,0.1);
}

.btn-light:hover {
    background-color: white;
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
    margin-left: 0;
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-shape {
    width: 380px;
    height: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 42% 58% 70% 30% / 40% 50% 50% 60%;
    box-shadow: 0 30px 40px -20px rgba(62, 95, 58, 0.7);
}

.hero-shape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(188, 208, 170, 0.8), rgba(125, 156, 115, 0.85));
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.hero-shape__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    display: block;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8faf7a;
    font-weight: 500;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-top: 0.3rem;
}

/* Categories */
.featured-categories {
    padding: 5rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 28px -12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    border: 1px solid #edf3e7;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 36px -16px #2f4d2e80;
}

.card-bg {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.vegetables-bg {
    background: linear-gradient(145deg, rgba(83, 116, 77, 0.45), rgba(160, 214, 171, 0.45)), url('images/vegetables2.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.fruits-bg {
    background: linear-gradient(145deg, rgba(83, 116, 77, 0.45), rgba(160, 214, 171, 0.45)), url('images/orchard.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.pantry-bg {
    background: linear-gradient(145deg, rgba(83, 116, 77, 0.45), rgba(160, 214, 171, 0.45)), url('images/pantry.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.card-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #4a6741;
    margin-bottom: 1.8rem;
    font-size: 1rem;
}

.card-link {
    font-weight: 600;
    color: #1d3b1d;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid #bcd0aa;
    padding-bottom: 2px;
}

.card-link i {
    transition: transform 0.2s;
    font-size: 0.9rem;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Products Grid */
.best-sellers {
    padding: 2rem 0 5rem;
    background-color: #f9f6f0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.02);
    border: 1px solid #e9efe3;
    transition: all 0.2s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 16px 32px -16px #7d9c73;
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f3eee5;
    color: #1d3b1d;
    font-size: 0.75rem;
    padding: 0.25rem 0.9rem;
    border-radius: 30px;
    font-weight: 500;
    z-index: 2;
    letter-spacing: 0.3px;
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.avo-bg {
    background: linear-gradient(145deg, rgba(83, 116, 77, 0.45), rgba(160, 214, 171, 0.45)), url('images/Avocado.webp');
    background-size: cover;
    background-position: center;
}

.tomato-bg {
    background: linear-gradient(145deg, rgba(83, 116, 77, 0.45), rgba(160, 214, 171, 0.45)), url('images/Tomatoes.webp');
    background-size: cover;
    background-position: center;
}

.honey-bg {
    background: linear-gradient(145deg, rgba(83, 116, 77, 0.45), rgba(160, 214, 171, 0.45)), url('images/Honey.webp');
    background-size: cover;
    background-position: center;
}

.kale-bg {
    background: linear-gradient(145deg, rgba(83, 116, 77, 0.45), rgba(160, 214, 171, 0.45)), url('images/Kale.webp');
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 1.5rem 1.2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.product-desc {
    font-size: 0.9rem;
    color: #606f5a;
    margin-bottom: 1.5rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-weight: 600;
    font-size: 1.2rem;
    color: #1d3b1d;
}

.add-to-cart {
    background: #e4efe0;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 500;
    color: #1d3b1d;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
}

.add-to-cart i {
    margin-right: 4px;
}

.add-to-cart:hover {
    background: #1d3b1d;
    color: white;
}

.center-btn {
    text-align: center;
}

/* Story Banner */
.story-banner {
    background: #2f482e;
    background-image: radial-gradient(circle at 80% 30%, #5c7f51, #1d341d);
    padding: 5rem 0;
    margin: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.story-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.story-banner blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    line-height: 1.3;
    font-weight: 500;
    color: #fbfaf5;
    margin-bottom: 1rem;
}

.story-author {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #dbeace;
    margin-bottom: 2.5rem;
}

/* Features */
.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.feature-item i {
    font-size: 2.6rem;
    color: #5b8252;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #1d3b1d;
}

.feature-item p {
    color: #4e6547;
}

/* Newsletter */
.newsletter {
    padding: 3rem 0 5rem;
}

.newsletter-box {
    background: #eef3e9;
    border-radius: 60px;
    padding: 4rem 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-box h3 {
    font-size: 2.4rem;
    margin-bottom: 0.7rem;
}

.newsletter-box p {
    color: #47633f;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#newsletter-form {
    display: flex;
    gap: 0.8rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

#newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #c6dbc0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

#newsletter-form input:focus {
    border-color: #1d3b1d;
}

.small-note {
    font-size: 0.8rem;
    color: #798e74;
}

/* Footer */
.site-footer {
    background: #202f1e;
    color: #d6e2d1;
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col .logo a,
.footer-col .logo {
    color: #eaf3e3;
    font-size: 2rem;
    text-decoration: none;
}

.footer-col p {
    margin: 1rem 0 1.5rem;
    color: #b9cfb0;
}

.social {
    display: flex;
    gap: 1.2rem;
}

.social a {
    color: #d2e2c8;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.social a:hover {
    color: white;
}

.footer-col h5 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ddebd3;
    font-family: 'Cormorant Garamond', serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    text-decoration: none;
    color: #b7cdad;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #3f5b3a;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #98aa90;
}

/* Cart Popup */
.cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.cart-popup.active {
    visibility: visible;
    opacity: 1;
}

.cart-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.cart-popup__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fcfaf7;
    padding: 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
}

.cart-popup.active .cart-popup__content {
    transform: translateX(0);
}

.cart-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #edf3e7;
}

.cart-popup__header h3 {
    font-size: 1.8rem;
}

.cart-popup__close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: #2c3e2b;
    transition: color 0.2s;
}

.cart-popup__close:hover {
    color: #8faf7a;
}

.cart-popup__items {
    margin-bottom: 2rem;
    min-height: 200px;
}

.cart-popup__empty {
    text-align: center;
    padding: 3rem 0;
}

.cart-popup__empty i {
    font-size: 4rem;
    color: #d9e3d2;
    margin-bottom: 1rem;
}

.cart-popup__empty p {
    color: #6a8263;
    margin-bottom: 1.5rem;
}

.cart-popup__item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #edf3e7;
}

.cart-item__image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__details {
    flex: 1;
}

.cart-item__title {
    font-weight: 600;
    color: #1d3b1d;
    margin-bottom: 0.3rem;
}

.cart-item__price {
    color: #6a8263;
    font-size: 0.9rem;
}

.cart-item__remove {
    color: #c44f4f;
    background: none;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 0.3rem;
}

.cart-item__remove:hover {
    text-decoration: underline;
}

.cart-popup__footer {
    border-top: 2px solid #edf3e7;
    padding-top: 1.5rem;
}

.cart-popup__subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1d3b1d;
}

/* Shop Page Styles */
.shop-section {
    padding: 3rem 0 5rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.shop-filters {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #edf3e7;
    height: fit-content;
}

.filter-widget {
    margin-bottom: 2rem;
}

.filter-widget h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.filter-widget ul {
    list-style: none;
}

.filter-widget li {
    margin-bottom: 0.7rem;
}

.filter-widget a {
    text-decoration: none;
    color: #4e6547;
    transition: color 0.2s;
}

.filter-widget a:hover,
.filter-widget a.active {
    color: #1d3b1d;
    font-weight: 500;
}

.price-filter {
    margin-top: 1rem;
}

.price-range {
    width: 100%;
    margin-bottom: 0.5rem;
}

.price-values {
    display: flex;
    justify-content: space-between;
    color: #4e6547;
    font-size: 0.9rem;
}

.checkbox-label {
    display: block;
    margin-bottom: 0.7rem;
    color: #4e6547;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 0.5rem;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-count {
    color: #4e6547;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #d9e3d2;
    border-radius: 30px;
    background: white;
    color: #2c3e2b;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #2c4a2b;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e9efe3;
}

.pagination a:hover,
.pagination a.active {
    background: #1d3b1d;
    color: white;
    border-color: #1d3b1d;
}

/* About Page Styles */
.about-story {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-shape {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 30px 40px -20px rgba(62, 95, 58, 0.5);
}

.about-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: 3rem;
    margin: 1rem 0 1.5rem;
}

.about-text {
    color: #4a5f48;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1d3b1d;
}

.stat-label {
    color: #6a8263;
    font-size: 0.9rem;
}

.values-section {
    padding: 5rem 0;
    background: #f9f6f0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #edf3e7;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -15px rgba(29, 59, 29, 0.2);
}

.value-card i {
    font-size: 3rem;
    color: #8faf7a;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4e6547;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #d9e3d2;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: #8faf7a;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #4e6547;
    max-width: 250px;
    margin: 0 auto;
}

/* Journal Page Styles */
.journal-featured {
    padding: 3rem 0;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #edf3e7;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.05);
}

.featured-post__image {
    height: 400px;
    overflow: hidden;
}

.featured-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-post:hover .featured-post__image img {
    transform: scale(1.05);
}

.featured-post__content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-category {
    display: inline-block;
    background: #e4efe0;
    color: #1d3b1d;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-post__content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: #4a5f48;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: #8faf7a;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.journal-grid-section {
    padding: 3rem 0 5rem;
}

.journal-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.7rem 1.8rem;
    border: 1px solid #d9e3d2;
    background: white;
    border-radius: 40px;
    color: #2c3e2b;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.category-btn:hover,
.category-btn.active {
    background: #1d3b1d;
    color: white;
    border-color: #1d3b1d;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.journal-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #edf3e7;
    transition: transform 0.3s, box-shadow 0.3s;
}

.journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -15px rgba(29, 59, 29, 0.15);
}

.journal-card__image {
    height: 200px;
    overflow: hidden;
}

.journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.journal-card:hover .journal-card__image img {
    transform: scale(1.05);
}

.journal-card__content {
    padding: 2rem;
}

.journal-card__content h3 {
    font-size: 1.6rem;
    margin: 0.5rem 0 1rem;
}

.read-more {
    color: #1d3b1d;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.read-more i {
    transition: transform 0.2s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: #4a5f48;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.info-items {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.8rem;
    color: #8faf7a;
    width: 40px;
}

.info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #4a5f48;
}

.info-item a {
    color: #4a5f48;
    text-decoration: none;
    transition: color 0.2s;
}

.info-item a:hover {
    color: #1d3b1d;
}

.info-note {
    font-size: 0.9rem;
    color: #8faf7a;
    margin-top: 0.3rem;
}

.social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #e4efe0;
    color: #1d3b1d;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.2s;
}

.social-icons a:hover {
    background: #1d3b1d;
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 40px;
    border: 1px solid #edf3e7;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.05);
}

.contact-form-container h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1d3b1d;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d9e3d2;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8faf7a;
}

.map-section {
    padding: 2rem 0 5rem;
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
}

.faq-preview {
    padding: 3rem 0 5rem;
    background: #f9f6f0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #edf3e7;
}

.faq-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5f48;
}

/* Navigation Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 99;
}

.nav-overlay.active {
    display: block;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .mobile-header-left {
        display: flex;
        align-items: center;
        order: 1;
    }

    .logo {
        order: 2;
        margin: 0;
    }

    .header-icons {
        order: 3;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-right: 1rem;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: #1d3b1d;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        padding: 5rem 2rem 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.3rem;
        display: block;
        padding: 0.5rem 0;
    }

    .hero-grid,
    .about-grid,
    .featured-post,
    .contact-grid,
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .category-grid,
    .journal-grid,
    .values-grid,
    .team-grid,
    .faq-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    #newsletter-form {
        flex-direction: column;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .menu-toggle,
    .mobile-header-left,
    .nav-overlay {
        display: none;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid,
    .journal-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }
}