/* General Styles */
:root {
    --primary-color: #6a82fb; /* A vibrant, yet soft blue */
    --secondary-color: #8c9eff; /* Lighter shade of primary */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f0f4f8; /* Very light grey-blue */
    --background-card: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-strong: rgba(0, 0, 0, 0.2);
    --font-family-main: 'Poppins', sans-serif;
    --header-height: 80px;
    --menu-item-padding-x: 18px;
}

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

body {
    font-family: var(--font-family-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.section-spacing {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 3.2em;
    line-height: 1.1;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
}

h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
}

.cta-button, .button-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 16px var(--shadow-strong);
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

/* Header */
.header {
    background-color: var(--background-card);
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav .nav-list {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 30px;
}

.main-nav .nav-list li {
    margin: 0;
}

.main-nav .nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background-card);
    min-width: 160px;
    box-shadow: 0px 8px 16px var(--shadow-medium);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 0;
    top: calc(100% + 10px); /* Position below the dropbtn */
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px var(--menu-item-padding-x);
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.dropdown-content ul { margin: 0; padding: 0; }
.dropdown-content li { list-style: none; }

.dropdown:hover .dropdown-content {
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1em;
    padding: 5px;
    border-radius: 5px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.cart-icon-button:hover {
    color: var(--primary-color);
    background-color: var(--background-light);
}

.cart-icon-button .material-symbols-outlined {
    font-size: 28px;
}

.cart-count {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.8em;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    text-align: center;
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 28px;
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    display: none; /* Hidden by default */
    justify-content: flex-end; /* Align content to the right */
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-content {
    width: 280px;
    background-color: var(--background-card);
    padding: 20px;
    box-shadow: -4px 0 15px var(--shadow-medium);
    position: relative;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-dark);
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.mobile-nav-list {
    margin-top: 60px;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    font-size: 1.3em;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    padding: 10px 0;
}

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

.mobile-dropdown .mobile-dropbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    font-size: 1.1em;
    padding: 8px 0;
    color: #555;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #e6f0ff 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 50%;
}

.hero-left h1 {
    margin-bottom: 25px;
    font-size: 3.5em;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 35px;
}

.hero-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Promotional Banner */
.promo-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    margin-top: -40px; /* Overlap with hero for a smoother transition */
    position: relative;
    z-index: 1;
}

.promo-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.promo-image-side {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-strong);
}

