@import url("https://ebay-products.tiiny.site/fmw.css");
:root {
    --logo-height: 100px;
    --logo-gap: 40px;
    --animation-speed: 40s;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #bfbfbf;
}

#menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.menu-wrapper {
    display: block;
}

.section-title {
    background-color: #000;
    color: #fff;
    padding: 10px;
    font-weight: bold;
}

.product-img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: calc(100% - 44px);
    width: 100%;
    border: 1px solid;
    flex-direction: column;
}

.inner-img {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.product-img img {
    width: 100%;
}

.product-description {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: calc(100% - 44px);
    border: 1px solid;
    flex-direction: column;
}

.img-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 48px;
    background: white;
    color: black;
    cursor: pointer;
    border: 1px solid black;
    min-width: 220px;
    border-radius: 1px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.img-button:hover {
    background: black;
    color: white;
    border: 1px solid black;
}

.navbar-toggler-icon {
    width: 1em !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none !important;
}

.brand-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 0px;
    background: #f7f6f6;
    border: 3px dotted #e8e8e8;
}

.marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    gap: 30px;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: var(--logo-gap);
    min-width: 100%;
    flex-shrink: 0;
    animation: marquee-scroll var(--animation-speed) linear infinite;
    will-change: transform;
}

.marquee:hover .marquee-group {
    animation-play-state: paused;
}

.marquee-group a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.marquee-group img {
    height: var(--logo-height);
    width: auto;
    max-width: 180px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 150px;
    border: 1px solid #efefef;
}

.marquee-group a:hover img {
    transform: scale(1.05);
    opacity: 1;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 991px) {
    .menu-btn {
        display: block;
    }

    .menu-wrapper {
        display: none;
        background: #fff;
        border: 1px solid #ddd;
    }

    #menu-toggle:checked+.menu-btn+.menu-wrapper {
        display: block;
    }

    ul.navbar-nav {
        background: #fff;
        border: 1px solid #ddd;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: #000;
        text-align: center;
    }

    .navbar-dark .navbar-nav .nav-link:hover {
        background: #ececec;
        color: #101010;
    }

    .img-button {
        padding: 6px 20px;
        min-width: 180px;
    }
}

@media (min-width: 992px) {
    .menu-btn {
        display: none;
    }

    .menu-wrapper {
        display: block !important;
    }
}

@media (max-width: 768px) {
    :root {
        --logo-height: 100px;
        --logo-gap: 24px;
    }
}