@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLT55Roman.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLT65Medium.ttf");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/HelveticaNeueLT75Bold.ttf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #05608d;

    --text-color: #332d28;
    --neutral-color: #f8f8f8;
    --white-color: #ffffff;
    --black-color: #1f1f1f;

    --gray-100: #f5f5f5;
    --gray-200: #eaeaea;
    --gray-300: #d6d6d6;
    --gray-400: #bdbdbd;
    --gray-500: #9b9797;
    --gray-600: #7a7a7a;
    --gray-700: #5f5f5f;

    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Roboto", sans-serif;

    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.25rem; /* 20px */
    --font-size-xl: 2rem; /* 32px */
    --font-size-xxl: 2.75rem; /* 48px  */

    --spacing-xs: 0.25rem; /* 4px */
    --spacing-sm: 0.5rem; /* 8px */
    --spacing-md: 1rem; /* 16px */
    --spacing-lg: 1.5rem; /* 24px */
    --spacing-xl: 2rem; /* 32px */

    --border-radius-sm: 0.25rem; /* 4px */

    --filter-primary: brightness(0) saturate(100%) invert(21%) sepia(26%)
        saturate(6325%) hue-rotate(180deg) brightness(98%) contrast(96%);
}

* {
    font-family: "Helvetica Neue", sans-serif;
    scroll-behavior: smooth;
}

::selection {
    background-color: #bdbdbd;
}

body {
    background-color: #ffffff;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: var(--font-size-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

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

img {
    max-width: 100%;
    height: auto;
}

mark {
    background-color: var(--gray-200);
}

/* inicio elimina flechitas del input tipo numero/cantidad */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
/* fin elimina flechitas del input tipo numero/cantidad */

/* elimina la X del input tipo search */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.bodyPag.scrollnone {
    overflow: hidden;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
}

.padding-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.padding-last-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.hero-section {
    position: relative;
    font-size: var(--font-size-xxl);
    color: var(--black-color);
    border-bottom: 1px solid var(--gray-400);
    letter-spacing: 0.05rem;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}
.hero-title {
    font-size: var(--font-size-xXl);
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 0;
}
.hero-hint {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    max-width: 400px;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}
.hero-hint-subtitle {
    margin-bottom: 0;
}

.section-head {
    display: flex;
    justify-content: center;
}
.section-heading {
    font-size: var(--font-size-xl);
    line-height: 1.2;
}

.page-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.banner-img {
    border-radius: var(--border-radius-sm);
}

.form-control {
    height: 48px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-300);
}

.terms-title {
    font-size: var(--font-size-xxl);
}

/*===== INICIO header  =====*/
.header {
    position: sticky;
    top: 0;
    z-index: 12;
}

.new-header {
    position: relative;
    z-index: 10;
}
.new-header .header-left {
    justify-content: center;
}
.new-header-middle {
    background-color: var(--white-color);
    padding: 1rem 0;
}
.navbar-toggler {
    display: none;
}
.nav-item-mobile {
    display: none;
}
.navbar-middle {
    display: grid;
    grid-template-columns: 1fr minmax(500px, 650px) 1fr;
    align-items: center;
    width: 100%;
    padding-bottom: 1rem;
}
.navbar-middle-list {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding-left: 0;
}
.logo-header {
    display: inline-block;
    width: auto;
    height: auto;
}
.logo-header-img {
    height: 50px;
    object-fit: contain;
    width: auto;
}
.btn-navbar-shop {
    display: inline-flex;
    background-color: transparent;
    border: none;
    color: var(--black-color);
    padding: 1.2rem;
    transition: all 0.3s;
}
.btn-navbar-shop:hover {
    color: var(--primary-color);
}
.nav-link-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    height: 48px;
    min-width: 48px;
    color: var(--black-color);
    transition: all 0.3s;
}
.nav-link-middle:hover {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
}
.nav-link-account {
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
    line-height: 1.2;
    gap: 0.5rem;
    max-width: 146px;
    padding: 0 0.2rem;
}
.nav-middle-btn {
    position: relative;
    padding-left: 0;
    transition: all 0.4s;
}
.nav-middle-btn.open {
    color: var(--white-color);
}
.nav-middle-btn[button].open {
    color: var(--black-color);
}
.navbar-middle-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-middle-logo img {
    max-height: 55px;
}
.nav-middle-actions {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 0.5rem;
}
.nav-link-action {
    margin: 0 12px;
}

.nav-middle-actions-account {
    position: relative;
    transition: all 0.3s;
}
.list-business {
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    list-style: none;
    padding-left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    width: 180px;
    z-index: 9;
}
.title-business {
    border: 1px solid var(--gray-400);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.02rem;
    padding: 0.875rem;
    margin-bottom: 0;
}
.option-business {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-400);
    font-size: var(--font-size-sm);
    width: 100%;
    padding: 0.875rem;
    text-align: start;
    transition: all 0.3s;
}
.option-business.active {
    background-color: var(--gray-200);
    font-weight: 600;
}
.list-business li:last-child .option-business {
    border-bottom: none;
}
.option-business:hover {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
}
.nav-middle-actions-account:hover .list-business {
    visibility: visible;
    opacity: 1;
}

/* = inicio buscador predictivo =*/
.btn-toggle-search {
    border-radius: var(--border-radius-sm);
    height: 46px;
    width: 46px;
    transition: all 0.3s;
}
.btn-toggle-search:hover {
    background-color: var(--gray-200);
}
.search-wrapper {
    position: relative;
}
.search-modal__container {
    position: relative;
    margin-left: 3rem;
}
.input-search-buscador {
    background: transparent;
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}
.input-search-buscador:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 96, 141, 0.1);
    outline: none;
}
.search-actions {
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    display: flex;
    z-index: 3;
}
.search__input__icon-reset {
    display: none;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 0 none;
    background-color: transparent;
    height: 48px;
    width: 48px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.search__input__icon-reset.visible {
    display: block;
    opacity: 1;
    visibility: visible;
}

.autoComplete_wrapper ul {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    background-color: var(--white-color);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    list-style: none;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
}
.autoComplete_wrapper ul[hidden],
.autoComplete_wrapper ul:empty {
    opacity: 0;
    transform: scale(0);
}
#autoComplete_list_1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
    gap: 1rem;
    padding: 1rem;
}
.predictive-results-title h2 {
    font-size: 1rem;
    margin: 0; /* 🔥 Elimina el margin-bottom que te eleva la fila */
    line-height: 1.2;
    outline: 1px dashed blue;
}
.predictive-results-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
    gap: 1rem;
    padding-left: 0;
    padding-right: 1rem;
}
.predictive-product-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--white-color);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
.predictive-product-card .container-image-product {
    overflow: hidden;
}
.predictive-product-card .img-product {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all 1s;
}
.predictive-product-card .content-card {
    padding: 1rem;
}
.predictive-product-card .name-product {
    font-size: var(--font-size-base);
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 44px;
    overflow: hidden;
    margin-bottom: 0;
}
.predictive-product-card .price-product {
    font-size: var(--font-size-base);
    margin-bottom: 0;
}
.predictive-product-card:hover .name-product {
    color: var(--primary-color);
}
.predictive-product-card:hover .img-product {
    transform: scale(1.1);
    transition: all 1s;
}

