/* General Styles */
:root {
    --primary-color: #4CAF50; /* Salal Green */
    --primary-light: #8BC34A; /* Lighter Salal */
    --secondary-color: #2196F3; /* Blue */
    --secondary-light: #64B5F6; /* Lighter Blue */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #F8F8F8;
    --background-light: #FFFFFF;
    --background-gray: #F0F2F5;
    --border-color: #E0E0E0;
    --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 6px 12px rgba(0, 0, 0, 0.15);
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-gray);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.6rem;
    font-weight: 500;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

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

section {
    padding: 4rem 0;
    background-color: var(--background-light);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

section:nth-of-type(even) {
    background-color: var(--background-gray);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--background-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    box-shadow: var(--shadow-medium);
}

/* Cookie Banner */
.cookie-banner {
    position: sticky;
    top: 0;
    width: auto;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
}

.cookie-banner .cookie-link {
    color: var(--secondary-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}

.cookie-banner .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 5px;
}

/* Header */
.header {
    background-color: var(--background-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

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

        &:hover {
            text-decoration: none;
        }

    span {
        margin-inline: 10px;
 
    }
}

.logo {
    height: 40px;
    width: auto;
}

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.1s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.cart-button {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
}

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

.cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* About Us Section */
.about-us-section {
    padding: 5rem 0;
    text-align: center;
}

.about-us-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Product Grids */
.grid-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card, .product-item {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

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

.product-card img, .product-item img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.product-card h3, .product-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.product-card .product-price, .product-item .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-card .product-description, .product-item .product-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.add-to-cart-btn {
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-light);
    padding: 5rem 0;
    color: var(--text-light);


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

.testimonials-section h2 {
    color: var(--text-light);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
    font-size: 0.95rem;
    opacity: 0.9;
}

.testimonial-author i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0;
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand, .footer-links, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4, .footer-social h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.1s ease-in-out;
}

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

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.1s ease-in-out;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Modals */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* 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 */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--background-light);
    margin: auto;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.1s ease-in-out;
}

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

.close-button {
    color: var(--text-medium);
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
}

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

.modal-content h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Cart Modal Specifics */
.cart-modal-content {
    max-width: 650px;
}

.cart-items-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 10px; /* For scrollbar */
}

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

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

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
    flex-shrink: 0;
}

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

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

.cart-item-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cart-item-controls select {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    min-width: 60px;
}

.cart-item-controls .remove-item-btn {
    background: none;
    border: none;
    color: #E53935; /* Red for delete */
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-item-controls .remove-item-btn:hover {
    color: #C62828;
}

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

.cart-summary {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: right;
}

.cart-summary p {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.checkout-button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-medium);
    font-style: italic;
    padding: 2rem;
}

.delivery-payment-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-color);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.delivery-payment-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Checkout Form Modal */
.checkout-modal-content h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

.form-group textarea {
    resize: vertical;
}

.checkout-modal-content .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

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

.order-confirmation-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-medium);
}

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

.order-confirmation-content #order-id {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Cookie Settings Modal */
.cookie-settings-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: var(--background-gray);
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.cookie-category input[type="checkbox"] {
    margin-right: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary-color);
}

.cookie-category label {
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.cookie-category label .info-tooltip {
    margin-left: 0.5rem;
    color: var(--text-medium);
    cursor: help;
}

.cookie-category label .info-tooltip i {
    font-size: 1rem;
}

#save-cookie-settings {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.9rem;
    font-size: 1rem;
}

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

    .nav-container {
        justify-content: center;
        position: relative;
    }

    .cart-icon-wrapper {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .footer-brand, .footer-links, .footer-social {
        min-width: unset;
        width: 100%;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-links {
        align-items: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-around;
    }

    .cookie-banner .btn {
        flex-grow: 1;
    }
}

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

    h2 {
        font-size: 1.6rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 6rem 0;
    }

    .product-card, .product-item {
        padding: 1rem;
    }

    .product-card img, .product-item img {
        height: 150px;
    }

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

    .product-card .product-price, .product-item .product-price {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .cart-item {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.8rem;
    }

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

    .cart-item-details {
        flex-basis: calc(100% - 70px);
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }

    .cart-item-subtotal {
        text-align: left;
        width: 100%;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .close-button {
        font-size: 1.8rem;
        top: 0.8rem;
        right: 1rem;
    }
}

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

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .testimonials-section .grid-container,
    .grid-container {
        grid-template-columns: 1fr;
    }

    

    .cookie-banner p {
        font-size: 0.8rem;
    }

    .cookie-banner .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

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

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

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

    .cart-summary #cart-total {
        font-size: 1.4rem;
    }
}
/* Styles for the secure policy grid container */
.securePolicyGrid {
    padding-top: 3rem; /* Top padding for the section */
    padding-bottom: 3rem; /* Bottom padding for the section */
    padding-left: 2rem; /* Left padding for the section */
    padding-right: 2rem; /* Right padding for the section */
    max-width: 900px; /* Maximum width for content within the grid */
    margin: 0 auto; /* Center the grid horizontally */
    background-color: var(--background-light); /* Background color for the policy section */
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: var(--shadow-light); /* Subtle shadow for depth */
}

