@font-face {
    font-family: "Campton-Semibold";
    src: url("/pedidos/Nicas/resources/fonts/Campton-SemiBold.woff2") format("woff2"), url("/pedidos/Nicas/resources/fonts/Campton-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Campton-Book";
    src: url("/pedidos/Nicas/resources/fonts/Campton-Book.woff2") format("woff2"), url("/pedidos/Nicas/resources/fonts/Campton-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Campton-Light";
    src: url("/pedidos/Nicas/resources/fonts/Campton-Light.woff2") format("woff2"), url("/pedidos/Nicas/resources/fonts/Campton-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'font-montserrat-semiboold';
    src: url('./../resources/fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2'),
        url('./../resources/fonts/montserrat/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'font-montserrat-bold';
    src: url('./../resources/fonts/montserrat/Montserrat-Bold.woff2') format('woff2'),
        url('./../resources/fonts/montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'font-montserrat-regular';
    src: url('./../resources/fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
        url('./../resources/fonts/montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'font-montserrat-medium';
    src: url('./../resources/fonts/montserrat/Montserrat-Medium.woff2') format('woff2'),
        url('./../resources/fonts/montserrat/Montserrat-Medium.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




:root {
    --color-foreground: 18, 18, 18;
    --font-heading-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar estilo Bootstrap */
#navbar {
    z-index: 1050;

}

#namePage {
    font-weight: var(--font-heading-weight, 600);
    /* line-height: 1.2; */
}

/* #namePage a {
    font-family: 'Assistant', sans-serif !important;
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    color: #121212BF
} */


.store__logo-img {
    width: clamp(50px, 5vw, 70px) !important;
    height: clamp(50px, 5vw, 70px) !important;
    object-fit: cover !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    transition: transform 0.2s ease;
}



.store__logo-img:hover {
    transform: scale(1.05);
}




/* Overlay debajo del navbar */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1030;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

h3.localizacion {
    position: absolute;
    z-index: 9999;
    left: 49px;
    bottom: 10px;
    font-size: 120x;
    color: white;
    background: #dc3445;
    padding: 1px 5px 1px 5px;
    border-radius: 4px;
}


/* Menú compartido: lateral en mobile, horizontal en desktop */
#mainMenu {
    position: absolute;
    top: 100%;
    left: 0;
    height: 92vh;

    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1040;
    visibility: hidden;
    pointer-events: none;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;

    font-family: 'Assistant', sans-serif !important;
}

#mainMenu.show-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}



.navbar .__menuItem_padding {
    padding: 1.1rem 3rem;
    font-family: 'Assistant', sans-serif !important;
}


/* ============================
Search Styles
   ============================ */

.w-80 {
    width: 80%;
}

.max-w-700px {
    max-width: 700px;
}

/* Para el overlay: */
#searchOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1060;
    height: 0;
    /* padding: 0 2rem; */
    overflow: hidden;
    transition: height 0.3s ease, padding 0.3s ease;
}

#searchOverlay.active {
    height: 100px;
    padding: 1rem 2rem;
}


.fa-gift:before {
    content: "\f06b";
    color: #ca2811;
    font-size: 29px;
}



/* En escritorio (>= 992px), menú normal horizontal */
@media (min-width: 992px) {
    #mainMenu {
        position: static;
        width: auto;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: transparent;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap !important;
    }

    .menu-overlay {
        display: none !important;
        box-sizing: border-box;

    }

    .nav-link.active,
    .custom-hover:hover {
        font-weight: bold;
        text-decoration: underline;
    }

    .__menuItem_padding {
       padding: 0.7rem !important;
    }
}

@media (max-width: 700px) {
    #mainMenu {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .nav-link.active,
    .custom-hover:hover {
        background-color: rgba(var(--color-foreground), .04);
    }

    #mainMenu li {
        width: 100%;
    }

}


@media (min-width: 701px) and (max-width: 991px) {
    #mainMenu {
        width: 50vw;
    }

    #mainMenu li {
        width: 100%;
    }

    .nav-link.active,
    .custom-hover:hover {
        background-color: rgba(var(--color-foreground), .04);
    }
}


.w-custom {
    margin-top: 5px;
    width: 100%;
}

@media (min-width: 443px) {
    .w-custom {
        width: auto;
    }
}













/* btn whatsapp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

@media (max-width: 500px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }
}












.font-semibold {
    font-family: "Campton-Semibold", sans-serif;
    font-weight: 600;
}

.font-book {
    font-family: "Campton-Book", sans-serif;
    font-weight: normal;
}

.font-light {
    font-family: "Campton-Light", sans-serif;
    font-weight: 300;
}


/* navbar */
#navbar {
    background-color: #fff !important;
}

.navbar .__menuItem_padding {

    font-family: 'font-montserrat-medium' !important;
}

.nav-link.active, .custom-hover:hover {
  
    transform: translatey(-2px)!important;
}


a.nav-link.__menuItem_padding.active.custom-hover:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 81%;
    left: 9%;
    justify-content: center;
    display: flex;
    height: 3px;
    margin: 0 auto;
    background: #ca2811;
    transition: width 0.3s 
ease;
    border-radius: 2px;
}

#navbar .nav-item .nav-link {
    font-family: 'font-montserrat-semiboold';
    color: black !important;;
    transition: transform 0.2s ease, color 0.3s ease;
    text-decoration: none!important;
}

/* #navbar .container.ps-0.flex-nowrap {
    padding: 10px;
} */

nav#navbar {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#toggleIcon,
#navbar .icon-search,
#navbar #car {
    color: rgb(0, 0, 0) !important;
}

.nav-link.active, .custom-hover:hover {
    font-weight: unset!important;
 
}


@media screen and (max-width: 991px) {

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link {
        color: black !important;
    }


}



/* Some style for sidebar  */
div#cart-items.cart-sidebar-body {
    font-family: 'font-montserrat-regular'!important;
}


.card-title.text-primary.mb-3.fw-semibold {
    /* background: #53954f; */
    /* padding: 21px;
    border-radius: 8px; */
    /* color: #ffffff !important; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);  */
}





/* footer */
.footer {
    background-color: #db4445;
    color: white;
}