/*
Theme Name: Garden Den
Description: A beautiful gardening WordPress theme with plant care guides, seasonal planting calendar, and botanical knowledge. Perfect for garden centers, landscapers, and plant enthusiasts.
Author: Garden Developers
Version: 4.3
Text Domain: garden
Domain Path: /languages
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Tags: gardening, plants, nature, green, responsive, block-patterns, wide-blocks, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F5F3F0;
}

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

a {
    color: #6B7A62;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #A4B494;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    color: #333333;
}

/* ========================================
   LAYOUT CONTAINERS
======================================== */

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER STYLES - Disabled (using main.css version)  
======================================== */

/* Header styles moved to main.css for better responsive design and mobile menu support
.site-header {
    background-color: #6B7A62;
    color: #F5F3F0;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    margin-left: 20px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F5F3F0;
    margin: 0;
}

.site-title a {
    color: #F5F3F0;
}

.main-navigation {
    margin-right: 20px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 2rem;
}

.main-navigation a {
    color: #F5F3F0;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a:hover {
    color: #A4B494;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #A4B494;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}
*/

/* ========================================
   HERO SECTION - Disabled (using main.css version)
======================================== */

/* Hero section styles moved to main.css for better responsive design
.hero-section {
    background-color: #F5F3F0;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 50%;
    padding: 2rem;
    text-align: center;
}

.hero-image {
    max-width: 50%;
    padding: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.4;
}
*/

/* ========================================
   FEATURED SECTIONS
======================================== */

.featured-guides-section {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 3rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: #f8f9f6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-content {
    padding: 1.5rem;
}

.guide-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.guide-excerpt {
    font-size: 0.9rem;
    color: #666;
}

/* ========================================
   SEASONAL CALENDAR
======================================== */

