body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

* {
    box-sizing: border-box;
}

.grid-container {
    max-width: 1200px;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4CAF50;
    border-radius: 2px;
}

/* Header */
.header-area {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 40px;
    margin-right: 10px;
}

.site-title {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    white-space: nowrap;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-navigation .menu a {
    color: #555;
    font-weight: 600;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.main-navigation .menu a:hover {
    color: #4CAF50;
}

.cart-icon-wrapper {
    margin-left: 1rem;
}

.cart-button {
    border-color: #4CAF50;
    color: #4CAF50;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cart-button:hover {
    background-color: #4CAF50;
    color: #ffffff;
}

.cart-count {
    margin-left: 0.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    min-width: 25px;
    text-align: center;
}

/* Off-canvas menu for mobile */
.off-canvas {
    background-color: #2c3e50;
    color: #ffffff;
}

.off-canvas .vertical.menu li a {
    color: #ffffff;
    padding: 1rem;
    text-decoration: none;
}

.off-canvas .vertical.menu li a:hover {
    background-color: #4CAF50;
}

.menu-icon {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.menu-icon::after {
    background: #000;
    -webkit-box-shadow: 0 7px 0 #000, 0 14px 0 #000;
    box-shadow: 0 7px 0 #000, 0 14px 0 #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.hero-button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
}

.hero-button:hover {
    background-color: #45a049;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-section p {
    margin-bottom: 1rem;
}

/* Advantages Section */
.advantages-section {
    padding: 4rem 0;
    background-color: #f0fdf0;
}

.advantage-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.advantage-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.product-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.product-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.product-card .button {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    text-decoration: none;
}

.product-card .button:hover {
    background-color: #34495e;
}

.product-card .button.hollow {
    background-color: transparent;
    color: #2c3e50;
    border: 1px solid #2c3e50;
}

.product-card .button.hollow:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

/* Product Detail Modal */
#productDetailModal {
    max-height: 90vh;
    overflow-y: auto;
}

#modal-main-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-gallery-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-gallery-thumbnails img:hover, .product-gallery-thumbnails img.active {
    border-color: #4CAF50;
}

#modal-product-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #2c3e50;
}

.modal-product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

#modal-product-description p {
    margin-bottom: 1rem;
}

#modal-product-description ul {
    margin-left: 1.25rem;
    list-style-type: disc;
}

.product-characteristics h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-characteristics ul {
    list-style: none;
    margin-left: 0;
}

.product-characteristics ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-characteristics ul li::before {
    content: '\f26e'; /* Bootstrap Icons dot */
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.add-to-cart-btn {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
}

.add-to-cart-btn:hover {
    background-color: #45a049;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #4CAF50;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-card .rating i {
    color: #f39c12;
    margin-right: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-top: 1rem;
    flex-grow: 1;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #777;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #eaf7ea;
}

.contact-list {
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.3rem;
}

.contact-list li a {
    color: #333;
    text-decoration: none;
}

.contact-list li a:hover {
    color: #4CAF50;
}

.email-break-all {
    word-break: break-all;
}

/* Footer */
.footer-area {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0;
    font-size: 0.9rem;
}

.site-logo-footer {
    height: 35px;
    margin-right: 10px;
}

.site-title-footer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.footer-area .logo-link {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
}

.footer-links.menu li a {
    color: #f0f0f0;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
}

.footer-links{
    flex-direction: column;
}

.footer-links.menu li a:hover {
    color: #4CAF50;
}

.copy-text {
    margin-top: 1rem;
    color: #ccc;
}

/* Cart Modal */
#cartModal {
    max-height: 90vh;
    overflow-y: auto;
}

#cartModal h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.cart-item-price {
    font-weight: 600;
    color: #4CAF50;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-actions select {
    margin: 0 1rem;
    padding: 0.4rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 60px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
}

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

.cart-subtotal {
    font-weight: 600;
    color: #333;
    margin-left: auto;
    min-width: 80px;
    text-align: right;
}

.cart-summary {
    border-top: 2px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.cart-summary p {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: right;
    margin-bottom: 1rem;
}

#cart-total-price {
    color: #4CAF50;
    font-size: 1.5rem;
}

.delivery-payment-info {
    font-size: 0.9rem;
    color: #777;
    text-align: right;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

#checkout-button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
}

#checkout-button:hover {
    background-color: #45a049;
}

#checkout-form-container {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

#checkout-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