/* fin buscador predictivo */

/* = inicio megamenu  = */

.navbar-bottom {
    position: relative;
}

.megamenu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.megamenu-link {
    color: var(--white-color);
    display: flex;
    align-items: center;
    font-size: 1.85rem;
    padding: 0.2rem 1.5rem;
}

.megamenu-nav {
    background-color: var(--black-color);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 0;
}
.megamenu-submenu {
    padding: 0 0.5rem;
}
.submenu-item {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    transition: all 0.3s;
}
.submenu-item:hover {
    color: var(--primary-color);
}
.megamenu-btn {
    position: relative;
    display: flex;
    background-color: transparent;
    border: none;
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
}
.megamenu-btn:last-child {
    color: #e53935;
}

.megamenu-submenu-group:last-child {
    margin-bottom: 1rem;
}

.submenu-child-link {
    display: block;
    background-color: transparent;
    border: none;
    color: var(--black-color);
    font-size: 1rem;
    letter-spacing: 0.05rem;
    padding: 0.5rem 0;
    transition: all 0.3s;
}
.submenu-child-link:last-child {
    margin-bottom: 1rem;
}
.submenu-child-link:hover {
    color: var(--primary-color);
}

.submenu-child-img {
    height: 300px;
    width: auto;
}

.megamenu-submenu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0 auto;
    padding: 0.5rem 0;
}
.megamenu-link-image {
    display: block;
    padding: 0.5rem;
    transition: all 0.3s;
}
.megamenu-image {
    object-fit: cover;
    width: 150px;
}
.megamenu-link-image:hover {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
}
.megamenu-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background-color: var(--white-color);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s;
}

.megamenu-item:hover .megamenu-submenu {
    visibility: visible;
    opacity: 1;
    z-index: 4;
}
.megamenu-item:hover .megamenu-btn {
    color: var(--black-color);
    background-color: var(--white-color);
}

/* scrollbar megamenu */
.new-megamenu-container::-webkit-scrollbar {
    width: 10px;
}
.new-megamenu-container::-webkit-scrollbar-track {
    background: var(--gray-300);
    border-radius: 1rem;
}
.new-megamenu-container::-webkit-scrollbar-thumb {
    background-color: var(--gray-500);
    border-radius: 10px;
    border: 2px solid var(--gray-300);
}
.new-megamenu-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--gray-500);
}

/* = fin megamenu = */

/* Inicio Menu mobile */

.menu-mobile {
    position: fixed;
    left: 0;
    top: 0;
    width: 460px;
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    background: var(--white-color);
    padding: 1.6rem;
    margin: 0 auto;
    transform: translateX(-100%);
    transition: transform 0.6s ease-in-out;
    z-index: 999;
}
.menu-mobile.open {
    transition: ease-in-out 0.6s;
    transform: translateX(0);
}
.list-menu-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
}
.item-mobbile-actions {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}
.item-mobbile-actions span {
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.item-mobbile-actions:hover {
    color: var(--primary-color);
}
.item-mobbile-actions img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.list-menu-mobile {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.list-menu-mobile li {
    width: 100%;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.list-menu-mobile li:last-child {
    border-bottom: 0;
}
.list-menu-mobile li .list-nav-submenu {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
    line-height: 1.5;
    text-decoration: none;
    background: transparent;
    border: 0;
    color: var(--text-color);
    outline: 0;
    padding: 1rem 2rem 1rem 0;
    transition: all 0.3s;
}
.list-nav-submenu::before {
    content: "";
    position: absolute;
    top: 55%;
    right: 15px;
    transform: translateY(-50%);
    height: 1px;
    width: 12px;
    background: var(--text-color);
    transition: all 0.3s;
}
.list-nav-submenu::after {
    content: "";
    position: absolute;
    top: 55%;
    right: 21px;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background: var(--text-color);
    transition: all 0.3s;
}
.list-menu-mobile li .list-nav-submenu.open,
.list-nav-submenu.open {
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 8px 8px 0 0;
}
.list-nav-submenu.open::before {
    background: var(--primary-color);
    transform: translateY(-50%) rotate(90deg);
    opacity: 0;
}
.list-nav-submenu.open::after {
    background: var(--primary-color);
    transform: translateY(-50%) rotate(90deg);
}
.submenu-nav-two {
    height: 0;
    overflow: hidden;
}
.submenu-nav-two.open {
    height: auto;
    padding-left: 0.6rem;
    overflow: hidden;
    margin-bottom: 2.2rem;
}
.list-menu-mobile li p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
}
.list-menu-mobile li p img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    transition: all 0.3s;
}
.list-menu-mobile li.change p img {
    transform: rotate(-180deg);
    transition: all 0.3s;
}
.submenu-mobile {
    display: none;
}
.submenu-mobile.open {
    display: block;
}
.submenu-mobile li {
    border-bottom: 0;
}
.list-submenu {
    list-style: none;
    padding-left: 0;
}
.menu-item {
    display: block;
    padding: 1rem 0;
}
.list-mobile-footer {
    list-style: none;
    padding-left: 0;
    margin-top: 3rem;
    margin-bottom: 0;
}
.list-mobile-footer li a {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 0;
    transition: all 0.3s;
}
.list-mobile-footer li a:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 992px) {
    /* Menu Mobile */
    .item-nav-mobile {
        display: flex;
        align-items: center;
        column-gap: 1rem;
    }
    .btn-menu-mobile {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        padding: 0;
        border-radius: 50%;
    }
    .btn-menu-mobile img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }
    .btn-menu-mobile .icon-close {
        display: none;
    }
    .button-menu {
        display: flex;
        position: relative;
        z-index: 99;
    }
    .nav-header-logo {
        position: relative;
        z-index: 99;
    }
    .lista-nav-header li a {
        font-size: 1.1rem;
    }
    .nav-header-items {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--white-color);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    .nav-header-items.open {
        opacity: 1;
        visibility: visible;
    }
    .lista-nav-header {
        flex-direction: column;
        justify-content: center;
        height: 100vh;
    }
    .button-menu.change .hambur {
        display: none;
    }
    .button-menu.change .cerrar {
        display: block;
        width: 20px;
    }
    .item-nav-mobile {
        display: flex;
        align-items: center;
        column-gap: 1rem;
    }
    .btn-menu-mobile {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        padding: 0;
        border-radius: 50%;
    }
    .btn-menu-mobile .icon-close {
        display: none;
    }
    .btn-menu-mobile img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }
    .btn-menu-mobile.change {
        background: var(--gray-200);
    }
    .btn-menu-mobile.change .icon-menu {
        display: none;
    }
    .btn-menu-mobile.change .icon-close {
        display: flex;
        width: 15px;
        height: 15px;
        object-fit: contain;
    }
    .list-menu-mobile li:first-child .list-nav-submenu::before,
    .list-menu-mobile li:first-child .list-nav-submenu::after {
        display: none;
    }
    /* Fin Menu Mobile */
}