/* Heading 1 styles within securePolicyGrid */
.securePolicyGrid h1 {
    font-size: 2.2rem; /* Slightly smaller than general H1 */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for readability */
    margin-top: 2.5rem; /* Top margin for spacing */
    margin-bottom: 1.5rem; /* Bottom margin for spacing */
    color: var(--text-dark); /* Dark text color */
}

/* Heading 2 styles within securePolicyGrid */
.securePolicyGrid h2 {
    font-size: 1.8rem; /* Font size for H2 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3; /* Line height for readability */
    margin-top: 2rem; /* Top margin for spacing */
    margin-bottom: 1.2rem; /* Bottom margin for spacing */
    color: var(--text-dark); /* Dark text color */
}

/* Heading 3 styles within securePolicyGrid */
.securePolicyGrid h3 {
    font-size: 1.5rem; /* Font size for H3 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.4; /* Line height for readability */
    margin-top: 1.8rem; /* Top margin for spacing */
    margin-bottom: 1rem; /* Bottom margin for spacing */
    color: var(--text-dark); /* Dark text color */
}

/* Heading 4 styles within securePolicyGrid */
.securePolicyGrid h4 {
    font-size: 1.25rem; /* Font size for H4 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.5; /* Line height for readability */
    margin-top: 1.5rem; /* Top margin for spacing */
    margin-bottom: 0.8rem; /* Bottom margin for spacing */
    color: var(--text-dark); /* Dark text color */
}

/* Heading 5 styles within securePolicyGrid */
.securePolicyGrid h5 {
    font-size: 1.1rem; /* Font size for H5 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.5; /* Line height for readability */
    margin-top: 1.2rem; /* Top margin for spacing */
    margin-bottom: 0.6rem; /* Bottom margin for spacing */
    color: var(--text-dark); /* Dark text color */
}

/* Paragraph styles within securePolicyGrid */
.securePolicyGrid p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Increased line height for better readability */
    margin-bottom: 1.2rem; /* Spacing between paragraphs */
    color: var(--text-medium); /* Medium text color for body copy */
}

/* Unordered list styles within securePolicyGrid */
.securePolicyGrid ul {
    list-style: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Top margin for list */
    margin-bottom: 1.5rem; /* Bottom margin for list */
    padding-left: 1.5rem; /* Indentation for list items */
    color: var(--text-medium); /* Text color for list */
}

/* List item styles within securePolicyGrid */
.securePolicyGrid li {
    font-size: 1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.7rem; /* Spacing between list items */
    color: var(--text-medium); /* Text color for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .securePolicyGrid {
        padding-left: 1.5rem; /* Adjust side padding for smaller screens */
        padding-right: 1.5rem; /* Adjust side padding for smaller screens */
        padding-top: 2rem; /* Adjust top padding */
        padding-bottom: 2rem; /* Adjust bottom padding */
    }

    .securePolicyGrid h1 {
        font-size: 1.8rem; /* Smaller H1 on mobile */
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .securePolicyGrid h2 {
        font-size: 1.5rem; /* Smaller H2 on mobile */
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .securePolicyGrid h3 {
        font-size: 1.3rem; /* Smaller H3 on mobile */
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .securePolicyGrid h4 {
        font-size: 1.1rem; /* Smaller H4 on mobile */
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .securePolicyGrid h5 {
        font-size: 1rem; /* Smaller H5 on mobile */
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .securePolicyGrid p,
    .securePolicyGrid ul,
    .securePolicyGrid li {
        font-size: 0.95rem; /* Slightly smaller body text on mobile */
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .securePolicyGrid {
        padding-left: 1rem; /* Further adjust side padding for very small screens */
        padding-right: 1rem; /* Further adjust side padding for very small screens */
    }
}


.hidden {
    display: none;
}