.seasonal-calendar-section {
    background-color: #F5F3F0;
    padding: 5rem 0;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.season-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.season-icon {
    font-size: 3rem;
    color: #6B7A62;
    margin-bottom: 1rem;
}

.season-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.season-tasks {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.season-tasks li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.season-tasks li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #A4B494;
}

.season-link {
    display: inline-block;
    background-color: #6B7A62;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.season-link:hover {
    background-color: #A4B494;
}

/* ========================================
   OTHER STYLES (from previous versions)
======================================== */

.error-404 {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.error-illustration {
    margin-bottom: 3rem;
}

.garden-pot {
    position: relative;
    width: 120px;
    height: 80px;
    background: #8B7355;
    border-radius: 0 0 50px 50px;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.wilted-plant {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.plant-stem {
    width: 4px;
    height: 60px;
    background: #9B8B5A;
    margin: 0 auto;
    border-radius: 2px;
}

.plant-leaves {
    position: relative;
    top: -20px;
}

.leaf {
    width: 20px;
    height: 30px;
    background: #A0A571;
    border-radius: 50% 0;
    position: absolute;
    opacity: 0.7;
    transform-origin: bottom center;
}

.leaf-1 {
    left: -25px;
    top: -10px;
    transform: rotate(-30deg);
}

.leaf-2 {
    left: 10px;
    top: -15px;
    transform: rotate(30deg);
}

.leaf-3 {
    left: -5px;
    top: -5px;
    transform: rotate(-10deg);
}

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: #8B9A7C;
    opacity: 0.3;
    margin: 1rem 0;
}

.page-title {
    font-size: 2.5rem;
    color: #2C3E2D;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-actions {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.search-section h3,
.navigation-section h3 {
    color: #2C3E2D;
    margin-bottom: 1rem;
}

.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #6B7A62;
    color: #F5F3F0;
}

.btn-primary:hover {
    background-color: #A4B494;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 122, 98, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #6B7A62;
    border-color: #6B7A62;
}

.btn-secondary:hover {
    background-color: #6B7A62;
    color: #F5F3F0;
    transform: translateY(-2px);
}

.popular-posts h3 {
    color: #2C3E2D;
    margin-bottom: 1.5rem;
}

.popular-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.popular-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.popular-post:hover {
    transform: translateY(-5px);
}

.popular-post .post-thumbnail img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.popular-post .post-info {
    padding: 1rem;
}

.popular-post h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.popular-post h4 a {
    color: #2C3E2D;
    text-decoration: none;
}

.popular-post h4 a:hover {
    color: #8B9A7C;
}

.popular-post .post-date {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .popular-posts-grid {
        grid-template-columns: 1fr;
    }
}

.comments-area {
    margin-top: 40px;
    padding: 30px;
    background: #f5f3f0;
    border-radius: 8px;
}

.comments-title {
    color: #4a5a3a;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8b9a7c;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.comment-meta {
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 15px;
}

.comment-form {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.garden-btn {
    background: #8b9a7c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.garden-btn:hover {
    background: #6d7a5f;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #8b9a7c;
}

.required {
    color: #e74c3c;
}

.garden-search-form {
    background: #f5f3f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.search-field-wrapper {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: #8b9a7c;
}

.search-submit {
    padding: 12px 20px;
    background: #8b9a7c;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #6d7a5f;
}

.search-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #4a5a3a;
}

.filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 0.9rem;
}

.filter-group select:focus {
    outline: none;
    border-color: #8b9a7c;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .search-filters {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f5f3f0;
    border-radius: 8px;
    margin: 40px 0;
}

.no-results-icon {
    font-size: 4rem;
    color: #8b9a7c;
    margin-bottom: 20px;
}

.no-results .page-title {
    color: #4a5a3a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.no-results .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-results p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.search-again {
    margin: 30px 0;
}

.suggested-actions h3,
.helpful-links h3 {
    color: #4a5a3a;
    margin-bottom: 15px;
}

.category-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-link {
    display: inline-block;
    padding: 10px 20px;
    background: #8b9a7c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.category-link:hover {
    background: #6d7a5f;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
}

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

.helpful-links a {
    color: #8b9a7c;
    text-decoration: none;
    font-size: 1.1rem;
}

.helpful-links a:hover {
    text-decoration: underline;
}

/* ========================================
   SINGLE POST LAYOUT STYLES
======================================== */

.site-main {
    background-color: #F5F3F0;
    min-height: 100vh;
    padding: 40px 0;
}

.single .site-main .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    align-items: start;
}

.content-area {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 50px 60px;
    position: relative;
    width: 100%;
}

.single-post {
    max-width: 100%;
}

.entry-header {
    margin-bottom: 30px;
    border-bottom: 3px solid #6B7A62;
    padding-bottom: 20px;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.entry-meta i {
    color: #6B7A62;
}

.featured-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #6B7A62;
    margin: 30px 0 15px 0;
    font-family: 'Lora', serif;
}

.entry-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #A4B494;
    padding-bottom: 10px;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content h4 {
    font-size: 1.3rem;
}

.entry-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 25px;
    margin-top: 40px;
}

.tag-links {
    margin-bottom: 25px;
}

.tag-links i {
    color: #6B7A62;
    margin-right: 8px;
}

.tag-links a {
    display: inline-block;
    background: #A4B494;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: background 0.3s ease;
}

.tag-links a:hover {
    background: #6B7A62;
}

.post-navigation {
    position: relative;
    height: 80px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-navigation a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #6B7A62;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 122, 98, 0.2);
    width: 60px;
    height: 60px;
    justify-content: center;
    overflow: visible;
}

.post-navigation a::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C3E2D;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 122, 98, 0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 10;
}

.post-navigation a:hover {
    background: rgba(107, 122, 98, 0.8);
    color: white;
    border-color: rgba(107, 122, 98, 0.4);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(107, 122, 98, 0.3);
}

.post-navigation a:hover::before {
    opacity: 1;
}

.post-navigation .nav-previous {
    order: 1;
}

.post-navigation .nav-previous::before {
    right: 80px;
    left: auto;
}

.post-navigation .nav-previous:hover::before {
    right: 90px;
}

.post-navigation .nav-next {
    order: 2;
}

.post-navigation .nav-next::before {
    left: 80px;
    right: auto;
}

.post-navigation .nav-next:hover::before {
    left: 90px;
}

/* Content for arrows */
.post-navigation .nav-previous::after {
    content: '←';
}

.post-navigation .nav-next::after {
    content: '→';
}

/* Sidebar Styles */
.widget-area {
    padding: 20px;
}

.widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6B7A62;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #A4B494;
    font-family: 'Lora', serif;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #6B7A62;
}

