@font-face {
    font-family: 'LaLuxes';
    src: url('../fonts/laluxes-regular.otf') format('truetype')
}

:root {
    --font-primary: "Poppins";
    --font-secondary: "LaLuxes";
    --font-icons: "Font Awesome 6 Free";
    --navbar-height-movil: 60px;
    --navbar-height-desk: 90px;
    --sidebar-width: 220px;
    --sidebar-margin: .5rem;
    --offcanvas-brand-height: 45px;
    --offcanvas-border-width: 10px;

    --bs-body-font-family: var(--font-primary);
    --bs-body-font-weight: 300;
    --bs-body-color: #2b2b2b;

    --bs-primary: #735240;
    --bs-primary-rgb: 115, 82, 64;
    --bs-primary-hover: #663C25;
    --bs-primary-hover-rgb: 102, 60, 37;
    --bs-secondary: #c58f72;
    --bs-secondary-rgb: 197, 143, 114;
    --bs-secondary-hover: #A5694A;
    --bs-tertiary: #003d67;
    --bs-tertiary-rgb: 0, 60, 103;
    --bs-tertiary-hover: #003256;
    --bs-light: #f8f5ef;
    --bs-light-rgb: 248, 245, 239;
    --bs-light-hover: #EDE9E2;
    --bs-dark: #353535;
    --bs-dark-rgb: 53, 53, 53;
    --bs-dark-hover: #232323;
    --bs-success: #22bb33;
    --bs-success-rgb: 34, 187, 53;
    --bs-success-hover: #099E1C;
    --bs-danger: #FF375F;
    --bs-danger-rgb: 255, 55, 94;
    --bs-danger-hover: #ED002F;
    --bs-warning-hover: #C99700;
    --bs-info-rgb: 6, 182, 212;
    --bs-muted: #82868a;
    --bs-border-color: #ebebeb;
    --bs-border-radius: 0.5rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.75rem;
    --bs-border-radius-xl: 1.5rem;
    --bs-border-radius-xxl: 3rem;
    --bs-box-shadow-sm: 3px 3px 5px rgb(0 0 0 / 10%);

    --bg-papper: url('../images/bg-paper.png');
}

a {
    color: var(--bs-body-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: var(--bs-dark);
}
.fs-7 {
    font-size: 0.8rem;
}
.fs-8 {
    font-size: 0.7rem;
}
@media (min-width: 768px) {
    .fs-7 {
        font-size: 0.85rem;
    }
    .fs-8 {
        font-size: 0.75rem;
    }
}

strong {
    font-weight: 600;
}
small {
    font-size: .9em;
}

hr {
    border-color: var(--bs-border-color);
    opacity: 1;
}

.ff-secondary {
    font-family: var(--font-secondary), sans-serif;
}
.fw-extrabold {
    font-weight: 800;
}
.fw-black {
    font-weight: 900;
}

.text-default {
    color: var(--bs-body-color) !important;
}
.text-primary-hover {
    color: var(--bs-primary-hover) !important;
}
.text-secondary-hover {
    color: var(--bs-secondary-hover) !important;
}
.text-dark-hover {
    color: var(--bs-dark-hover) !important;
}
.text-muted {
    color: var(--bs-muted) !important;
}
.text-justify {
    text-align: justify !important;
}

.ratio-10x9 {
    --bs-aspect-ratio: 90%;
}
.ratio-9x10 {
    --bs-aspect-ratio: 111.11%;
}
.ratio-5x4 {
    --bs-aspect-ratio: 80%;
}
.ratio-4x5 {
    --bs-aspect-ratio: 125%;
}
.ratio-3x4 {
    --bs-aspect-ratio: 133.33%;
}
.ratio-3x2 {
    --bs-aspect-ratio: 66.66%;
}
.ratio-2x3 {
    --bs-aspect-ratio: 150%;
}
.ratio-9x16 {
    --bs-aspect-ratio: 177.77%;
}
.ratio-2x1 {
    --bs-aspect-ratio: 50%;
}
.ratio-1x2 {
    --bs-aspect-ratio: 200%;
}

.sticky-top {
    top: -1px;
}

.thumb-xs {
    width: 50px;
}
.thumb-sm {
    width: 70px;
}
.thumb-md {
    width: 90px;
}
.thumb-lg {
    width: 110px;
}
.thumb-xl {
    width: 140px;
}
.thumb-xxl {
    width: 180px;
}

.min-w-0 {
    min-width: 0;
}

.g-recaptcha {
    height: 78px !important;
}

/********** ELEMENTS **********/
/******************************/
.preloader {
    position: fixed;
    z-index: 1050;
    background: var(--bs-light);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: .5rem;
    --bs-btn-font-weight: 400;
    --bs-btn-border-radius: 0;
}
.btn-sm {
    --bs-btn-font-size: 0.8rem;
}
.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary-hover);
    --bs-btn-hover-border-color: var(--bs-primary-hover);
    --bs-btn-active-bg: var(--bs-primary-hover);
    --bs-btn-active-border-color: var(--bs-primary-hover);
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}
.btn-dark {
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-border-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-dark-hover);
    --bs-btn-hover-border-color: var(--bs-dark-hover);
    --bs-btn-active-bg: var(--bs-dark-hover);
    --bs-btn-active-border-color: var(--bs-dark-hover);
}

