/* Color Scheme Variables */
:root {
    --primary-color: #5f7332;
    --primary-light: #9bb46b;
    --primary-dark: #33451f;
    --secondary-color: #b88732;
    --accent-color: #765735;
    --success-color: #4f8a3d;
    --warning-color: #d49a2a;
    --error-color: #b24b34;
    --text-primary: #22311f;
    --text-secondary: #65715e;
    --bg-primary: #fffefa;
    --bg-secondary: #eef5e6;
    --border-color: #d7e1c9;
    --seed-gold: #d1a43c;
    --soil-color: #6f5133;
    --leaf-muted: #7d9655;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background:
        linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(248, 251, 242, 0.98)),
        repeating-linear-gradient(90deg, rgba(95, 115, 50, 0.04) 0 1px, transparent 1px 42px);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: linear-gradient(180deg, #ffffff, #f8fbf1);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: 0 18px 36px rgba(51, 69, 31, 0.13);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--seed-gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background:
        linear-gradient(180deg, var(--bg-secondary), #f7faef),
        repeating-linear-gradient(0deg, rgba(118, 87, 53, 0.05) 0 2px, transparent 2px 28px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background:
        linear-gradient(135deg, rgba(51, 69, 31, 0.96), rgba(95, 115, 50, 0.95)),
        repeating-linear-gradient(90deg, rgba(209, 164, 60, 0.18) 0 1px, transparent 1px 36px);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Header Styles */

.header-minimal {
    background: rgba(255, 254, 250, 0.96);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 6px 22px rgba(51, 69, 31, 0.06);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-minimal {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-minimal {
    display: flex;
    gap: 2.5rem;
}

.nav-minimal a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: var(--primary-color);
}

.header-minimal-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-minimal {
    color: var(--text-secondary);
    font-weight: 500;
}

.cart-minimal {
    padding: 0.75rem 1.5rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.cart-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(51, 69, 31, 0.2);
    background: var(--primary-color);
}

/* Hero Styles */

.hero-split-cards {
    padding: 5rem 0;
    background:
        linear-gradient(135deg, rgba(255, 254, 250, 0.96) 0%, rgba(238, 245, 230, 0.96) 100%),
        repeating-linear-gradient(90deg, rgba(95, 115, 50, 0.08) 0 1px, transparent 1px 54px);
    position: relative;
    overflow: hidden;
}

.hero-split-cards::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2rem;
    height: 145px;
    background: repeating-linear-gradient(-8deg, rgba(111, 81, 51, 0.13) 0 2px, transparent 2px 30px);
    opacity: 0.8;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(95, 115, 50, 0.24);
    border-radius: 999px;
    background: rgba(255, 254, 250, 0.8);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--seed-gold);
    box-shadow: 12px 0 0 var(--primary-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.seed-packet {
    grid-column: 1 / -1;
    min-height: 210px;
    padding: 2rem;
    border-radius: 8px;
    color: white;
    background:
        linear-gradient(145deg, rgba(51, 69, 31, 0.96), rgba(95, 115, 50, 0.92)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 28px);
    box-shadow: 0 24px 48px rgba(51, 69, 31, 0.22);
    position: relative;
    overflow: hidden;
}

.packet-kicker {
    display: block;
    margin-bottom: 2.25rem;
    color: var(--seed-gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seed-packet strong {
    display: block;
    max-width: 12rem;
    font-size: 2rem;
    line-height: 1.05;
}

.seed-packet p {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
}

.seed-dots {
    position: absolute;
    right: 2rem;
    bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 18px);
    gap: 0.7rem 0.9rem;
}

.seed-dots span {
    width: 18px;
    height: 26px;
    border-radius: 60% 40% 55% 45%;
    background: linear-gradient(135deg, #ead28d, var(--seed-gold));
    transform: rotate(28deg);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12);
}

.hero-card {
    background: rgba(255, 254, 250, 0.94);
    border: 1px solid rgba(95, 115, 50, 0.14);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(51, 69, 31, 0.1);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(51, 69, 31, 0.16);
}

.hero-card:nth-child(1),
.hero-card:nth-child(3) {
    transform: translateY(2rem);
}

.seed-visual .hero-card:nth-child(2),
.seed-visual .hero-card:nth-child(4) {
    transform: translateY(1.25rem);
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--seed-gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hero-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-minimal {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: center;
    }

    .header-minimal-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-minimal {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.95rem;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .hero-card:nth-child(1),
    .hero-card:nth-child(3),
    .seed-visual .hero-card:nth-child(2),
    .seed-visual .hero-card:nth-child(4) {
        transform: none;
    }

    .seed-packet {
        min-height: 230px;
    }

    .seed-dots {
        right: 1.25rem;
        grid-template-columns: repeat(4, 16px);
        gap: 0.55rem 0.75rem;
    }
}

/* Footer Styles */

.footer-modern {
    background:
        linear-gradient(180deg, #22311f, #172216),
        repeating-linear-gradient(90deg, rgba(209, 164, 60, 0.08) 0 1px, transparent 1px 36px);
    color: white;
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-modern-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-card a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s ease;
}

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

.btn-footer {
    padding: 0.75rem 1.5rem;
    background: var(--seed-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 164, 60, 0.28);
}

.footer-modern-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Card Styles */

.card-minimal {
    background: var(--bg-primary);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(95, 115, 50, 0.12);
    overflow: hidden;
}

.card-minimal:hover {
    box-shadow: 0 14px 32px rgba(51, 69, 31, 0.12);
}

.minimal-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.minimal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background:
        linear-gradient(135deg, #f2f6e7, #fffefa),
        repeating-linear-gradient(45deg, rgba(95, 115, 50, 0.07) 0 2px, transparent 2px 18px);
}

.minimal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.minimal-content {
    padding: 1.25rem;
}

.minimal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.minimal-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.minimal-add {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.minimal-add:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--secondary-color);
}

.card-minimal .product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.card-minimal .product-card-stars { display: flex; gap: 1px; color: var(--accent-color, #fbbf24); }
.card-minimal .product-card-stars svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.card-minimal .product-card-stars .empty { color: var(--border-color, #d1d5db); }
.card-minimal .product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }
.card-minimal .product-card-rating span { font-size: 12px; color: var(--text-secondary); }

/* Button Styles */

/* Base button styles */
.btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 8px;
}

.btn-primary, .btn-gradient {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    box-shadow: 0 6px 14px rgba(51, 69, 31, 0.18);
}

.btn-primary:hover, .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(51, 69, 31, 0.22);
    background: linear-gradient(135deg, var(--primary-color), var(--seed-gold));
}

.btn-primary:active, .btn-gradient:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: rgba(255, 254, 250, 0.72);
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.add-to-cart, .product-btn, .cart-button {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Item Page Styles */
.item-premium {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.premium-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.premium-gallery {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.premium-gallery img,
.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.premium-info {
    padding: 30px 0;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.premium-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.premium-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.premium-rating .stars {
    color: #fbbf24;
    font-size: 18px;
}

.premium-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.item-premium .price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.premium-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.premium-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-premium-primary,
.btn-premium-secondary {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-premium-primary {
    background: var(--primary-color);
    color: white;
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-premium-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-premium-secondary:hover {
    background: var(--primary-color);
    color: white;
}

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

    .premium-actions {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}
