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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

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

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #2c5f2d;
    color: #fff;
    border: 2px solid #2c5f2d;
}

.btn-primary:hover {
    background: #1a3a1b;
    border-color: #1a3a1b;
}

.btn-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Product Grid */
.product-grid, .post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card, .post-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image img, .post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info, .post-info {
    padding: 1.5rem;
}

.product-card h3, .post-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0.5rem 0;
}

.summary {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c5f2d;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Product Single Page */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-images .main-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.image-gallery img {
    cursor: pointer;
    border-radius: 4px;
}

.product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.product-description {
    margin: 2rem 0;
    line-height: 1.8;
}

.product-cta {
    margin-top: 2rem;
}

/* Blog Posts */
.post-list-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.post-thumbnail img {
    border-radius: 8px;
    height: 200px;
    object-fit: cover;
}

.post-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #2c5f2d;
    font-weight: 600;
}

/* Blog Single */
.blog-post, .page-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.post-header, .page-header {
    margin-bottom: 2rem;
}

.post-header h1, .page-header h1 {
    font-size: 3rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.post-featured-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.post-content, .page-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content h2, .page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.post-content p, .page-content p {
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: #2c5f2d;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-grid, .post-grid {
        grid-template-columns: 1fr;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .post-list-item {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