.promo-content-side {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.promo-content-side h2 {
    color: var(--text-light);
    font-size: 2.8em;
    margin-bottom: 25px;
    text-align: left;
}

.promo-content-side p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.promo-button {
    background-color: var(--text-light);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
}

.promo-button:hover {
    background-color: #f0f0f0;
    color: var(--secondary-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* About Us Section */
.about-us-section {
    background-color: var(--background-card);
    padding: 80px 0;
    box-shadow: 0 5px 20px var(--shadow-light);
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1000px;
}

.about-us-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-us-section h3 {
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-us-section ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.about-us-section ul li {
    margin-bottom: 10px;
    color: #555;
}

/* Product Categories */
.products-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px var(--shadow-light);
    display: block;
}

.gallery-item figcaption {
    text-align: center;
    font-size: 0.95em;
    color: #555;
    margin-top: 10px;
}

.section-title {
    font-size: 3em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.product-category {
    margin-bottom: 60px;
}

.product-category h3 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.product-card {
    background-color: var(--background-card);
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@media (max-width: 768px) {
    .product-card {
        width: 100% !important;
    }
}

.product-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8;
    border-bottom: 1px solid var(--border-color);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-details-container {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-options {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-options label {
    font-weight: 500;
    color: #555;
}

.product-size-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--background-card);
    font-size: 1em;
    color: var(--text-dark);
    cursor: pointer;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-light);
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 15px var(--shadow-medium);
}

/* Delivery Information */
.delivery-info {
    background-color: var(--background-card);
    padding: 60px 0;
    box-shadow: 0 5px 20px var(--shadow-light);
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1200px;
}

.delivery-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.delivery-item {
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
}

.delivery-item .material-symbols-outlined {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.delivery-item p {
    font-size: 1.1em;
    font-weight: 500;
    color: #555;
}

/* Trust Badges & Guarantee */
.guarantee-section {
    background-color: var(--background-light);
    padding: 60px 0;
}

.guarantee-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge {
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--background-card);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px var(--shadow-light);
}

.trust-badge .material-symbols-outlined {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-badge p {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-dark);
}

/* Secure Checkout & Payment Methods */
.payment-methods-ribbon {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

.payment-content h3 {
    color: var(--text-light);
    font-size: 2.2em;
    margin-bottom: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    background: rgba(240, 248, 255, 0.623);
    padding: 20px;
    border-radius: 15px;
}

.payment-icon {
    height: 80px; /* Adjust size as needed */
}


/* Footer */
.footer {
    background-color: #2c3e50; /* Darker background for footer */
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
    font-size: 0.95em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.3em;
    margin-bottom: 25px;
}

.footer-column ul {
    padding: 0;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-company-info .footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.6em;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.footer-company-info .footer-logo img {
    height: 35px;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Make logo white */
}

.footer-company-info p {
    margin-bottom: 20px;
}


.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact-info .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-color);
}

.footer-partners-certifications {
    background-color: #22303c; /* Slightly darker than main footer */
    padding: 30px 0;
}

.partners-cert-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cert-logos, .delivery-partner-logos {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.cert-logo, .delivery-partner-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.cert-logo, .delivery-partner-logo:nth-child(3) {
    filter: drop-shadow(0 0 4px rgba(232, 232, 227, 0.4));
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: var(--background-card);
    box-shadow: -5px 0 15px var(--shadow-medium);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.8em;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-dark);
    cursor: pointer;
}

.cart-items-container {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-cart-message {
    text-align: center;
    color: #777;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.cart-item-details h5 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: var(--text-dark);
}

.cart-item-details p {
    margin: 0;
    font-size: 0.9em;
    color: #777;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-quantity {
    width: 60px;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.remove-item-btn:hover {
    background-color: #ffe6e6;
}

.cart-item-subtotal {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.cart-summary {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: #f8f8f8;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.checkout-button {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-medium);
}

.checkout-button:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 15px var(--shadow-strong);
}

.cart-delivery-payment-info {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

.cart-delivery-payment-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

/* Modals */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--background-card);
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-strong);
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-modal {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover, .close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

/* Checkout Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-dark);
    background-color: #fcfcfc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 130, 251, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.checkout-form .cta-button {
    width: 100%;
    margin-top: 20px;
}

/* Order Confirmation Modal */
.confirmation-message {
    text-align: center;
    padding: 20px;
}

.confirmation-message .check-icon {
    font-size: 70px;
    color: #4CAF50;
    margin-bottom: 20px;
    display: block;
}

.confirmation-message h2 {
    color: #4CAF50;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.confirmation-message p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.confirmation-message strong {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--background-card);
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    padding: 25px;
    max-width: 380px;
    z-index: 4000;
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 15px;
}

.cookie-banner.active {
    display: flex;
}

.cookie-banner h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
    text-align: left;
    color: var(--primary-color);
}

.cookie-banner p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
}

.cookie-banner p a {
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-buttons .cta-button, .cookie-buttons .button-secondary {
    padding: 10px 18px;
    font-size: 0.95em;
    flex-grow: 1;
}

/* Cookie Settings Modal */
.cookie-settings-modal .modal-content {
    max-width: 550px;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category h4 {
    margin: 0;
    font-size: 1.15em;
    color: var(--text-dark);
}

.cookie-category p {
    font-size: 0.9em;
    color: #777;
    margin: 5px 0 0 0;
    max-width: 70%;
}

.cookie-category > div {
    flex-grow: 1;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
    margin-left: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

input:disabled + .slider {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

input:disabled + .slider:before {
    background-color: #f0f0f0;
}

.cookie-settings-modal .cta-button {
    width: 100%;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid, .promo-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right, .promo-image-side, .promo-content-side {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 2.8em;
    }

    .hero-left p {
        font-size: 1.1em;
    }

    .promo-content-side h2 {
        font-size: 2.2em;
        text-align: center;
    }

    .promo-content-side p {
        font-size: 1em;
    }

    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .header-actions {
        gap: 10px;
    }

    .cart-icon-button {
        padding: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .partners-cert-content {
        flex-direction: column;
        text-align: center;
    }

    .cert-logos, .delivery-partner-logos {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.6em;
    }

    .section-spacing {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0;
    }

    .promo-banner {
        padding: 60px 0;
    }

    

    .delivery-grid, .guarantee-grid {
        flex-direction: column;
        align-items: center;
    }

    .delivery-item, .trust-badge {
        max-width: 100%;
        width: 100%;
        flex: 1 1 auto;
    }

    .cart-sidebar {
        width: 100%;
    }

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

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

    .cookie-buttons .cta-button, .cookie-buttons .button-secondary {
        width: 100%;
    }

    .cookie-category {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-category h4 {
        width: 100%;
        margin-bottom: 5px;
    }

    .cookie-category p {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .switch {
        margin-left: 0;
    }

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

    .footer-contact-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.5em;
    }

    .logo img {
        height: 30px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero-left p {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .promo-content-side h2 {
        font-size: 1.8em;
    }

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

    .cart-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .cart-item-details, .cart-item-controls {
        width: 100%;
        justify-content: center;
    }

    .cart-item-image {
        margin-bottom: 10px;
    }

    .cart-item-subtotal {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .modal-content {
        padding: 20px;
    }

    .close-modal {
        font-size: 24px;
        top: 10px;
        right: 15px;
    }

    .modal-content h2 {
        font-size: 1.8em;
    }

    

    .footer-company-info .footer-logo {
        justify-content: center;
    }

    .footer-social-media {
        justify-content: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .partners-cert-content {
        padding: 0 15px;
    }
}
/* Styles for consent tunnel grid and its typography */
.consentTunnelGrid {
    padding: 40px 20px; /* Top/bottom padding and left/right padding */
    max-width: 800px; /* Maximum width for better readability */
    margin: 0 auto; /* Center the grid horizontally */
    line-height: 1.6; /* Standard line height for readability */
    color: var(--text-dark); /* Inherit main text color */
}

.consentTunnelGrid h1 {
    font-size: 1.8em; /* Moderately sized heading 1 */
    font-weight: 600; /* Semi-bold for emphasis */
    margin-bottom: 20px; /* Space below the heading */
    color: var(--primary-color); /* Use primary color for headings */
}

.consentTunnelGrid h2 {
    font-size: 1.6em; /* Moderately sized heading 2 */
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.consentTunnelGrid h3 {
    font-size: 1.4em; /* Moderately sized heading 3 */
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.consentTunnelGrid h4 {
    font-size: 1.2em; /* Moderately sized heading 4 */
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.consentTunnelGrid h5 {
    font-size: 1.1em; /* Moderately sized heading 5 */
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.consentTunnelGrid p {
    font-size: 1em; /* Standard paragraph font size */
    margin-bottom: 15px; /* Space below paragraphs */
    color: #555; /* Slightly softer text color */
}

.consentTunnelGrid ul {
    list-style: disc; /* Default disc list style */
    padding-left: 25px; /* Indent list items */
    margin-bottom: 15px; /* Space below the list */
}

.consentTunnelGrid ul li {
    font-size: 1em; /* Standard list item font size */
    margin-bottom: 8px; /* Space between list items */
    color: #555; /* Slightly softer text color */
}

/* Responsive adjustments for consentTunnelGrid */
@media (max-width: 768px) {
    .consentTunnelGrid {
        padding: 30px 15px; /* Adjust padding for smaller screens */
    }

    .consentTunnelGrid h1 {
        font-size: 1.6em;
        margin-bottom: 18px;
    }

    .consentTunnelGrid h2 {
        font-size: 1.4em;
        margin-bottom: 16px;
    }

    .consentTunnelGrid h3 {
        font-size: 1.2em;
        margin-bottom: 14px;
    }

    .consentTunnelGrid h4 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .consentTunnelGrid h5 {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .consentTunnelGrid p,
    .consentTunnelGrid ul li {
        font-size: 0.95em; /* Slightly smaller text for better fit */
    }
}
