body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Redesign */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__logo img {
    width: 40px;
}




.header__nav-container ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap for a tighter look */
    margin: 0;
    padding: 0;
}

.header__logo {
    text-align: center;
}

.header a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s, background-color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.header a:hover {
    color: #000;
    background-color: #f5f5f5;
}

.content-over-media {
    position: relative;
    height: 70vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content-over-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-over-media__content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 5px;
}

.h1, .h2, .h6 {
    margin: 0;
}

.h1 {
    font-size: 3rem;
    font-weight: 700;
}

.h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-spacing {
    padding: 5rem 0;
}

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

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card__figure {
    position: relative;
}

.product-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-card__info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    color: #555;
    font-weight: 500;
}

.footer {
    background: #fff;
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer__block .h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.footer__block li {
    margin-bottom: 0.5rem;
}

.footer__block li i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.payment-methods img {
    height: 25px;
    background: #fff;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #eee;
}


.footer__block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__block a {
    color: #555;
    text-decoration: none;
}




.footer__bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #888;
}

/* Responsive Styles */
/* Hamburger Menu */
.header__hamburger {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    cursor: pointer;
}

.header__nav-container {
    display: flex;
    flex: 1;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .header {
        justify-content: space-between;
        align-items: center;
    }

    .header__nav-container {
        display: none; /* Hide nav container on mobile */
        position: absolute;
        z-index: 999;
        top: 60px; /* Adjust based on header height */
        left: 270px;
        right: 0;
        background-color: #fff;
        padding: 1rem;
        border-bottom: 1px solid #eee;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header__nav-container.is-active {
        display: block; /* Show when active */
    }

    .header__primary-nav ul, .header__secondary-nav ul {
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        width: 99%;
    }

    .header__hamburger {
        display: block; /* Show hamburger icon */
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Feature Section with Image */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-grid__image img {
    width: 100%;
    border-radius: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list .fa-check {
    color: #28a745;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem; /* Reduce padding on mobile */
    }

    .header {
        padding: 1rem; /* Reduce padding on mobile */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

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

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

    .footer__block ul {
        align-items: center;
    }

    .payment-methods {
        justify-content: center;
    }
}

/* Scrolling Gallery Section */
.gallery-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-scroll-wrapper:before, .gallery-scroll-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.gallery-scroll-wrapper:before {
    left: 0;
    background: linear-gradient(to right, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%);
}

.gallery-scroll-wrapper:after {
    right: 0;
    background: linear-gradient(to left, rgba(249,249,249,1) 0%, rgba(249,249,249,0) 100%);
}

.gallery-container {
    display: flex;
    gap: 1rem;
    /* Animation properties */
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.gallery-container a {
    flex-shrink: 0;
}

.gallery-container img {
    width: 150px; /* Increased size slightly */
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-container img:hover {
    transform: scale(1.05);
}