/* Fin Menu mobile */

/* ==== FIN Header ==== */

/* ==== INICIO carrito asidebar ==== */
.btn-card {
    position: relative;
    padding-right: 18px;
    letter-spacing: 0.02rem;
    background: transparent;
    border: 0;
    border-radius: var(--border-radius-sm);
    padding: 0;
    outline: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    transition: all 0.3s;
}
.btn-card:hover {
    background-color: var(--gray-100);
}
.cart-count {
    background-color: var(--primary-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--white-color);
    line-height: 1;
    vertical-align: middle;
    margin-bottom: 0;
    z-index: 1;
}
.cart-count {
    position: absolute;
    right: -1px;
    top: 2px;
}

.cart-header.open {
    transform: translateX(0);
    transition: ease-in-out 0.6s;
}
.cart-header {
    background: var(--white-color);
    padding: 1.6rem;
    width: 450px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(1000px);
    transition: ease-in-out 0.6s;
    z-index: 9999;
}
.item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--primary-color);
}
.cart-head-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0;
}

.cart-head-btn {
    height: 40px;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background: var(--gray-200);
    border: 0;
    outline: 0;
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s;
}
.cart-head-btn:hover {
    color: var(--primary-color);
}
.cart-head-btn:hover img {
    filter: var(--filter-primary);
}

.cart-head-btn img {
    width: 18px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    transition: all 0.3s;
}
.wrapper-cart-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}
.wapper-cart {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    padding-bottom: 1.6rem;
}
.item-body {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    column-gap: 1rem;
}
.card-cart {
    width: 100%;
    display: flex;
    align-items: flex-start;
    column-gap: 1.4rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #ededed;
}
.card-cart-images {
    display: block;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem;
}
.card-cart-images img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    max-width: unset;
}
.card-cart-text {
    width: 100%;
}
.card-cart-title {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02rem;
    color: var(--text);
    text-transform: capitalize;
    width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0;
}
.card-cart-title a {
    color: var(--text);
}
.card-cart-title a:hover {
    color: var(--primary-color);
}
.card-cart-precio {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black-color);
    letter-spacing: 0.02rem;
    width: 95%;
    margin-bottom: 0;
}
.card-cart-actions {
    display: flex;
    align-items: center;
    column-gap: 1.4rem;
    margin-top: 0.8rem;
    width: 95%;
}
.card-cart-contador {
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.card-cart-contador.ficha-contador {
    height: 48px;
}
.card-btn-remove {
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 0;
    text-decoration: underline;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s;
}
.card-btn-remove:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.item-footer:last-child {
    display: flex;
    justify-content: center;
}
.cart-footer {
    position: sticky;
    bottom: 0;
    z-index: 99;
    padding-top: 1.6rem;
    border-top: 1px solid var(--primary-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.grid-total-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-footer-title {
    font-size: 1.6rem;
    color: var(--black-color);
    letter-spacing: 0.02rem;
    margin-bottom: 0;
}
.cart-footer-total {
    font-size: 1.5rem;
    letter-spacing: 0.02rem;
    margin-bottom: 0;
    color: var(--black-color);
}
.btn-checkout {
    height: 48px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border: 0;
    border-radius: var(--border-radius-sm);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    text-align: center;
    min-width: 200px;
    transition: all 0.3s;
}
.btn-checkout:hover {
    background-color: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
}

.mas,
.menos,
.menos-cantidad,
.mas-cantidad {
    font-size: 1.3rem;
    color: var(--black-color);
    border: 0;
    outline: 0;
    background: transparent;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.mas:hover,
.menos:hover {
    background-color: var(--primary-color);
}
.mas svg,
.menos svg {
    width: 14px;
    height: 14px;
}
.mas:hover svg,
.menos:hover svg {
    fill: var(--white-color);
}
.item-botones-ficha .count-input {
    height: 40px;
}
.count-input {
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
}

.cart-empty {
    padding: var(--spacing-lg);
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.cart-empty__icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    width: 64px;
    height: 64px;
}
.cart-empty__content svg {
    width: 100px;
    height: 100px;
}
.cart-empty__title {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}
.cart-empty__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    height: 48px;
    border-radius: var(--border-radius-sm);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}
.cart-empty__btn:hover {
    background-color: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
}

/* == fin carrito asidebar == */

/*===== Fin header  =====*/

/*===== Inicio index  =====*/

/** inicio hero section **/
.hero-main-section {
    padding-bottom: 2rem;
}
.hero-image {
    border-radius: var(--border-radius-sm);
    width: 100%;
}
.hero-button-prev,
.hero-button-next {
    top: unset;
    bottom: 1rem;
}
.hero-button-prev {
    left: 1rem;
}
.hero-button-next {
    left: 8.5rem;
    right: unset;
}
.hero-pagination {
    --swiper-pagination-bottom: 1.1rem;
    color: var(--white-color);
    font-size: 1.5rem;
    left: 4.5rem;
    width: fit-content;
}

/** fin hero section **/

/** inicio brand section **/
.brand-card {
    position: relative;
    border-radius: var(--border-radius-sm);
}
.brand-card-content {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: end;
    margin: 1rem;
    width: calc(100% - 2rem);
    z-index: 2;
}
.brand-card-content svg {
    fill: var(--white-color);
}
.brand-card-name {
    font-size: var(--font-size-lg);
    margin-bottom: 0;
    letter-spacing: 0.05rem;
    line-height: 1.2;
}

.brand-card-image {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.brand-card-image img {
    border-radius: var(--border-radius-sm);
}

.brand-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.brand-card:hover .brand-card-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.brand-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--white-color);
    border-radius: var(--border-radius-sm);
    color: var(--white-color);
    background: transparent;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    overflow: hidden;
    width: 100%;
    padding: 1rem;
    transition: all 250ms;
    z-index: 1;
}

.brand-card-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: var(--border-radius-sm);
    background-color: var(--white-color);
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.brand-card-btn:hover {
    color: var(--black-color);
}
.brand-card-btn:hover svg {
    fill: var(--black-color);
}

.brand-card-btn:hover::before {
    width: 100%;
}

/** fin brand section **/

/** inicio productos  **/
.product-card {
    position: relative;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background-color: var(--white-color);
}
.product-image-wrapper {
    position: relative;
    padding: 16px;
    text-align: center;
    overflow: hidden;
}
.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all 1s;
}
.product-info {
    padding: 16px;
}
.tag-brand {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}
.tag-brand a {
    color: var(--gray-500);
}
.product-name {
    font-weight: 600;
    font-size: var(--font-size-base);
    margin-bottom: 12px;
}

.product-name a {
    overflow: hidden;
    height: 44px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 1rem;
    text-align: start;
    transition: all 0.3s;
}
.product-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "reventa retail"
        "pares pares";
    justify-content: center;
    row-gap: 1rem;
    padding-bottom: 1rem;
}
.price-block:nth-child(1) {
    grid-area: reventa;
    border-right: 1px solid var(--primary-color);
}
.price-block:nth-child(2) {
    grid-area: retail;
}
.price-block:nth-child(3) {
    grid-area: pares;
}
.price-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}
.price-label {
    color: var(--primary-color);
    letter-spacing: 0.02rem;
    margin-bottom: 0;
}
.price-value {
    color: var(--black-color);
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 0;
}
.btn-view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: none;
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-base);
    height: 48px;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 100%;
}
.btn-view-more:hover {
    background-color: var(--black-color);
}

