/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warm-ivory) 0%, #e8e0d0 100%);
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--cedar-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--cedar-green);
    color: var(--warm-ivory);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.hero-image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 350px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

/* Featured Categories */
.categories {
    padding: 80px 0;
    background: var(--warm-ivory);
    text-align: center;
}

.categories h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 20px;
}

.categories p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 15px;
}

.category-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Product Showcase */
.products {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 20px;
}

.products p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--persimmon-red);
}

/* Curation Process */
.curation {
    padding: 80px 0;
    background: var(--warm-ivory);
    text-align: center;
}

.curation-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.curation-text {
    flex: 1;
}

.curation-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 30px;
}

.curation-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.process-list {
    list-style: none;
    margin: 0;
}

.process-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.process-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--persimmon-red);
    font-weight: bold;
}

.curation-image {
    flex: 0 0 350px;
}

.curation-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

/* Budget Tiers */
.budget-tiers {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.budget-tiers h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 20px;
}

.budget-tiers p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 50px;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tier-card.featured {
    border-color: var(--persimmon-red);
    transform: scale(1.05);
}

.tier-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 15px;
}

.tier-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--persimmon-red);
    margin-bottom: 20px;
}

.tier-features {
    list-style: none;
    margin-bottom: 30px;
}

.tier-features li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cedar-green);
    font-weight: bold;
}

.tier-btn {
    background: var(--cedar-green);
    color: var(--warm-ivory);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.tier-btn:hover {
    background: #1a3a0a;
}

.tier-card.featured .tier-btn {
    background: var(--persimmon-red);
}

.tier-card.featured .tier-btn:hover {
    background: #c44a2f;
}

/* Local Artisan Spotlight */
.artisan-spotlight {
    padding: 80px 0;
    background: var(--warm-ivory);
    text-align: center;
}

.artisan-spotlight h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 50px;
}

.artisan-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.artisan-image {
    flex: 0 0 350px;
}

.artisan-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(229, 91, 60, 0.2);
}

.artisan-info {
    flex: 1;
}

.artisan-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 15px;
}

.artisan-info .specialty {
    font-size: 18px;
    color: var(--persimmon-red);
    font-weight: 500;
    margin-bottom: 20px;
}

.artisan-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.artisan-link {
    display: inline-block;
    background: var(--persimmon-red);
    color: var(--warm-ivory);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.artisan-link:hover {
    background: #c44a2f;
}

/* Gift Services */
.services {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 20px;
}

.services p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--cedar-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--warm-ivory);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Seasonal Collections */
.seasonal {
    padding: 80px 0;
    background: var(--warm-ivory);
    text-align: center;
}

.seasonal h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 20px;
}

.seasonal p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 50px;
}

.seasonal-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.collection-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.collection-card.winter-active {
    border: 2px solid var(--persimmon-red);
}

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

.collection-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cedar-green);
    padding: 20px 20px 10px;
}

.collection-card p {
    font-size: 14px;
    color: var(--text-medium);
    padding: 0 20px 20px;
    line-height: 1.5;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: var(--cedar-green);
    color: var(--warm-ivory);
    text-align: center;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background: var(--persimmon-red);
    color: var(--warm-ivory);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #c44a2f;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--cedar-green);
    text-align: center;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--cedar-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--warm-ivory);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-card a {
    color: var(--persimmon-red);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--cedar-green);
    color: var(--warm-ivory);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
    max-width: 400px;
}

.footer-brand .logo-container {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--warm-ivory);
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--warm-ivory);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-image {
        flex: none;
    }
    
    .hero-img {
        width: 100%;
        max-width: 300px;
        height: 240px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .curation-content {
        flex-direction: column;
        gap: 40px;
    }

    .curation-image {
        flex: none;
    }

    .tier-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .artisan-content {
        flex-direction: column;
        gap: 30px;
    }

    .artisan-image {
        flex: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seasonal-content {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .feature-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .category-card,
    .product-card {
        padding: 20px;
    }

    .tier-card {
        padding: 20px;
    }

    .service-card {
        padding: 20px;
    }
}