/* ===== HOME BANNER ===== */
#home {
    display: flex;
    align-items: center;
    background: url(../img/home-page-desktop.webp) no-repeat;
    background-position: center bottom;
    background-size: cover;
    height: 100vh;
    transition: all .4s ease-in-out;
}
#home h1,
#home p {
    color: var(--color-warm-of-white);
}
#home .banner-button {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
#home .banner-button .btn-about {
    background-color: var(--color-british-racing-green);
    color: var(--color-warm-of-white);
    transition: all .3s ease-in-out;
}
#home .banner-button .btn-collection {
    border-color: var(--color-warm-of-white);
    color: var(--color-warm-of-white);
    transition: all .3s ease-in-out;
}





/* ===== DEALS OF THE DAY ===== */
.deal-of-the-day {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
}
.deal-of-the-day .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
}
.deal-of-the-day .text-content h2 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--color-warm-of-white);
    font-weight: 400;
}
.deal-of-the-day .text-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-warm-of-white);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.deal-of-the-day .text-content h1 span {
    top: 5px;
    position: relative;
    display: inline-block;
    animation: bounce .4s ease infinite alternate;
}
.deal-of-the-day .text-content h1 span:nth-child(2) {
    animation-delay: .1s;
}
.deal-of-the-day .text-content h1 span:nth-child(3) {
    animation-delay: .2s;
}
.deal-of-the-day .text-content h1 span:nth-child(5) {
    animation-delay: .3s;
}
.deal-of-the-day .text-content h1 span:nth-child(6) {
    animation-delay: .4s;
}
.deal-of-the-day .text-content h1 span:nth-child(7) {
    animation-delay: .5s;
}
@keyframes bounce {
    100% {
        top: -5px;

    }
}
.deal-of-the-day .text-content p:not(.valid-date) {
    color: var(--color-warm-of-white);
    max-width: 700px;
    width: 90%;
    line-height: 1.6;
    margin-bottom: 0;
}
.deal-of-the-day .t-container {
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: inline-block;
}
.deal-of-the-day .t-container .valid-date {
    color: var(--color-warm-of-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 5px;
}
.timer-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.timer-box span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-warm-of-white);
    line-height: 1.2;
}
.timer-label {
    font-size: 0.65rem;
    color: var(--color-warm-of-white);
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.8;
}
.deal-expired {
    display: none !important;
}
@media (min-width: 576px) {
    .timer-box {
        min-width: 85px;
        padding: 15px;
    }
    .timer-box span:first-child {
        font-size: 2.2rem;
    }
}
@media (min-width: 768px) {
    .deal-of-the-day .text-content h1 {
        font-size: 5rem;
    }
    .deal-of-the-day .t-container {
        padding: 30px 50px;
    }
    .timer-box {
        min-width: 110px;
        padding: 20px;
    }
    .timer-box span:first-child {
        font-size: 3rem;
    }
    .timer-label {
        font-size: 0.8rem;
    }
}
@media (min-width: 992px) {
    .deal-of-the-day .text-content p {
        font-size: 1.1rem;
    }
    .timer-box:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
}





/* ===== CATEGORY ===== */
.category .banner-info {
    bottom: 30%;
    margin: auto;
    width: 100%;
    position: absolute;
    z-index: 9;
    padding: 0 15px;
}
.category .card-banner h2,
.category .card-banner p,
.category .card-banner a {
    color: var(--color-warm-of-white);
}
.category .card-banner a::before,
.category .card-banner a::after {
    background-color: var(--color-black);
}
.category .card-banner .card-thumb,
.products .item-product {
    position: relative;
    display: block;
    overflow: hidden;
}
.category .card-banner .card-thumb img,
.products .item-product img {
    transition: all .5s ease-out 0s;
}
.category .card-banner:hover .card-thumb img,
.products .item-product img:hover {
    transform: scale(1.2);
    opacity: .6;
}





/* ===== BEST SELLER ===== */
.best-seller .nav-tabs {
    border-radius: 0;
    justify-content: center;
}
.best-seller .nav-tabs .nav-link {
    display: block;
    padding: 0 30px;
    border: 1px solid var(--color-british-racing-green);
    border-radius: 20px;
    background-color: var(--color-warm-of-white);
    color: var(--color-black);
    height: 36px;
    margin: 10px;
    line-height: 34px;
    text-transform: uppercase;
}
.best-seller .nav-tabs .nav-link:hover::before,
.best-seller .nav-tabs .nav-link.active::before {
    display: none;
}
.best-seller .nav-tabs .nav-link.active {
    background-color: var(--color-british-racing-green);
    color: var(--color-warm-of-white);
}
.best-seller .nav-tabs .nav-link:hover:not(.active) {
    background-color: var(--color-axolotl);
    color: var(--color-warm-of-white);
    border-color: var(--color-axolotl);
}
.tab-content .card {
    background-color: var(--color-warm-of-white);
}
.tab-content .card .product-thumb-link {
    background-color: #f8f6f2;
}
.tab-content .card .product-thumb-link img {
    transition: opacity 0.4s ease-in-out;
}
.best-seller .product-info .cat-parent {
    font-size: .875rem;
    color: var(--color-black);
    opacity: .6;
    text-transform: uppercase;
    transition: all .3s ease;
}
.best-seller .product-category a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    transition: all .3s ease;
}
.best-seller .product-title a {
    margin: 0 0 7px;
    display: block;
    color: var(--color-black);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    transition: all .3s ease;
}
.best-seller .product-info .cat-parent:hover,
.best-seller .product-title a:hover {
    color: var(--color-axolotl);
}


@media (min-width: 576px) {
    .banner-outdoor-img {
        height: 350px;
        object-fit: cover;
        width: 100%;
    }
}
@media (max-width: 576px) {
    .banner-info p {
        display: none;
    }
    .banner-info h2 {
        font-size: 1.1rem;
    }
    .main-btn {
        font-size: 0.75rem;
    }
}





/* ===== MEDIA QUERY ===== */
@media (max-width: 991px) {
    #home {
        padding: 4.375rem 0 0;
    }
    #home .banner-content {
        top: 3.5rem;
    }
}
@media (max-width: 575px) {
    #home .banner-content {
        top: 1.5rem;
    }
    #home .banner-content p {
        margin: 5px auto;
    }
    .best-seller .nav-tabs .nav-item.desk-only {
        display: none;
    }
}
@media (max-width: 430px) {
    #home .banner-content {
        padding: 0;
    }
    #home .banner-content p {
        font-size: .75rem;
        line-height: 1.125rem;
    }
}
@media (max-width: 360px) {
    #home .banner-content {
        top: 1rem;
    }
}