.product-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.product-card:hover .product-image {
    transform: scale(1.1);
    transition: all 1s;
}
.product-card:hover .product-name a {
    color: var(--primary-color);
}

.btn-card-favoritos {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: url(../images/icons/heart-2.svg);
    background-color: var(--white-color);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center;
    border-radius: 4px;
    border: 1px solid transparent;
    outline: 0;
    width: 35px;
    height: 35px;
    transition: all 0.6s;
    z-index: 9;
}
.btn-card-favoritos:hover {
    background: url(../images/icons/heart-3.svg);
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    /* transform: scale(1.1); */
    transition: all 0.6s;
}
.btn-card-favoritos-active {
    width: 32px;
    height: 32px;
    background: url(../images/icons/heart-3.svg);
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    /* transform: scale(1.1); */
    border-radius: 4px;
    border: 1px solid transparent;
    outline: 0;
    padding: 0;
    transition: all 0.6s;
    border: 1px solid transparent;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 90;
}

/** fin productos  **/

/*===== Fin index  =====*/

/*==== Inicio catalogo ====*/

.catalogo {
    padding-top: 2rem;
    padding-bottom: 8rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.grid-catalogo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.container-promo-img.banner-catalogo {
    margin-bottom: 2rem;
    border-radius: var(--border-radius-sm);
}
.title-promo-catalogo {
    color: var(--black-color);
    font-size: 1.8rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 1rem;
}

/*= Filtro aside bar =*/
.container-title-toolbox-aside {
    color: var(--black-color);
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
}
.title-toolbox-aside {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 1;
    color: var(--black-color);
    padding-bottom: 0;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.aside-filtros .item-head {
    display: none;
}
.aside-filtros .item-head {
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--gray-400);
}
.cart-head-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.02rem;
    margin-bottom: 0;
}
.cart-head-btn {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background: var(--gray-100);
    border: 0;
    outline: 0;
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s;
}
.cart-head-btn img {
    width: 18px;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.card-filter {
    background-color: transparent;
    border-bottom: 1px solid var(--gray-400);
}
.card-filter:last-child {
    border: none;
}
.btn-aside,
.btn-subaside {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    outline: 0;
    padding-left: 0;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.05rem;
}
.btn-aside {
    font-size: 1.125rem;
}
.btn-subaside {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}
.btn-aside img,
.btn-subaside img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.card-content-aside {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.card-content-aside.active {
    height: 100%;
    transition: all 0.3s;
}
.list-aside {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-left: 0.5rem;
}
.list-aside li {
    margin-bottom: 0.5rem;
}
.input-filtro {
    display: none;
}
.label-filtro {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.2;
    padding-left: 1.6rem;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.label-filtro:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--text-color);
}
.label-filtro:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background-image: url(../images/icons/check.svg);
    background-position: center;
    background-size: 8px;
    background-repeat: no-repeat;
    background-color: var(--text-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.input-filtro[type="checkbox"]:checked ~ .label-filtro::after {
    opacity: 1;
    visibility: visible;
}

/*= inicio filtro categorias =*/
.card-content-subaside {
    list-style: none;
    height: 0;
    overflow: hidden;
    padding-left: 0.5rem;
    transition: all 0.3s;
}
.card-content-subaside.active {
    height: 100%;
    transition: all 0.3s;
}
/*= fin filtro categorias =*/

/* filtro rango de precios */
.card-slider-price {
    width: 90%;
    margin: 0 auto;
    padding-top: 1rem;
}
.container-inputs-precio {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    position: relative;
    left: 1px;
}
.item-container-inputs-precio {
    position: relative;
    display: inline-block;
}
.item-container-inputs-precio::before {
    content: "Gs.";
    font-size: 0.9rem;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    color: var(--text-color);
    z-index: 10;
}
.item-container-inputs-precio input {
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    width: 100%;
    min-width: 118px;
    height: 42px;
    color: var(--text-color);
    font-size: 0.9rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: end;
}
.noUi-target {
    background-color: var(--white-color);
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
}
.noUi-connect {
    background: var(--gray-400) !important;
}
.noUi-horizontal {
    left: 5px;
    height: 10px !important;
}
.noUi-horizontal .noUi-handle {
    width: 12px !important;
    top: 2px !important;
    cursor: grab !important;
    background: var(--primary-color);
    border: none;
    border-radius: 0;
}
html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
    right: -2px !important;
}
.noUi-handle:after,
.noUi-handle:before {
    display: none !important;
}
.btn-filter {
    height: 48px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border: 0;
    border-radius: var(--border-radius-sm);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s;
}
.btn-filter:hover {
    background-color: var(--black-color);
    border: 1px solid var(--black-color);
}

.title-tolbox {
    font-size: var(--font-size-xl);
    font-weight: 600;
    letter-spacing: 0.02rem;
    line-height: 1;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 0;
}

/* filtro ordenar */
.search-catalog {
    position: relative;
    padding-bottom: 2rem;
}
.toolbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr;
    flex-direction: column;
    padding-top: 0.6rem;
    padding-bottom: 2rem;
}
.toolbox-item {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.select-custom {
    height: 100%;
    display: grid;
    place-content: center;
}
.select-custom .input-filter {
    padding: 0.5rem;
    height: 38px;
    width: 100%;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-400);
    color: var(--text-color);

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;

    background: url("https://cdn1.iconfinder.com/data/icons/arrows-vol-1-4/24/dropdown_arrow-512.png");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: right;
    background-origin: content-box;
}
.select-custom .input-filter:focus {
    outline-color: var(--black-color);
}