label {
    color: var(--bs-dark);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 5px;
}
.form-control,
.form-select {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(var(--bs-dark-rgb),0.4);
    border-radius: 0;
    font-weight: 300;
}
.form-control:active,
.form-control:focus {
    background-color: var(--bs-white);
}

.form-check {
    line-height: 1.75;
}
.form-check .form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-right: .5rem;
    border-color: var(--bs-secondary);
}
.form-check .form-check-input + label {
}

/* form-control */
.was-validated .form-control:valid {
    border-color: rgba(var(--bs-dark-rgb),0.4);
    background-image: none;
    padding-right: 1rem;
}
/* form-select */
.was-validated .form-select:valid {
    --bs-form-select-bg-icon: none;
    background-image: var(--bs-form-select-bg-img);
    border-color: rgba(var(--color-secondary-rgb),0.2);
}
/* form-check-input */
.was-validated .form-check-input:valid {
    border-color: var(--bs-secondary);
}
.was-validated .form-check-input:valid:checked {
    background-color: var(--bs-secondary);
}
.was-validated .form-check-input:valid~.form-check-label {
    color: var(--color-text);
}

.splide__arrows {
    position: absolute;
    bottom: -1rem;
    left: 50%;
}
.splide__arrow {
    background-color: transparent;
    opacity: 1;
    width: 50px;
    height: 15px;
    outline: none;
    box-shadow: none;
}
.splide__arrow svg {
    fill: var(--bs-dark);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
}
.splide__arrow:hover svg {
    fill: var(--bs-black);
}
.splide__arrow--prev {
    left: -3.5rem;
}
.splide__arrow--next {
    right: -3.5rem;
}
.splide__arrow:focus {
}
.splide__pagination {
    bottom: -1.5em;
}
.splide__pagination__page {
    background: transparent;
    border: 2px solid var(--bs-secondary);
    border-radius: 5px;
    height: 10px;
    opacity: .7;
    width: 16px;
}
.splide__pagination__page.is-active {
    transform: scale(1);
    background: var(--bs-primary);
}
.splide__track--nav>.splide__list>.splide__slide {
    background-color: var(--bs-secondary);
    border-width: 0;
}
.splide__track--nav>.splide__list>.splide__slide.is-active {
    border-width: 0;
}
.splide__track--nav>.splide__list>.splide__slide.is-active > div {
    opacity: 0.75;
}

.accordion {
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-border-width: 0;
}

.list-style {
    list-style: none;
    padding: 0;
}
.list-style li {
    padding-left: 1em;
    line-height: 2;
}
.list-style li:before {
    content: "\f560"; /* FontAwesome Unicode */
    font-family: var(--font-icons), serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.5em; /* same as padding-left set on li */
    color: var(--color-secondary);
}

.socials {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 0;
}
.socials a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0 .5rem;
    text-decoration: none;
    transition: all .3s ease-out;
    font-size: 1.25rem;
}
.socials a:hover {
    background: var(--bs-dark);
    border-color: var(--bs-dark-hover);
}

.whatsapp {
    background: #25D366 !important;
    border: 1px solid #ffffff !important;
    font-size: 1.75rem;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    text-align: center;
    box-shadow: -3px 3px 0 #00000030;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.whatsapp i {
    color: #ffffff;
}
.whatsapp:hover {
    background: #ffffff !important;
    border-color: #25D366 !important;
}
.whatsapp:hover i {
    color: #25D366;
}
@media (min-width: 768px) {
    .whatsapp {
        bottom: 50px;
        right: 30px;
    }
}

.bg-paper {
    background-color: var(--bs-light);
    background-image: var(--bg-papper);
    background-size: cover;
}

ul.list-style-heart {
    list-style: none;
    padding: 0;
}
ul.list-style-heart li {
    padding-left: 1.5em;
}
ul.list-style-heart li:before {
    content: "\f004"; /* FontAwesome Unicode */
    font-family: var(--font-icons), serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
    margin-left: -1.5em; /* same as padding-left set on li */
    width: 1.5em; /* same as padding-left set on li */
    color: var(--bs-dark);
}

