/* ===== DEALS OF THE DAY ===== */
.product-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.product-banner .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.product-banner .text-content h2,
.product-banner .text-content h1,
.product-banner .text-content p {
    color: var(--color-warm-of-white);
    width: 85%;
    margin: 0 auto;
}





/* ===== PRODUCT LIST ===== */
.products .nav-tabs {
    border-radius: 0;
    justify-content: center;
}
.product-list .card {
    background-color: var(--color-warm-of-white);
}
.product-list .card .product-thumb-link {
    background-color: #f8f6f2;
}
.product-list .card .product-thumb-link img {
    transition: opacity 0.4s ease-in-out;
}
.product-list .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;
}
.product-list .product-title a:hover {
    color: var(--color-axolotl);
}
.product-list .card-text {
    color: var(--color-black);
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-list .card-text a {
    text-decoration: none;
    color: var(--color-black);
}
.product-list .no-products {
    background-color: var(--color-mustard-gold);
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.25;
    color: var(--color-black);
}
.product-list .no-products i {
    font-size: 1.5rem;
}





/* ===== PAGINATION ===== */
.pagination .page-item:not(.disabled) .page-link {
    color: var(--color-british-racing-green);
}
.pagination .page-item.active .page-link {
    background-color: var(--color-british-racing-green);
    border-color: var(--color-british-racing-green);
    color: var(--color-warm-of-white);
}





/* ===== PRODUCT POST DETAIL ===== */
.product-post .carousel-indicators {
    position: static;
}
.product-post .carousel-indicators .thumbnail {
    width: 70px;
    height: fit-content;
    opacity: 0.7;
    border: .25px solid transparent;
    padding: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, border 0.3s ease;
}
.carousel-indicators .thumbnail img {
    object-fit: cover;
}
.carousel-indicators .thumbnail.active {
    opacity: 1;
    border-color: #000;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}







.product-post .tag-link {
    display: flex;
    gap: .25rem;
    text-transform: capitalize;
    text-decoration: none;
}
.p-desc {
    line-height: 1.25;
}
.product-post .product-detail {
    display: flex;
    gap: .25rem;
}
.product-btn .p-btn {
    display: block;
    padding: 0 30px;
    border: 1px solid var(--color-british-racing-green);
    border-radius: 20px;
    background-color: var(--color-british-racing-green);
    color: var(--color-black);
    height: 36px;
    line-height: 34px;
    transition: all .3s ease;;
}
.product-btn .p-btn:hover {
    background-color: var(--color-axolotl);
    border-color: var(--color-axolotl);
}
.product-btn .p-btn a {
    text-decoration: none;
    color: var(--color-warm-of-white);
}






.related-style .card {
    background-color: var(--color-warm-of-white);
}
.related-style .card .product-thumb-link {
    background-color: #f8f6f2;
}
.related-style .card .product-thumb-link img {
    transition: opacity 0.4s ease-in-out;
}
.related-style .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;
}
.related-style .product-title a:hover {
    color: var(--color-axolotl);
}