.btn-filtro {
    display: none;
}

.title-catalogo {
    display: none;
}

.grid-productos {
    display: grid;
    grid-gap: 1.4rem;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
}

/* Filtro  Catalogo */
.toolbox-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.select-custom .input-filter {
    font-size: 0.8rem;
    width: 120px;
}
.btn-filtro {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    background: var(--primary-color);
    border: 0;
    outline: 0;
    height: 38px;
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--white-color);
    transition: all 0.3s;
}
.btn-filtro img {
    filter: invert(96%) sepia(100%) saturate(0%) hue-rotate(92deg)
        brightness(105%) contrast(106%);
    height: 16px;
    width: auto;
    object-fit: contain;
    aspect-ratio: 1/1;
}
.aside-filtros .item-head {
    display: flex;
}
.aside-filtros {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-1000px);
    z-index: 999;
    width: 320px;
    overflow-y: scroll;
    background: var(--white-color);
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    padding: 1.6rem;
    transition: all 0.3s;
}
.aside-filtros.visible {
    transform: translateX(0);
    transition: all 0.5s;
}
.container-title-toolbox-aside {
    display: none;
}

/*==== FIN catalogo ====*/

/*==== INICIO ficha ====*/

.ficha {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: var(--secundario);
}
.row-ficha {
    justify-content: center;
}
.header-card-ficha {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin-bottom: 1rem;
}

/*= inicio Slick Carousel =*/
.grid-ficha {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.slider-single > .slide:not(:first-child) {
    display: none;
}
.slider-nav > .slide:not(:first-child) {
    display: none;
}
.container-slider-product {
    width: 100%;
    margin-right: auto;
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 170px;
    z-index: 9;
}

.product-main-image {
    padding: 1.6rem;
    margin-right: 0.1rem;
    margin-bottom: 0;
    border-radius: var(--border-radius-sm);
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    overflow: hidden;
}
.slick-vertical.slider-nav .slick-slide {
    padding: 0.5rem;
    border-radius: 0.6rem;
    border: 1px solid var(--text-color);
    background: var(--white-color);
    margin-bottom: 1rem;
    cursor: pointer;
}
.slider-nav .slick-slide.is-active img {
    border: 2px solid var(--primary-color);
}
.slick-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slider-single {
    width: 620px;
    height: 100%;
    border-radius: 1rem;
    margin-left: auto;
    margin-right: auto;
}
.slider-nav {
    width: 440px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}
.slider-nav img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-500);
    background: var(--white-color);
    cursor: pointer;
}
.slick-next,
.slick-prev {
    top: 50%;
    transform: translateY(-50%);
}
.slider-single .slick-prev {
    left: -26px;
}
.slider-single .slick-next {
    right: -24px;
}
.slider-nav .slick-prev {
    left: -26px;
    display: none !important;
}
.slider-nav .slick-next {
    right: -16px;
    display: none !important;
}
/* .slick-prev:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/arrow-left.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.slick-next:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/arrow-right.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
} */
/* Fin Slick Carousel */

.card-text-ficha {
    width: 100%;
    height: 100%;
    margin-left: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.title-ficha {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.02rem;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1.4rem;
}
.text-ficha,
.text-ficha span {
    font-size: 1rem;
    color: var(--text-color);
    letter-spacing: 0.01rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* Ficha info */
.card-precio-ficha {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "reventa"
        "retail"
        "pares";
    row-gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    width: fit-content;
}
.item-precio-ficha {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}
.item-precio-ficha:nth-child(1) {
    grid-area: reventa;
    border: none;
    padding-right: 0;
}
.item-precio-ficha:nth-child(2) {
    grid-area: retail;
    padding-left: 0;
}
.item-precio-ficha:nth-child(3) {
    grid-area: pares;
}
.item-precio-ficha .price-label {
    font-size: 1rem;
    color: var(--primary-color);
}
.item-precio-ficha .price-value {
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--black-color);
}
.grid-especificaciones {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.card-colores-ficha {
    width: 100%;
}
.title-detalle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}
.subtitle-detalle {
    font-weight: 500;
    margin-bottom: 0;
}
.lista-colores {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(90px, 100%), 1fr));
    align-items: start;
    gap: 0.5rem;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.input-colores {
    display: none;
}
.label-colores {
    border: 2px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    padding: 2px;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: all 0.3s;
}
.label-colores:hover {
    border: 2px solid var(--primary-color);
}
.input-colores[type="radio"]:checked ~ .label-colores {
    border: 2px solid var(--primary-color);
}
.input-colores[type="radio"]:checked + .label-colores .label-colores-detalle {
    display: block;
    opacity: 1;
}
.label-colores-detalle {
    display: none;
    opacity: 0;
    padding: 0.2rem;
    transition: opacity 0.3s ease;
}
.label-colores-detalle span {
    color: var(--gray-700);
    font-size: var(--font-size-sm);
}
.label-colores-grid {
    display: grid;
    gap: 0.5rem;
}
.img-colores {
    border-radius: 50%;
    object-fit: cover;
}
.img-tamanos {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.text-label {
    color: var(--text-color);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0;
}
.grid-botones {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--gray-400);
    margin-top: 2rem;
    padding-bottom: 2rem;
}
.item-botones:nth-child(2) {
    flex: 1;
}
.btn-ficha-carrito {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius-sm);
    column-gap: 0.8rem;
    color: var(--white-color);
    cursor: pointer;
    height: 48px;
    padding: 0.6rem 1rem;
    width: 100%;
    transition: all 0.3s;
}
.btn-ficha-carrito img {
    width: 1.5rem;
    height: 1.5rem;
}
.btn-ficha-carrito:hover {
    background-color: var(--black-color);
}
.btn-ficha-add {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--white-color);
    font-size: 1rem;
    line-height: 1.2;
    height: 48px;
    padding: 0.6rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-ficha-add:hover {
    background-color: var(--black-color);
}