.tag {
    border: 1px solid rgba(var(--bs-secondary-rgb),0.25);
    padding: 2px 4px;
    margin-right: 0;
    margin-bottom: 3px;
    display: inline-block;
    line-height: 1;
    text-transform: capitalize;
    transition: all 0.2s ease-out;
}
.tag:hover {
    background-color: rgba(var(--bs-secondary-rgb),0.25);
    border-color: rgba(var(--bs-secondary-rgb),0.5);
}

.share-msimple a {
    background: var(--bs-white);
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    display: grid;
    place-content: center;
    height: 38px;
    width: 38px;
}

.dropdown-menu {
    --bs-dropdown-item-padding-y: .5rem;
    --bs-dropdown-link-hover-bg: var(--bs-light);
    --bs-dropdown-link-active-color: var(--bs-dark);
    --bs-dropdown-link-active-bg: var(--bs-light-hover);
}

.pagination {
    --bs-pagination-font-size: 0.95rem;
    --bs-pagination-color: var(--bs-dark);
    --bs-pagination-bg: transparent;
    --bs-pagination-border-radius: 0;
    --bs-pagination-hover-color: var(--bs-dark);
    --bs-pagination-hover-bg: rgba(var(--bs-secondary-rgb),0.25);
    --bs-pagination-active-color: var(--bs-white);
    --bs-pagination-active-bg: var(--bs-secondary);
    --bs-pagination-active-border-color: var(--bs-secondary);
    --bs-pagination-focus-color: var(--bs-black);
    --bs-pagination-focus-bg: rgba(var(--bs-secondary-rgb),0.25);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    gap: .5rem;
    width: 40px;
    text-align: center;
}

.breadcrumb {
    --bs-breadcrumb-font-size: 0.85rem;
}
.breadcrumb-item {
    --bs-breadcrumb-item-padding-x: 1rem;
    --bs-breadcrumb-divider-color: var(--bs-white);
    position: relative;
    color: var(--bs-white);

}
.breadcrumb-item.active {
    color: var(--bs-white);
}
.breadcrumb-item a {
    color: var(--bs-white);
}

.cart-count {
    position: absolute;
    font-size: .65rem;
    font-weight: 600;
    background-color: var(--bs-secondary);
    top: 0;
    right: 0;
    line-height: 1.2;
    color: var(--bs-white);
    border-radius: 50%;
    height: 18px;
    width: 18px;
    display: grid;
    place-content: center;
}

/********** SECTIONS **********/
/******************************/
.navbar {
    transition: all 0.3s ease-out;
    box-shadow: none;
}
.navbar.scrolled {
    box-shadow: var(--bs-box-shadow-sm);
}
.navbar > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-white);
    border-radius: 30px;
    margin-top: -10px;
    z-index: -1;
}
.navbar .nav-link {
    font-weight: 400;
    color: var(--bs-black);
}
.navbar-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: var(--bs-white);
    background-size: 50% 50%;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    width: 2.25rem;
    height: 2.25rem;
}
.carousel-control-next, .carousel-control-prev {
    width: 10%;
    opacity: 0.75;
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    opacity: 1;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMjg0NDQgMjg0NDQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xhc3M9IiI+PGcgdHJhbnNmb3JtPSJtYXRyaXgoLTEsLTEuMjI0NjQ2Nzk5MTQ3MzUzMmUtMTYsMS4yMjQ2NDY3OTkxNDczNTMyZS0xNiwtMSwyODQ1NCwyODQ0NSkiPjxwYXRoIGZpbGwtcnVsZT0ibm9uemVybyIgZD0iTTc5NzYgMjc5MWMtMTk1LTE5NS0xOTUtNTEyIDAtNzA3czUxMi0xOTUgNzA3IDBsMTE3ODUgMTE3ODVjMTk1IDE5NSAxOTUgNTEyIDAgNzA3TDg2ODMgMjYzNjFjLTE5NSAxOTUtNTEyIDE5NS03MDcgMHMtMTk1LTUxMiAwLTcwN2wxMTQzMi0xMTQzMkw3OTc2IDI3OTB6IiBmaWxsPSIjMDAwMDAwIiBvcGFjaXR5PSIxIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIj48L3BhdGg+PC9nPjwvc3ZnPg==");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 28444 28444' style='enable-background:new 0 0 512 512' xml:space='preserve' fill-rule='evenodd' class=''%3E%3Cg%3E%3Cpath fill-rule='nonzero' d='M7976 2791c-195-195-195-512 0-707s512-195 707 0l11785 11785c195 195 195 512 0 707L8683 26361c-195 195-512 195-707 0s-195-512 0-707l11432-11432L7976 2790z' fill='%23000000' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 767px) {
    .carousel-control-prev {
        left: 1rem;
    }
    .carousel-control-next {
        right: 1rem;
    }
}