/* Custom Garden Widget Styles */
.seasonal-calendar-widget .seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.seasonal-calendar-widget .season-card {
    background: #F8F6F3;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease;
}

.seasonal-calendar-widget .season-card:hover {
    background: #A4B494;
    color: white;
}

.seasonal-calendar-widget .season-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: inherit;
}

.seasonal-calendar-widget .season-card p {
    font-size: 0.85rem;
    margin: 0;
    color: inherit;
}

.featured-plants-widget .featured-plant-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.featured-plants-widget .featured-plant-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.featured-plants-widget .featured-plant-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.featured-plants-widget .featured-plant-item h4 a {
    color: #6B7A62;
    text-decoration: none;
    font-weight: 600;
}

.featured-plants-widget .featured-plant-item h4 a:hover {
    color: #A4B494;
}

.featured-plants-widget .featured-plant-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.seasonal-buttons-widget .seasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.seasonal-buttons-widget .season-card {
    background: #F8F6F3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.seasonal-buttons-widget .season-card:hover {
    background: white;
    border-color: #A4B494;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.seasonal-buttons-widget .season-icon {
    font-size: 1.5rem;
    color: #6B7A62;
    margin-bottom: 10px;
}

.seasonal-buttons-widget .season-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.seasonal-buttons-widget .season-tasks {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.seasonal-buttons-widget .season-tasks li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    padding-left: 0;
    border-bottom: none;
}

.seasonal-buttons-widget .season-link {
    display: inline-block;
    background: #6B7A62;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.seasonal-buttons-widget .season-link:hover {
    background: #A4B494;
    color: white;
}

/* Widget Responsive Design */
@media (max-width: 768px) {
    .widget {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .widget-title {
        font-size: 1.2rem;
    }
    
    .seasonal-calendar-widget .seasons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .seasonal-buttons-widget .season-card {
        padding: 15px;
    }
}

/* Comments Area */
.comments-area {
    margin-top: 50px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .single .site-main .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .content-area {
        padding: 30px 25px;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-navigation {
        margin: 40px 0;
        max-width: 300px;
    }
    
    .post-navigation a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .post-navigation a::before {
        font-size: 0.8rem;
        padding: 8px 12px;
        max-width: 180px;
    }
    
    .post-navigation .nav-previous::before {
        right: 60px;
    }
    
    .post-navigation .nav-previous:hover::before {
        right: 70px;
    }
    
    .post-navigation .nav-next::before {
        left: 60px;
    }
    
    .post-navigation .nav-next:hover::before {
        left: 70px;
    }
}

/* ========================================
   CATEGORY & ARCHIVE PAGE STYLES
======================================== */

.archive-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 3px solid #6B7A62;
}

.archive-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.archive-title i {
    color: #6B7A62;
    font-size: 1.8rem;
}

.category-description,
.archive-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    color: #888;
}

.category-count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

/* Posts Grid for Categories */
.posts-grid.category-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-card.category-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.post-card.category-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #A4B494;
}

.category-post .post-thumbnail {
    position: relative;
    overflow: hidden;
}

.category-post .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-format {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(107, 122, 98, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.category-post .post-content {
    padding: 25px;
}

.category-post .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #888;
}

.category-post .post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-post .post-meta i {
    color: #6B7A62;
}

.category-post .post-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.category-post .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-post .post-title a:hover {
    color: #6B7A62;
}

.category-post .post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-post .post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.category-post .read-more {
    background: #6B7A62;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.category-post .read-more:hover {
    background: #A4B494;
    transform: translateX(3px);
}

.post-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #888;
}

.comments-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Related Categories Section */
.related-categories {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.related-categories h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6B7A62;
    margin-bottom: 25px;
    font-family: 'Lora', serif;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: #F8F6F3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    background: white;
    border-color: #A4B494;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.category-card a {
    text-decoration: none;
    color: inherit;
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.category-card .category-count {
    font-size: 0.85rem;
    color: #888;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.no-posts h2 {
    font-size: 1.8rem;
    color: #6B7A62;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
}

.no-posts p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.no-posts .button {
    background: #6B7A62;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.no-posts .button:hover {
    background: #A4B494;
}

/* Responsive Design for Category Pages */
@media (max-width: 768px) {
    .archive-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .posts-grid.category-posts {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .category-post .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .category-post .post-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-post .post-content {
        padding: 20px;
    }
}