.detalle-seleccionado {
    margin-top: 2rem;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

.tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
    line-height: 1.3;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.tooltip-container:hover .tooltip-text,
.tooltip-container:focus-within .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Mobile: show on tap using :focus */
.tooltip-container:focus .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Fin Ficha info */

.list-ficha {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}
.list-ficha li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list-ficha li p {
    font-size: 1rem;
    margin: 0;
}
.list-ficha li p:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-color);
}

/* Encontrar Ficha */
.card-ficha-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 0;
}
.btn-ficha {
    width: fit-content;
    height: 48px;
    border-radius: var(--border-radius-sm);
    border: 0;
    background: var(--primary-color);
    color: var(--white-color);
    border: 0;
    outline: 0;
    padding: 0.5rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    transition: all 0.6s;
}
.btn-ficha:hover {
    background: var(--secundario);
    color: var(--primary-color);
}

.lista-curva,
.lista-seleccion {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.lista-curva li,
.lista-seleccion li {
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    min-width: 80px;
    text-align: center;
    padding: 0.8rem 0.4rem;
}

/* Fin Encontrar Ficha */

/*==== FIN ficha ====*/

/*==== INICIO carrito ====*/
.seccion-carrito {
    padding-top: 4rem;
    padding-bottom: 8rem;
}
.card-collapse {
    background: transparent;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--primary-color);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    padding: 1rem;
    width: 100%;
}
.card-collapse.collapsed {
    padding: 1.6rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-size: 1.475rem;
    color: var(--text-color);
    background: transparent;
    transition: all 0.3s;
}
.collapse {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.collapse.show {
    padding-top: 2.4rem;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid var(--primary-color);
    border-top: 0;
}

.collapse.collapse-carrito {
    padding-top: 2.4rem;
}

.collapse.collapse-carrito.show {
    padding-top: 2.4rem;
    border-bottom-left-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid var(--gray-400);
}
.table th {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color);
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.4rem;
    padding-bottom: 0;
}
.table td {
    vertical-align: middle;
}

.table.table-carrito th {
    padding-top: 0;
    padding-bottom: 0.5rem;
}

.product-col .product {
    max-width: 400px;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    margin: 0;
    box-shadow: none;
}
.product-col .product-media {
    margin-bottom: 0;
}
.product-col .product-media img {
    display: block;
    width: 75px;
    border-radius: 1rem;
}
.product-col .product-title {
    margin-bottom: 0;
    transition: all 0.3s;
}
.product-col .product-title a {
    display: inline-block;
    color: var(--text-color);
    font-weight: 500;
    font-size: var(--font-size-base);
    line-height: 1.25;
    margin: 0;
}
.product-col .product-title a:hover {
    color: var(--primary-color);
}
.table .price-col {
    color: var(--text-color);
    font-weight: 400;
    font-size: var(--font-size-base);
}
.table .total-col {
    white-space: nowrap;
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--text-color);
}

.cart-bottom {
    display: none;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.cart-discount {
    margin-top: 1rem;
    margin-left: auto;
    width: 320px;
}
.cart-discount p {
    font-size: 0.94rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.form-verificar-cupon {
    height: 46px;
    padding-left: 0.5rem;
    border-radius: 1.6rem;
    position: relative;
    border: 1px solid var(--gray-600);
    overflow: hidden;
}
.form-verificar-cupon input {
    border: 0;
    width: 100%;
    height: 100%;
    padding-left: 1rem;
}
.summary {
    padding: 1.6rem;
    border: 0.1rem dashed rgba(83, 83, 81, 0.5);
    background-color: var(--gray-200);
    border-radius: var(--border-radius-sm);
    margin-bottom: 2rem;
}
.summary-title {
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: 0;
    padding-bottom: 0.5rem;
    border-bottom: 0.1rem solid rgba(83, 83, 81, 0.5);
    margin-bottom: 0;
}
.table-summary {
    width: 100%;
}
.summary-subtotal {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid #f8f8f8;
    line-height: 1.2;
    padding-top: 1rem;
    padding-bottom: 0.2rem;
    width: 100%;
}
.summary-subtotal td:nth-child(1) {
    text-align: left;
}
.summary-subtotal td:nth-child(2) {
    text-align: right;
}
.summary-envio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.2;
    padding-top: 1rem;
    padding-bottom: 0.2rem;
}
.summary-envio td:nth-child(1) {
    text-align: left;
    color: var(--text-color);
    font-size: 0.9rem;
}
.summary-envio td:nth-child(2) {
    text-align: right;
    color: var(--text-color);
    font-size: 0.9rem;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.1rem solid #f8f8f8;
    line-height: 1.2;
    padding-top: 1rem;
    padding-bottom: 0.2rem;
    width: 100%;
}
.summary-total td:nth-child(1) {
    text-align: left;
    color: var(--text-color);
    font-size: 1.325rem;
}
.summary-total td:nth-child(2) {
    text-align: right;
    color: var(--text-color);
    font-size: 1.325rem;
}
.lista-btn-carrito {
    padding-left: 0;
    margin-top: 1.6rem;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn-checkout-line {
    height: 48px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-radius: var(--border-radius-sm);
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s;
}
.btn-checkout-line:hover {
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
}

/*==== FIN carrito ====*/

/*==== INICIO mi cuenta ====*/

.seccion-mi-cuenta {
    padding-top: 4rem;
    padding-bottom: 8rem;
}
.row-cuenta {
    row-gap: 1.6rem;
}
.nav-cuenta {
    padding: 1rem;
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    background: var(--gray-100);
    list-style: none;
    margin-bottom: 0;
    position: sticky;
    top: 160px;
}
.nav-cuenta li:last-child .nav-link {
    border-bottom: 0;
}
.nav-cuenta li .nav-link {
    font-size: 1rem;
    letter-spacing: 0.04rem;
    color: var(--text-color);
    line-height: 1.5;
    text-align: left;
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--gray-300);
    padding: 0.8rem 0.5rem;
    outline: 0;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    transition: all 0.3s;
}
.nav-cuenta li .nav-link.active {
    padding-left: 1.2rem;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 6px;
}
.nav-cuenta li .nav-link:hover {
    padding-left: 1.2rem;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 6px;
}
.tab-cuenta {
    padding: 2rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-400);
}
.title-tab-cuenta {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.04rem;
    color: var(--primary-color);
    margin-bottom: 1.6rem;
}
.subtitle-tab-cuenta {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    color: var(--text);
    margin-bottom: 0.5rem;
}
.form-map {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.grid-btn-cuenta {
    width: 420px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    margin-top: 1.6rem;
}
.grid-compras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    grid-gap: 1.4rem;
    margin-bottom: 2rem;
}
.grid-compras:last-child {
    margin-top: 2rem;
}
.card-compras {
    padding: 1.6rem;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-sm);
    border: 1px solid #ebebeb;
    transition: all 0.3s;
}
.list-card-compras {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.container-item-list-card-compras {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.container-item-list-card-compras p {
    margin-bottom: 0;
}
.card-actions-compras {
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    flex-wrap: wrap;
}
.text-sin-datos {
    padding: 2rem;
    border: 1px solid var(--black-color);
    border-radius: var(--border-radius-sm);
    text-align: center;
}
.btn-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    width: 190px;
    background: var(--primary-color);
    border: 0;
    border-radius: var(--border-radius-sm);
    color: var(--white-color);
    font-size: var(--font-size-base);
    letter-spacing: 0.02rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    text-align: center;
    transition: all 0.3s;
}
.btn-principal:hover {
    background: var(--black-color);
    color: var(--white-color);
}
.btn-principal:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(58%) saturate(5718%)
        hue-rotate(264deg) brightness(80%) contrast(122%);
}
.btn-principal.mt-0 {
    margin-top: 0;
}
.btn-outline-principal {
    display: block;
    width: 190px;
    margin-left: auto;
    margin-left: auto;
    margin-top: 1rem;
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.02rem;
    color: var(--primary-color);
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s;
}
.btn-outline-principal:hover {
    border: 1px solid var(--black-color);
    background: var(--black-color);
    color: var(--white-color);
}
.btn-remove {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.5rem;
    width: fit-content;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    color: var(--primary-color);
    min-width: 127px;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-remove img {
    filter: var(--filter-primary);
}
.btn-remove:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
}
.btn-remove:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%)
        hue-rotate(223deg) brightness(117%) contrast(96%);
}
.table.table-tarjetas td {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

textarea.form-control-textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    padding: 0.375rem 0.75rem;
    background: transparent;
    font-size: 16px;
    box-shadow: none;
    height: 80px;
}

