/* Global Styles and Reset */
:root {
    --primary-color: #4CAF50; /* Green */
    --primary-dark: #388E3C;
    --secondary-color: #607D8B; /* Blue Grey */
    --accent-color: #FFC107; /* Amber */
    --text-color-dark: #333;
    --text-color-light: #f4f4f4;
    --background-light: #ffffff;
    --background-dark: #f0f4f8;
    --border-color: #ddd;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --font-family-primary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1em;
}

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

a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-medium);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
}

.btn-secondary:hover {
    background-color: #455A64;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-medium);
}

.btn-tertiary {
    background-color: var(--background-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    box-shadow: 0 2px 4px var(--shadow-light);
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0;
    font-size: 1rem;
    text-decoration: underline;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Header */
.main-header {
    background-color: var(--background-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px var(--shadow-light);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color-dark);
    text-decoration: none;
}

.site-logo {
    height: 40px;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

.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%;
}

.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    display: inline-block;
}

.cart-icon {
    font-size: 1.8rem;
    color: var(--text-color-dark);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--text-color-dark);
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color-dark);
    transition: all 0.3s ease;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-content {
    background-color: var(--background-light);
    width: 280px;
    max-width: 80%;
    height: 100%;
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: -5px 0 15px var(--shadow-medium);
    overflow-y: auto;
}

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

.close-mobile-nav {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--text-color-dark);
    cursor: pointer;
    padding: 0;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 50px;
}

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

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

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
    overflow: hidden;
}

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

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

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 1;
    gap: 30px;
}

.hero-text {
    flex: 2;
    max-width: 60%;
}

.hero-text h1 {
    font-size: 3.8rem;
    margin-bottom: 0.3em;
    line-height: 1.1;
    color: var(--text-color-light);
}

.hero-slogan {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.hero-vector-image {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-vector-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background-color: var(--background-dark);
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 1em auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Product Showcase Section */
.product-showcase-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.product-card {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
}

/* Why Choose Us Section */
.features-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

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

.feature-item {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

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

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* How Clients Choose Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.step-item {
    background-color: var(--background-dark);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(76, 175, 80, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color-dark);
    position: relative;
    z-index: 1;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 1;
}

/* Size Guide Section */
.size-guide-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    border-radius: 10px;
}

.size-guide-section table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-light);
    min-width: 600px; /* Ensure table is wide enough for content */
}

.size-guide-section th, .size-guide-section td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.size-guide-section thead {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.size-guide-section th {
    font-weight: 600;
}

.size-guide-section tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.size-guide-section tbody tr:hover {
    background-color: #e0e0e0;
}

.size-guide-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

/* Delivery and Exchange Section */
.delivery-exchange-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.delivery-block {
    background-color: var(--background-dark);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    height: 100%;
}

.delivery-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.delivery-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

.email-link:hover {
    color: var(--primary-dark);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url(visuals/pics/cta-shoes-background.png) no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: var(--text-color-light);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Footer */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--text-color-light);
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-brand, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-brand .logo-link {
    margin-bottom: 15px;
}

.footer-brand .site-logo {
    filter: brightness(0) invert(1);
}

.footer-brand .site-name {
    color: var(--text-color-light);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a, .footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--text-color-light);
}

.footer-contact .email-link {
    color: rgba(255, 255, 255, 0.8);
}

/* Modals (General) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-color-dark);
}

.modal-content h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* Cookie Consent Modal Specific */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 3000;

    /* центрування вмісту */
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.cookie-modal-overlay.open {
    display: flex;
}

.cookie-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 550px;
    width: 90%;
}.cookie-modal-content {
    max-width: 550px;
    text-align: center;
}

.cookie-modal-content h3 {
    font-size: 1.6rem;
}

.cookie-modal-content p {
    margin-bottom: 25px;
}

.cookie-categories {
    text-align: left;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background-dark);
}

.cookie-category-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-item:last-child {
    margin-bottom: 0;
}

.cookie-category-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-category-item label {
    font-weight: 500;
    color: var(--text-color-dark);
}

.cookie-category-item span {
    font-size: 0.9rem;
    color: #777;
    margin-left: 5px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cookie-buttons .btn {
    flex-grow: 1;
    min-width: 120px;
}

/* Shopping Cart Modal Specific */
.cart-modal-content {
    max-width: 700px;
    padding: 25px;
}

.cart-items-container {
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.empty-cart-message {
    text-align: center;
    color: #777;
    font-style: italic;
    padding: 20px;
}

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

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

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

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

.cart-item-details h4 {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin-bottom: 5px;
}

.cart-item-details p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

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

.cart-item-controls select {
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.remove-item-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.3s ease;
}

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

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

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

.cart-summary p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.cart-summary #cart-total {
    font-size: 1.5rem;
    color: var(--primary-color);
}

#proceed-to-checkout {
    padding: 12px 25px;
    font-size: 1.1rem;
}

