 :root {
    --dark-color: #000000;
    --font-color: #111;
    --light-color: #f8f9fa;
    --primary-color: #ec7a21;
    --primary-dark-color: #f66b00;
    --secondary-color: #c41c24;
    --font-family: "Cairo", sans-serif;
    --font-poppins: "Poppins", sans-serif;
    --font-playfair: "Playfair Display", serif;
    --font-ubuntu: "Ubuntu", sans-serif;
    --font-x-small: 12px;
    --font-size-small: 14px;
    --font-size-base: 16px;
    --font-size-large: 18px;
} 
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--dark-color);
    line-height: 1.5;
    overflow-x: hidden !important;
    color: var(--font-color) !important;
}
a {
    text-decoration: none;
}
.bg-theme {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
}
.bg-secondary-theme {
    background-color: var(--secondary-color) !important;
    color: var(--light-color) !important;
}
.cairo {
    font-family: var(--font-family) !important;
}
.poppins {
    font-family: var(--font-poppins) !important;
}
.playfair {
    font-family: var(--font-playfair) !important;
}
.ubuntu {
    font-family: var(--font-ubuntu) !important;
}
.text-theme {
    color: var(--primary-color) !important;
}
.text-x-small {
    font-size: var(--font-x-small) !important;
}
.text-small {
    font-size: var(--font-size-small) !important;
}
.text-large {
    font-size: var(--font-size-large) !important;
}
.pointer {
    cursor: pointer !important;
}
.border-theme {
    border-color: var(--primary-color) !important;
}
.btn.bg-theme:hover,
.btn.border-theme:hover {
    color: var(--light-color) !important;
    background-color: var(--primary-dark-color) !important;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}
