﻿:root {
    --primary-color: #dc3545;
    --darker-color: #bb2d3b;
    --white: #fdfdfd;
    --complementary-color: #faf9fa;
    --black-color: #343434;
    --gap: 20px;
}

section {
    padding-top: 25px;
    padding-bottom: 25px;
}

.contact-nav {
    background-color: var(--primary-color);
    position: static; /* Ensure it's not sticky or fixed */
    top: auto;
    z-index: auto;
}

.contact-nav a, .contact-nav p {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.9;
}

.contact-nav p {
    margin-right: auto;
}

.contact-nav a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-nav nav {
    height: 40px;
    justify-content: end;
}

header .logo {
    height: 35px;
}

header .frame-ns {
    row-gap: 5px;
}

.main-menu nav .menu-item-ns {
    text-transform: uppercase;
    color: var(--black);
}

.mobile-menu .menu-item-ns {
    color: var(--black);
}

.main-menu nav .menu-item-ns:hover {
    color: var(--primary-color);
}

a.menu-item-ns[href="/products"] {
    font-weight: bold;
}

.alert-ns {
    width: 100%;
    padding: 5px;
}

header .navigation-menu {
    height: 40px;
    column-gap: 40px;
}

.main-menu {
    position: sticky;
    top: 0;
    z-index: 1020;
    padding: 10px;
}

.search-bar-ns {
    width: 100%;
}

body {
    font-family: 'Montserrat';
}

#latest-products {
    padding-top: 0px;
}

#news {
    padding-top: 20px;
}

#banner-slider {
    width: 100%;
}

@media (max-width: 992px) {
    .banners-holder .side-banner {
        display: none !important;
    }

    .banners-holder #banner-slider {
        width: 100% !important;
    }

    #authors img {
        max-width: 90px;
    }

    #authors {
        justify-content: center !important;
    }
}

#brand img {
    max-height: 40px;
}

#certificates {
    flex: 0 0 100%;
    flex-direction: row;
    margin-top: 20px;
}

#certificates img {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

.banners-holder {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

@media (min-width: 992px) {

    .banners-holder {
        height: 400px;
    }
}

.banners {
    border-radius: var(--border-radious)
}

.ih-banner-card {
    width: 100%;
    background: linear-gradient(
            to right,
            rgba(250, 250, 250, 1) 10%,
            rgba(250, 250, 250, 0.9) 40%,
            rgba(250, 250, 250, 0.2) 60%,
            rgba(250, 250, 250, 0.0) 100%);
}

.ih-c-indicators {
    cursor: pointer;
}

.ih-c-indicators span:hover {
    color: var(--primary-color);
}

.ih-banner-card div {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    padding-right: 100px;
    max-width: 600px;
}

#authors p {
    width: fit-content;
    margin-right: auto;
}

#authors {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 20px;
}

@media (min-width: 1600px) {
    #about img {
        padding: 25px 150px;
    }
}

#main-categories .shopHo-meta {
    display: none;
}

.product {
    background-color: #fefefe;
}

.gallery-minis div {
    height: 100px;
    width: 100px;
}

#hero .frame-ns {
    gap: 20px;
}

#benefits img {
    max-width: 150px;
}

#benefits .col-ns {
    text-align: center;
    align-items: center;
    gap: 20px;
}

.grid-ns > * {
    height: 400px;
}

@media (min-width: 1600px) {
    .products-frame {
        max-width: 100%;
    }
}

.form-check-input:checked {
    background-color: #d82727;
    border-color: #d82727;
}

.product-frame {
    gap: 5px 50px;
}

.product-info {
    top: calc(140px + var(--cms-bar-height))!important;
    gap: 15px;
}

@media (max-width: 992px) {

    .main-menu > nav {
        flex-wrap: wrap;
    }

    .search-bar-ns {
        order: 99;
        flex: 0 0 100%;
    }
}

.sidemenu-header:hover {
    background: #eee !important;
}

.selected-a {
    color: #f4f4f4!important;
}


.selected-b {
    background: #d82727 !important;
}

.selected-b:hover {
    background: #f35757 !important;
}

#policy h2 {
    text-align: center;
}

#myorders h2 {
    margin-bottom: 15px;
}

.side-banner {
    height: 180px;
    width: 20%;
    border-radius: var(--border-radious);
}

.side-banner a {
    height: inherit;
    width: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.mobile-offcanvas-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mobile-subcanvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.mobile-subcanvas.is-open {
    transform: translateX(0);
}

.mobile-subcanvas-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-subcanvas-body {
    overflow-y: auto;
    padding: 1rem;
}

#navbarToggleExternalContent .offcanvas-body {
    padding: 0;
    height: 100%;
}

#navbarToggleExternalContent .mobile-offcanvas-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

#navbarToggleExternalContent .mobile-menu {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
}

.product-availability {
    display: none !important;
}