.cart-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

/* Checkout Form Modal Specific */
.checkout-modal-content {
    max-width: 650px;
}

.checkout-modal-content h3 {
    text-align: center;
}

#checkout-form .form-group {
    margin-bottom: 15px;
}

#checkout-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color-dark);
}

#checkout-form input[type="text"],
#checkout-form input[type="email"],
#checkout-form input[type="tel"],
#checkout-form select,
#checkout-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-color-dark);
    background-color: var(--background-dark);
}

#checkout-form input:focus, #checkout-form select:focus, #checkout-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

#checkout-form textarea {
    resize: vertical;
}

#checkout-form .btn-primary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Order Confirmation Modal Specific */
.order-confirmation-content {
    text-align: center;
}

.order-confirmation-content h3 {
    color: var(--primary-color);
}

.order-confirmation-content p {
    margin-bottom: 10px;
}

.order-confirmation-content strong {
    color: var(--primary-dark);
}

#continue-shopping {
    margin-top: 25px;
}

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

    .cart-icon-wrapper {
        margin-left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
    }

    .main-header .cart-icon-wrapper {
        order: 2;
    }

    .main-header .logo-link {
        order: 1;
    }

    .main-header .burger-menu {
        order: 3;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-slogan {
        font-size: 1.3rem;
    }

    .hero-vector-image {
        max-width: 70%;
        justify-content: center;
    }

    .product-grid, .features-grid, .steps-grid, .delivery-content {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand, .footer-links, .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer-links ul {
        padding-left: 0;
    }

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

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .site-name {
        font-size: 1.5rem;
    }

    .hero-section {
        height: auto;
        min-height: 450px;
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .hero-vector-image {
        display: none;
    }

    .product-grid, .features-grid, .steps-grid, .delivery-content {
        grid-template-columns: 1fr;
    }

    .product-card, .feature-item, .step-item, .delivery-block {
        margin-bottom: 20px;
    }

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

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

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

    .cookie-buttons .btn {
        width: 100%;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-details h4 {
        font-size: 1rem;
    }

    .cart-item-details p {
        font-size: 0.85rem;
    }

    .cart-item-controls select {
        padding: 3px 5px;
        font-size: 0.9rem;
    }

    .remove-item-btn {
        font-size: 1rem;
    }

    .cart-item-subtotal {
        font-size: 1rem;
    }

    .cart-summary p {
        font-size: 1.1rem;
    }

    .cart-summary #cart-total {
        font-size: 1.2rem;
    }

    #proceed-to-checkout {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .site-name {
        font-size: 1.25rem;
    }

    .site-logo {
        height: 35px;
    }

    .cart-icon {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

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

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .feature-item h3, .step-item h3, .delivery-block h3 {
        font-size: 1.2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .main-footer .footer-brand, .main-footer .footer-links, .main-footer .footer-contact {
        min-width: unset;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .close-modal {
        font-size: 1.8rem;
    }
}
/*
 * Trust Pillar Unit Base Styles
 * Provides padding for the container and a bottom margin for separation.
 */
.trustPillarUnit {
    padding: 20px 15px; /* Top/bottom 20px, left/right 15px */
    margin-bottom: 20px; /* Space below the unit */
    /* You might want to add max-width, background-color, border, etc. here if needed */
}

/*
 * Heading Styles within Trust Pillar Unit
 * Provides hierarchical font sizes, weights, and margins for h1-h5.
 * Font sizes are kept moderate as per request.
 */
.trustPillarUnit h1 {
    font-size: 28px; /* Moderate size for main heading */
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.trustPillarUnit h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.trustPillarUnit h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.trustPillarUnit h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.trustPillarUnit h5 {
    font-size: 16px; /* Similar to body text, but bold */
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 6px;
    line-height: 1.5;
}

/*
 * Paragraph Styles within Trust Pillar Unit
 * Sets a standard font size, line height, and bottom margin for readability.
 */
.trustPillarUnit p {
    font-size: 16px; /* Standard body text size */
    line-height: 1.6; /* Good for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/*
 * Unordered List Styles within Trust Pillar Unit
 * Provides basic styling for lists, including indentation and spacing.
 */
.trustPillarUnit ul {
    list-style-type: disc; /* Default disc bullets */
    margin-top: 10px;
    margin-bottom: 15px;
    margin-left: 20px; /* Indent the list */
    padding-left: 0; /* Ensure no extra padding from browser defaults */
}

/*
 * List Item Styles within Trust Pillar Unit
 * Adds spacing between individual list items for better readability.
 */
.trustPillarUnit li {
    font-size: 16px; /* Ensure list items match body text size */
    line-height: 1.5; /* Good for readability within lists */
    margin-bottom: 5px; /* Space between list items */
}