#checkout-form input[type="text"], 
#checkout-form input[type="email"], 
#checkout-form input[type="tel"], 
#checkout-form select, 
#checkout-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    height: 50px;
}

#checkout-form textarea {
    min-height: 100px;
    resize: vertical;
}

#checkout-form button[type="submit"] {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
}

#checkout-form button[type="submit"]:hover {
    background-color: #34495e;
}

/* Order Confirmation Modal */
#orderConfirmationModal .success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

#orderConfirmationModal h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

#orderConfirmationModal p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#orderConfirmationModal strong {
    color: #2c3e50;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1.5rem;
    max-width: 350px;
    z-index: 2000;
    display: none; /* Hidden by default, shown by JS */
}

.cookie-banner-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #555;
}

.cookie-banner-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-buttons button {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    white-space: nowrap;
    text-decoration: none;
}

#accept-all-cookies {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
}

#accept-all-cookies:hover {
    background-color: #45a049;
}

#configure-cookies {
    background-color: transparent;
    color: #2c3e50;
    border: 1px solid #2c3e50;
}

#configure-cookies:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

/* Cookie Settings Modal */
#cookieSettingsModal {
    z-index: 2001; /* Higher than banner */
}

#cookieSettingsModal h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

#cookieSettingsModal p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

#cookieSettingsModal ul {
    margin-bottom: 1.5rem;
}

#cookieSettingsModal ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

#cookieSettingsModal input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

#cookieSettingsModal label {
    font-weight: normal;
    color: #333;
    margin-bottom: 0;
}

#cookieSettingsModal label small {
    color: #777;
    font-size: 0.85rem;
}

#save-cookie-selection {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
}

#save-cookie-selection:hover {
    background-color: #34495e;
}

/* Foundation overrides */
.reveal {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 2rem;
}

.reveal .close-button {
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #888;
}

.reveal .close-button:hover {
    color: #333;
}

/* Responsive Adjustments */
@media screen and (max-width: 1100px) {
    .main-navigation {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
        min-height: 450px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-image {
        height: 300px;
        margin-bottom: 1.5rem;
    }

    .footer-area .menu {
        flex-direction: column;
    }

    .footer-links.menu li {
        margin-bottom: 0.5rem;
    }

    .footer-links.menu li a {
        padding: 0.25rem 0;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-details, .cart-item-actions {
        flex-basis: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .cart-item-actions select {
        margin: 0 0.5rem 0 0;
    }

    .cart-subtotal {
        margin-top: 0.5rem;
        text-align: left;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .cookie-buttons {
        display: flex;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .site-title {
        font-size: 1.5rem;
    }
}
/* Base styles for the legal content container */
.legalFoldBox {
    margin-top: 2.5rem; /* Spacing above the legal content box */
    padding-left: 2rem; /* Inner left padding for content */
    padding-right: 2rem; /* Inner right padding for content */
    /* Optional: Add max-width and margin: 0 auto; for centering on larger screens if needed */
}

/* Heading styles within the legal content box */
.legalFoldBox h1 {
    font-size: 1.2rem; /* Relatively large, but not excessively so */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2rem; /* Space above heading */
    margin-bottom: 1rem; /* Space below heading */
    color: #333; /* Dark grey color for better readability */
}

.legalFoldBox h2 {
    font-size: 1.2rem; /* Medium-large heading size */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legalFoldBox h3 {
    font-size: 1.2rem; /* Medium heading size */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #333;
}

.legalFoldBox h4 {
    font-size: 1.2rem; /* Smaller heading size */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.legalFoldBox h5 {
    font-size: 1.1rem; /* Smallest heading size, often used for sub-headings */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    color: #333;
}

/* Paragraph styles within the legal content box */
.legalFoldBox p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #555; /* Slightly lighter color for body text */
}

/* Unordered list styles within the legal content box */
.legalFoldBox ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.5em; /* Indentation for bullet points */
    color: #555;
}

/* List item styles within the legal content box */
.legalFoldBox li {
    font-size: 1rem; /* Standard list item font size */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 0.5em; /* Space between list items */
    color: #555;
}

.product-characteristics ul li {
    position: relative;
    padding-left: 22px;
    list-style: none;
}

.product-characteristics ul li::before {
    content: "\F26E"; 
    font-family: "bootstrap-icons"; 
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 2px;
    color: #4CAF50;
}

.off-canvas.is-transition-push {
    z-index: 9994;
}

.position-right{
    top: 85px;
}