.hover:hover {
    color: var(--primary-color) !important;
}
.topbar {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: var(--font-size-small) !important;
}
.topbar a {
    color: var(--light-color);
}
.pulse-animation {
    animation: pulse 5s infinite ease-in-out;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.5);
        opacity: 0.2;
    }
    to {
        transform: scale(1);
        opacity: 0.8;
    }
}
.up-down-animation {
    animation: upDown 5s infinite ease-in-out;
}
@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(0);
    }
}
.left-right-animation {
    animation: leftRight 4s infinite ease-in-out;
}
@keyframes leftRight {
    0% {
        transform: translate(0);
    }
    50% {
        transform: translate(20px);
    }
    to {
        transform: translate(0);
    }
}
@media (max-width: 768px) {
    .cta-section {
        height: 70vh;
    }
}
.header .navbar-nav .nav-link {
    font-size: var(--font-size-small) !important;
    transition: 0.05s ease-in-out;
}
.header .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline var(--primary-color) 1px dotted !important;
    text-underline-offset: 4px;
}
.header .search-dropdown {
    min-width: 250px;
}
.header .dropdown-submenu {
    position: relative;
}
.header .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}
.header .dropdown-submenu:hover .dropdown-menu {
    display: block;
}
.header .dropdown-toggle:after {
    margin-left: 5px !important;
}
@media (max-width: 991px) {
    .header .navbar-brand {
        flex-grow: 1;
    }
    .header .navbar-toggler {
        order: 2;
    }
    .header .d-md-none {
        display: inline-flex !important;
    }
}
.header .category-dropdown .dropdown-item:hover,
.header .search-input-btn:hover i {
    color: var(--primary-color) !important;
}
.header .cart-dropdown {
    width: 300px !important;
    display: none !important;
    z-index: 1050 !important;
}
.header .cart-hover:hover .cart-dropdown {
    display: block !important;
}
.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item:before {
    color: var(--light-color) !important;
}
#homeSlideCarousel1 {
    height: 90vh !important;
    background-size: cover !important;
    background-position: center center !important;
}
#homeSlideCarousel1 .product-image {
    height: 90% !important;
    transition: transform 0.3s ease-in-out;
    scale: 0.1;
    opacity: 0 !important;
}
#homeSlideCarousel1 .content-box {
    background-color: #ffffffd9 !important;
    width: 500px;
    transition: transform 0.3s ease-in-out;
    scale: 0.1;
    opacity: 0 !important;
}
#homeSlideCarousel1 .carousel-item {
    background-image: url(/../public/assets/img/banner.jpg) !important;
    background-size: cover !important;
    background-position: center center !important;
}
#homeSlideCarousel1 .carousel-item.active .product-image,
#homeSlideCarousel1 .carousel-item.active .content-box {
    transform: scale(10);
    opacity: 1 !important;
}
#homeSlideCarousel1 .carousel-control-prev,
#homeSlideCarousel1 .carousel-control-next {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#homeSlideCarousel1 .carousel-control-prev {
    left: 20px;
}
#homeSlideCarousel1 .carousel-control-next {
    right: 20px;
}
@media (min-width: 768px) {
    #homeSlideCarousel1 .content-box {
        right: 10% !important;
    }
    #homeSlideCarousel1 .product-image {
        left: 10% !important;
    }
}
@media (max-width: 768px) {
    #homeSlideCarousel1 .content-box {
        width: 80% !important;
    }
}
#productCarousel .carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
}
.scroll-btn {
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out;
}
.scroll-section:hover .scroll-btn {
    opacity: 1 !important;
}
.cta-1 .txt-show-01 {
    font-size: 220px;
    color: #eee;
    display: block;
    opacity: 0.55;
    line-height: 1;
}
.cta-1 .txt-show-02 {
    font-size: 100px;
    position: absolute;
    top: 39px !important;
    left: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .cta-1 .txt-show-01 {
        font-size: 100px;
        line-height: 150px;
    }
    .cta-1 .txt-show-02 {
        font-size: 50px;
    }
}
@media (max-width: 600px) {
    .cta-1 .txt-show-01 {
        font-size: 50px;
        line-height: 100px;
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .cta-1 .txt-show-02 {
        font-size: 30px;
    }
}
.cta-section {
    height: 650px;
    background-image: url(/../public/assets/img/banner.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden !important;
}
.promotion {
    height: 50vh;
}
.promotion .text-content {
    max-width: 500px;
    margin: 130px 0 130px auto;
    position: relative;
    z-index: 2;
}
.promotion .first-line,
.promotion .second-line {
    color: #333;
    font-size: 35px;
}
.promotion .third-line {
    font-size: 15px;
    color: #666;
}
.promotion .second-line i {
    font-size: 40px;
}
.promotion .media {
    width: 670px;
    height: 535px;
    background-image: url(/../public/assets/img/slomotion_02_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -30px;
    bottom: 0;
    z-index: 1;
}
@media (max-width: 1200px) {
    .text-content {
        background-color: #ffffff80;
        box-shadow: var(--bs-box-shadow) !important;
    }
}
@media (max-width: 768px) {
    .media {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .media {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        padding: 20px 15px 30px;
        background-position: center top;
        margin-top: 0;
        display: none;
    }
    .text-content {
        width: 100%;
        margin: auto;
    }
    .promotion {
        padding: 130px 10px;
        height: auto;
        background-image: url(/../public/assets/img/slomotion_02_bg.png);
        background-position: center center;
        background-repeat: no-repeat;
    }
    .text-content .second-line i {
        font-size: 22px;
    }
    .first-line,
    .second-line {
        font-size: 22px;
        line-height: 27px;
    }
    .text-content .buttons .btn {
        padding: 10px 22px;
        font-size: 13px;
        min-width: auto;
    }
}
.tabproducts svg {
    fill: var(--bs-secondary);
    fill-rule: evenodd;
    width: 50px;
    height: 50px;
}
.tabproducts .nav-tabs .nav-item.show .nav-link,
.tabproducts .nav-tabs .nav-link:hover {
    color: var(--primary-color) !important;
    transition: none;
}
.tabproducts .nav-link:hover svg,
.tabproducts .nav-link.active svg {
    fill: var(--primary-color) !important;
}
.tabproducts .nav-tabs .nav-item.show .nav-link,
.tabproducts .nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    text-decoration: underline 3px var(--primary-color) !important;
    text-underline-offset: 4px;
}
@media (max-width: 991px) {
    .tabproducts svg {
        width: 30px;
        height: 30px;
    }
    .tabproducts .nav-link.active svg {
        fill: var(--light-color) !important;
    }
    .tabproducts .nav-tabs .nav-item.show .nav-link,
    .tabproducts .nav-tabs .nav-link {
        color: var(--bs-secondary) !important;
        background: #f6f6f6 !important;
    }
    .tabproducts .nav-tabs .nav-item.show .nav-link,
    .tabproducts .nav-tabs .nav-link.active {
        color: var(--light-color) !important;
        background: #888 !important;
        text-decoration: none !important;
        border-radius: 0 !important;
    }
}
.tab-single-card .scroll-card {
    transition: box-shadow 0.3s ease-in-out;
}
.tab-single-card .scroll-card:hover {
    box-shadow: var(--bs-box-shadow) !important;
}
.tab-single-card .hidden-content {
    transform: translateY(-20%);
    opacity: 0;
    position: absolute;
    z-index: 2;
    box-shadow: var(--bs-box-shadow) !important;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.tab-single-card .scroll-card:hover .hidden-content {
    transform: translateY(0);
    opacity: 1;
}
@media (max-width: 768px) {
    .tab-single-card .hidden-content {
        position: static;
        transform: none;
        opacity: 1;
        z-index: 0;
        box-shadow: 0 0 #0000 !important;
        padding-bottom: 10px;
    }
}
.toprated-products .tr-banner {
    min-height: 200px;
    border: 1px solid #e0e0e0;
}
.toprated-products .banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/../public/assets/img/biolife-banner__style-01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}
.toprated-products .banner-content {
    position: absolute;
    left: 55%;
    width: 40%;
    padding: 20px;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.toprated-products .banner-content p {
    transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
    .toprated-products .tr-banner:hover .banner-bg {
        filter: brightness(0.7);
    }
    .toprated-products .tr-banner:hover .banner-content,
    .toprated-products .tr-banner:hover .banner-content p {
        color: #fff !important;
    }
}
@media (max-width: 991px) {
    .toprated-products .tr-banner {
        padding: 10px;
    }
    .toprated-products .banner-content {
        position: static;
        margin: 20px;
        width: 100% !important;
        z-index: 1;
        background-color: #fffc;
    }
}
@media (max-width: 768px) {
    .toprated-products .banner-content {
        text-align: center;
    }
}
#product-details .custom-tabs {
    border-bottom: 2px solid #ddd;
}
#product-details .custom-tab-button.active {
    color: #000;
}
#product-details .custom-tab-button.active:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: calc(100% - 60px);
    height: 3px;
    background-color: var(--primary-color);
}
@media (max-width: 768px) {
    #product-details .custom-tabs {
        display: flex;
        flex-direction: column;
        border: 1px solid #ddd;
    }
    #product-details .custom-tab-button {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    #product-details .custom-tab-button.active:after {
        left: 0;
        width: 100%;
    }
}
@media (min-width: 768px) {
    #related-products .scroll-container {
        height: 550px;
    }
}
.btn-outline-danger:hover i {
    color: #fff !important;
}
