:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --primary-light: #4a8f4d;
    --secondary-color: #8fbc8f;
    --accent-color: #cd853f;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #dc3545;
    --success-color: #28a745;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-decline {
    background-color: var(--border-color);
    color: var(--text-color);
}

.btn-decline:hover {
    background-color: #ccc;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.feature-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: var(--text-light);
}

.about-services {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.about-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.service-description {
    max-width: 900px;
    margin: 0 auto;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.products {
    padding: 80px 0;
    background-color: var(--white);
}

.products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.product-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.product-card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.product-card p {
    margin: 0 20px;
    color: var(--text-light);
}

.product-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 20px;
}

.product-card .btn-secondary {
    margin: 20px;
    width: calc(100% - 40px);
}

.product-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-large img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3, .product-description h4 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.product-description ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-description li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.product-actions button {
    flex: 1;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: var(--shadow-hover);
    z-index: 1001;
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cart-section {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 60vh;
}

.cart-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty svg {
    margin: 0 auto 20px;
    color: var(--text-light);
}

.cart-empty p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 10px;
    align-items: center;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cart-item-info .price {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 700;
}

.cart-item-remove {
    background-color: var(--error-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background-color: #c82333;
}

.cart-summary {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
    margin-top: 10px;
}

.cart-summary .btn-primary {
    width: 100%;
    margin-top: 20px;
}

.cart-summary .btn-secondary {
    width: 100%;
    margin-top: 10px;
}

.checkout-section {
    padding: 80px 0;
    background-color: var(--white);
}

.checkout-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form h2, .order-summary h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.order-summary {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-totals {
    margin-top: 20px;
}

.success-section {
    padding: 100px 0;
    background-color: var(--white);
    min-height: 60vh;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.success-message {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.success-info {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-success {
    background-color: var(--success-color);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background-color: var(--white);
}

.about-story h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.about-story p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 10px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-card p {
    line-height: 1.8;
    color: var(--text-color);
}

.team-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 20px 15px;
}

.team-bio {
    margin: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.blog-post {
    padding: 80px 0;
    background-color: var(--white);
}

.post-header {
    max-width: 900px;
    margin: 0 auto 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

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

.post-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.post-excerpt {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.post-featured-image {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.post-featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.post-content {
    max-width: 900px;
    margin: 0 auto;
}

.post-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.post-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-color);
}

.post-content ul {
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-cta {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 60px 0 40px;
}

.post-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-cta p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.post-navigation {
    text-align: center;
    margin-top: 60px;
}

footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
}

.registration-number {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 15px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .features-grid, .products-grid {
        grid-template-columns: 1fr;
    }

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

    .cart-content, .checkout-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision, .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .success-actions {
        flex-direction: column;
    }
}