.btn-cargar-tarjeta {
    color: var(--black-color);
    text-decoration: underline;
}

.credit-container {
    background-color: var(--gray-400);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    max-width: 600px;
    margin: auto;
}

.credit-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.credit-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.credit-used,
.credit-available {
    font-size: var(--font-size-base);
}

.credit-used strong {
    color: #d9534f;
}

.credit-available strong {
    color: #5cb85c;
}

.credit-progress {
    margin-top: var(--spacing-sm);
}

.progress-bar {
    background-color: var(--gray-300);
    height: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    width: 0;
    transition: width 0.4s ease-in-out;
}

.credit-summary {
    text-align: right;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
    color: var(--gray-700);
}

.credit-box-title {
    display: block;
    font-size: var(--font-size-lg);
}
.credit-box-number {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.credit-box-total {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    margin-top: 3rem;
    text-align: end;
}

.progress {
    height: 16px;
    background-color: var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
}
.progress-bar {
    width: 15%;
    background-color: var(--primary-color);
}

/*===== FIN mi cuenta =====*/

/*===== inicio favoritos =====*/

.grid-favoritos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    grid-gap: 1.6rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-400);
}

/*===== fin favoritos =====*/

/*==== inicio reestablecer contrasenha ====*/
.reset-password-page {
    padding-top: 4rem;
    padding-bottom: 8rem;
}
.card-reset {
    background-color: var(--gray-100);
    border: 1px solid var(--gray-400);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem 1.5rem;
}
.card-header-reset {
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-400);
}
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius-sm);
    color: var(--white-color);
    letter-spacing: 0.02rem;
    height: 48px;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.btn-submit:hover {
    background-color: var(--black-color);
}

/*==== fin reestablecer contrasenha ====*/

/*==== Inicio Footer ====*/