.subheader {
    position: relative;
    overflow: hidden;
}
.subheader + main {
    border-top-right-radius: var(--bs-border-radius-xxl);
}
.subheader-curve svg {
    position: absolute;
    right: 0;
    top: -3rem;
    width: 3rem;
}
.subheader-curve {
    height: 6rem;
    border-top-left-radius: 3rem;
    background-color: var(--bs-white);
    margin-bottom: -3rem;
    position: relative;
}

.categories-home {
    position: relative;
}
.categories-home::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 60%;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 100px 60px rgba(var(--bs-secondary-rgb),0.2);
    transform: translateX(-50%);
    z-index: -1;
}

.category-item {
    display: block;
}
.category-item__image {
    position: relative;
}
.category-item__bordered {
    padding: 6px;
}
.category-item__bordered::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(var(--color-category-rgb, 0,0,0),1);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.category-item__bordered:hover::before {
    opacity: 1;
    animation: rotateBorder 8s linear infinite;
}
.category-item__overlay {
    display: grid;
    place-content: center;
    background-color: rgba(var(--color-category-rgb, 0,0,0),0);
    transition: background-color ease-in-out 0.4s;
}
.category-item__image:hover .category-item__overlay {
    background-color: rgba(var(--color-category-rgb, 0,0,0),0.5);
}
.category-item__overlay img {
    width: 90px;
    height: auto;
    opacity: 0;
    transition: 0.4s opacity ease-in-out;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(3deg) brightness(103%) contrast(106%);
}
.category-item__image:hover .category-item__overlay img {
    opacity: 1;
}
/* Animación */
@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.category-item .ratio {
    transition: all 0.3s ease-out;
    margin: 0 auto;
}
.category-item:hover {
}
.category-items {
    --bs-progress-bar-bg: var(--color-category-rgb);
    background-color: var(--bs-white);
    position: relative;
}
.category-items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-category-rgb),0.1);
    z-index: 0;
}

.category-products__image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40%;
}
.category-products__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.category-products__overlay.start {
    background-image: linear-gradient(to right, rgba(var(--bs-white-rgb),0) 25%, rgba(var(--bs-white-rgb),1));
}
.category-products__overlay.end {
    background-image: linear-gradient(to left, rgba(var(--bs-white-rgb),0) 25%, rgba(var(--bs-white-rgb),1));
}

.product-bg {
    position: relative;
}
.product-bg:before {
    content: '';
    position: absolute;
    left: -.75rem;
    right: -.75rem;
    top: 3rem;
    bottom: 1.5rem;
    background-color: rgb(var(--color-category-rgb, 0,0,0));
    z-index: 0;
}
.order-lg-last .product-bg:before {
    left: -1rem;
    right: 0;
}
.product-item img {
    transition: all 1.5s ease-in-out 0s;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -moz-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    -ms-transition: all 1.5s ease-in-out 0s;
}
.product-item:hover img {
    transform: scale(1.05);
}
.product-item .border {
    transition: 0.4s ease-in-out all;
}
.product-item:hover .border {
    background-color: rgba(var(--bs-secondary-rgb),0.15);
}
.product-relevant {
    position: relative;
    display: block;
}
.product-relevant img {
    transition: all 1.5s ease-in-out 0s;
    -webkit-transition: all 1.5s ease-in-out 0s;
    -moz-transition: all 1.5s ease-in-out 0s;
    -o-transition: all 1.5s ease-in-out 0s;
    -ms-transition: all 1.5s ease-in-out 0s;
    transform: scale(1);
}
.product-relevant:hover img {
    transform: scale(1.05);
}
.product-relevant__info {
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(var(--bs-primary-rgb),0) 50%, rgba(var(--bs-primary-rgb),0.85) 100%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    align-items: end;
}
.product-relevant__info > div {
    position: absolute;
    backdrop-filter: blur(3px);
    background-color: rgba(var(--bs-light-rgb),0.25);
    left: .5rem;
    right: .5rem;
    bottom: .5rem;
}
.product-gallery__expand {
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-dark);
    box-shadow: 0 0 0 5px var(--bs-white);
    display: grid;
    place-content: center;
    right: 0;
    bottom: 0;
}
.zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}
@media (min-width: 992px) {
    .product-relevant__info > div {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
    }
}

.sidebar-title {
    font-weight: 600;
    text-transform: uppercase;
}

.contact-item {
    color: var(--color-text);
}
.contact-item i {
    color: var(--color-dark);
}
.contact-icon {
    background-color: rgba(var(--bs-secondary-rgb),0.25);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    margin: 0 auto 1rem;
    justify-content: center;
    align-items: center;
}
.contact-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--color-primary);
    transition: all 0.4s ease-in-out;
}
.contact-item:hover .contact-icon svg {
    transform: rotate(15deg);
}