.footer {
    background-color: var(--neutral-color);
    color: var(--black-color);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.tagline-footer {
    font-size: 0.95rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer-title {
    color: var(--black-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background: linear-gradient(135deg, #d6d6d6, #eaeaea);
    color: var(--white-color);
}

.footer-contact {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact:hover {
    color: var(--primary-color);
}
.footer-contact:hover svg {
    fill: var(--primary-color);
}
.newsletter-group {
    position: relative;
}
.form-newsletter {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-300);
    border-radius: 0;
    padding: 1rem 0;
}
.form-newsletter:focus {
    background-color: transparent;
    border-color: var(--gray-300);
    box-shadow: none;
}
.footer-btn-submit {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-300);
    border-radius: 0;
    height: 48px;
    padding-right: 0;
    padding-left: 1rem;
    z-index: 2;
    transition: all 0.3s;
}
.footer-btn-submit:hover {
    color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checkbox-label {
    font-size: var(--font-size);
    color: var(--text-color);
    line-height: 1.4;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer-bottom a {
    color: var(--primary-color);
}

/*==== Fin Footer ====*/

/*==== INICIO MODAL CARRITO ====*/

.title-modal {
    font-size: 1.5rem;
    letter-spacing: 0.02rem;
    text-align: center;
    margin-bottom: 1.2rem;
}
.modal-header {
    border-bottom: 0;
}
.btn-close:focus {
    box-shadow: 0 0 0 0.25rem var(--gray-100);
}
.card-product-modal {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
}
.product-title-modal {
    letter-spacing: 0.02rem;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}
.details-product-modal {
    display: flex;
    flex-wrap: wrap;
    align-items: self-end;
    justify-content: center;
    gap: 0.8rem;
}
.product-cantidad-modal {
    letter-spacing: 0.02rem;
    text-align: center;
    color: var(--gray-700);
    margin-bottom: 0;
}
.precio-producto-modal {
    font-size: 1.125rem;
}
.precio-total-modal {
    font-size: 1.125rem;
}
.grid-buttons-modal {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.btn-primary {
    height: 48px;
    width: 100%;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-radius: var(--border-radius-sm);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s;
}
.btn-outline-primary-2 {
    height: 48px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-radius: var(--border-radius-sm);
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
}
.btn-outline-primary-2:hover {
    color: var(--white-color);
    background: var(--black-color);
    border: 1px solid var(--black-color);
}

/*==== FIN MODAL CARRITO ====*/

/* === inicio mostrar/ocultar contrasenia === */
.toggle-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.eye-open-icon {
    display: none;
    width: 24px;
    height: 24px;
}
.eye-closed-icon {
    display: inline;
    width: 24px;
    height: 24px;
}
/* === fin mostrar/ocultar contrasenia === */

/* === inicio configuracion swiper === */

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-sides-offset: 5px;
    --swiper-navigation-size: 20px;
    --swiper-navigation-color: var(--primary-color);
    background-color: var(--gray-100);
    border-radius: 100%;
    padding: 1.25rem;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    --swiper-navigation-color: var(--white-color);
    background-color: var(--primary-color);
}

/* === fin configuracion swiper === */

@media (min-width: 576px) and (max-width: 768px) {
    .container {
        max-width: 620px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1250px) {
    .seccion-carrito .col-lg-9 {
        width: 70%;
    }
    .seccion-carrito .col-lg-3 {
        width: 30%;
    }
}

@media (min-width: 768px) {
    .page-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .section-heading {
        font-size: var(--font-size-xxl);
    }
    .section {
        padding: var(--spacing-xl) var(--spacing-xl);
    }
    .section-head {
        flex-direction: row;
    }
    .section-cta {
        width: unset;
    }
    .section-link {
        width: 140px;
    }
    .hero-title {
        font-size: var(--font-size-xxl);
    }

    /*== Inicio Ficha Producto ==*/

    /*== Inicio Ficha Producto ==*/
    .card-precio-ficha {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "reventa retail"
            "pares pares";
    }
    .item-precio-ficha {
        align-items: center;
    }
    .item-precio-ficha:nth-child(1) {
        border-right: 1px solid var(--primary-color);
        padding-right: 1.25rem;
    }
    .item-precio-ficha:nth-child(2) {
        padding-left: 1.25rem;
    }
    /*== Inicio Footer ==*/
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .hero-main-section {
        padding-bottom: 4rem;
    }
    /*== Fin Footer ==*/
}

@media (min-width: 992px) {
    .container {
        max-width: 1090px;
    }
    /*== Inicio header ==*/
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar__mobile-buttons {
        display: none;
    }
    .navbar__right {
        max-height: none;
        opacity: 1;
        overflow: visible;
    }
    .navbar__menu {
        display: flex;
        align-items: center;
        margin-top: 0;
        margin-bottom: 0;
    }
    .navbar__button {
        margin-top: 0;
    }
    .navbar__logo img {
        height: 28px;
    }
    .container-cat-submenu {
        display: block;
        padding: 0 1.5rem;
    }
    .menu-mobile {
        display: none;
    }
    /*== Fin header ==*/

    /*== Inicio Catalogo ==*/
    .toolbox {
        flex-direction: row;
    }
    .toolbox-left {
        justify-content: flex-end;
        margin-top: 0;
    }
    /*== Fin Catalogo ==*/

    /*== Inicio Footer ==*/
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
        gap: 2rem;
    }
    .footer-column {
        display: flex;
        justify-content: center;
        padding: 0 0.875rem;
    }
    /*== Fin Footer ==*/
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (min-width: 1100px) {
    /*== Inicio Catalogo ==*/
    .title-catalogo {
        display: block;
    }
    .grid-catalogo {
        grid-template-columns: 280px 1fr;
        grid-gap: 1.6rem;
    }
    .toolbox-item:first-child {
        display: none;
    }
    .card-filter {
        padding: 1rem;
    }
    .search-catalog {
        padding: 1.5rem 1rem 0.5rem;
    }

    /* aside filter catalogo */
    .container-title-toolbox-aside {
        display: block;
    }
    .aside-filtros .item-head {
        display: none;
    }
    .aside-filtros {
        position: inherit;
        transform: translateX(0);
        overflow: inherit;
        width: inherit;
        padding: 0;
    }
    /*== Fin Catalogo ==*/
}

@media screen and (max-width: 1200px) {
    /* header */
    .navbar-middle {
        grid-template-columns: 1fr minmax(500px, 500px) 1fr;
    }

    .slider-single {
        width: 550px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media screen and (max-width: 1100px) {
    /* Ficha */
    .title-ficha {
        font-size: 1.8rem;
        line-height: 1.5;
    }
    .grid-ficha {
        display: flex;
        flex-direction: column;
    }
    .item-ficha:nth-child(1) {
        position: initial;
    }
    .container-slider-product {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }
    .slider-single {
        width: 100%;
    }
    .slider-single .slick-prev,
    .slider-single .slick-next {
        display: none !important;
    }
    .slider-nav {
        width: 100%;
        height: auto;
    }
    .slider-nav img {
        border-radius: var(--border-radius-sm);
        width: 96%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .title-principal-description {
        font-size: 1.6rem;
    }
    .title-description {
        font-size: 1.4rem;
    }
    .subtitle-nosotros {
        font-size: 1.2rem;
    }
    .text-description {
        font-size: 1rem;
    }
    .card-text-ficha {
        padding: 0;
    }
    /* Fin Ficha */

    /* Inicio carrito page */
    .table.table-carrito td {
        padding: 1rem 0.5rem;
    }
    .table.table-carrito thead {
        display: none;
    }
    .table.table-carrito,
    .table.table-carrito tbody,
    .table.table-carrito tr,
    .table.table-carrito td {
        width: 100%;
        display: block;
    }
    .product-col .product {
        width: 100%;
        padding-right: 0;
    }

    .table.tabla-resumen td {
        padding: 1rem 0.5rem;
    }
    .table.tabla-resumen thead {
        display: none;
    }
    .table.tabla-resumen,
    .table.tabla-resumen tbody,
    .table.tabla-resumen tr,
    .table.tabla-resumen td {
        width: 100%;
        display: block;
    }
    /* Fin carrito page */
}

@media screen and (max-width: 992px) {
    /* == INICIO HEADER == */
    .navbar-bottom {
        display: none;
    }
    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        padding: 0;
        border: none;
        width: fit-content;
    }
    .navbar-toggler img {
        width: 28px;
        height: 28px;
    }
    .nav-not-mobile {
        display: none;
    }
    .navbar-middle {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
            "mobile logo actions"
            "search search search";
        gap: 1rem;
    }
    .nav-item-mobile {
        display: block;
        grid-area: mobile;
    }
    .navbar-logo {
        grid-area: logo;
    }
    .navbar-search {
        grid-area: search;
    }
    .nav-middle-actions {
        grid-area: actions;
    }
    .navbar-middle-logo img {
        max-height: 40px;
    }
    .search-modal__container {
        margin-left: 0;
    }
    .nav-link-middle {
        padding: 0;
    }
    /* == FIN HEADER == */

    /* == INICIO MI CUENTA == */

    /* tarjetas */
    .table.table-tarjetas thead {
        display: none;
    }

    .table.table-tarjetas tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: var(--border-radius-sm);
        padding: 0.5rem;
    }
    .table.table-tarjetas tr:last-child td {
        display: block;
    }

    .table.table-tarjetas td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .table.table-tarjetas td:last-child {
        border-bottom: none;
    }

    .table.table-tarjetas td::before {
        content: attr(data-label);
        font-weight: bold;
        flex: 1;
        margin-right: 1rem;
        color: #555;
    }

    /* == FIN MI CUENTA == */
}
