*,
button:focus {
    outline: none;
    box-shadow: none;
}

body {
    background: #fff;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    overflow-x: hidden;
    color: #38464d;
    font-weight: 400;
}

html {
    position: relative;
    min-height: 100%;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    width: 100%;
    min-height: 100vh;
}

.page-wrapper {
    background: transparent;
    padding: 45px 0;
    position: relative;
}

.page-wrapper.__home {
    padding-top: 0;
}


a,
a:hover,
a:focus,
a.btn:hover,
a.nav-link:hover {
    text-decoration: none;
    transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    color: inherit;
}

/***Botones***/
.btn_cta {
    min-width: 130px;
    padding: 9px 22px;
    border-radius: 4px;
    background: #fff;
    color: #0772b3;
    font-size: 14px;
    font-weight: 600;
}

.btn.btn_cta:hover {
    background: #fff;
    color: #0772b3;
}

.btn_cta2 {
    width: auto;
    padding: 9px 22px;
    border-radius: 4px;
    background: #0772b3;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.btn.btn_cta2:hover {
    background: #0772b3;
    color: #fff;
}

.btn_cart,
.btn_buy {
    height: 40px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_cart {
    background: #38464d;
}

.btn_cart:hover {
    background: #38464d;
    color: #fff !important;
}

.btn_buy {
    background: #ff6b00;
}

.btn_buy:hover {
    background: #ff6b00;
    color: #fff !important;
}


input:focus,
textarea:focus,
.form-control:focus,
input:active,
textarea:active,
.form-control:active {
    box-shadow: none !important;
    background-color: inherit;
    color: inherit;
}

.form-control:focus {
    border-color: #ced4da !important;
}

/***Go to top***/
#goTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 3rem;
    display: none;
    background-color: #fff;
    color: #f9b73f;
    border: 1px solid #f9b73f;
    border-radius: 9999px;
    padding: .65rem .875rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
}

/*CUSTOM Checkbox*/
.custom_check {
    display: flex;
    align-items: center;
    gap: 8px;
}
.custom_check .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    border: 1px solid #0772b3;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: none;
}
.custom_check .form-check-input:hover {
    border-color: #055d92;
    background: #eef7fc;
}
.custom_check .form-check-input:focus {
    box-shadow: none;
    border-color: #0772b3;
}
.custom_check .form-check-input:checked {
    background-color: #0772b3;
    border-color: #0772b3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round' d='M5 10l3 3 7-7'/%3E%3C/svg%3E");
    background-size: 12px;
}
.custom_check .form-check-label {
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

/*h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1 {
    line-height: 40px;
    font-size: 36px;
}

h2 {
    line-height: 36px;
    font-size: 24px;
}

h3 {
    line-height: 30px;
    font-size: 21px;
}

h4 {
    line-height: 22px;
    font-size: 18px;
}

h5 {
    line-height: 18px;
    font-size: 16px;
    font-weight: 400;
}

h6 {
    line-height: 16px;
    font-size: 14px;
    font-weight: 400;
}
textarea {
    resize: none;
} */



/*Azul principal: 0772b3
Azul claro: eef7fc
Gris: f1f5f6
Azul botón carrito: 38464d
Azul newsletter: 0f3d57
Naranja botón pag producto: f97316*/




:root {
    --azul_principal: #0772b3;
    --azul_claro: #eef7fc;
    --gris: #f1f5f6;
    --azul_carrito: #38464d;
    --azul_newsletter: #0f3d57;
}


/***LOGIN Y REGISTRO***/
.auth_page {
    min-height: 100vh;
    background: #fff;
}

.auth_row {
    /* min-height: calc(100vh - 140px); */
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth_image {
    height: 100vh;
    width: 60%;
    overflow: hidden;
    background: #eef7fc;
}

.auth_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth_box {
    margin: 0 auto;
}

.auth_logo {
    margin-bottom: 42px;
}

.auth_logo img {
    width: 290px;
    margin: 0 auto;
}

.auth_panel{
    width: 485px;
    max-width: 95%;
}

.auth_panel h1 {
    margin-bottom: 28px;
    text-align: center;
    color: #0772b3;
    font-size: 28px;
    font-weight: 800;
}

.auth_panel .form-control {
    border: 0;
    border-bottom: 1px solid #777;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.auth_panel .form-control:focus {
    border-color: #0772b3;
    box-shadow: none;
}

.auth_panel .form-floating > label {
    color: #7a858b;
}

.auth_panel .form-floating > #password {
    padding-right: 30px;
}

#visi_pass {
    position: absolute;
    top: 28px;
    right: 10px;
    cursor: pointer;
}

.auth_link {
    display: inline-block;
    margin-bottom: 22px;
    color: #7a858b;
    font-size: 13px;
    text-decoration: underline;
}

.auth_page .btn_buy,
.auth_outline{
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 800;
}

.auth_outline {
    border: 1px solid #0772b3;
    background: #fff;
    color: #0772b3;
    line-height: 36px;
}

.auth_separator {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
    color: #38464d;
    font-size: 14px;
    font-weight: 800;
}

.auth_separator::before,
.auth_separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dce3e6;
}


/***MENU***/
.site_header {
    padding-top: 28px;
}

.header_top {
    margin-bottom: 14px;
    font-size: 13px;
}

.header_top .subname {
    margin: 0;
    color: #0772b3;
    font-weight: 600;
}

.header_actions {
    gap: 20px;
}

.search_box {
    width: 340px;
    height: 36px;
    border: 1px solid #d9e1e5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.search_box input {
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 12px;
    font-style: oblique;
}

.search_box button {
    border: 0;
    background: transparent;
    color: #9aa6ac;
}

.header_phone {
    color: #38464d;
    font-weight: 700;
    line-height: 1;
}

.header_login,
.header_cart {
    color: #38464d;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.header_login {
    margin-right: -12px;
}

.cart_count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.main_nav {
    height: 52px;
    padding: 0 28px;
    border-radius: 26px;
    background: #f1f5f6;
    /* box-shadow: 0 4px 18px rgba(0, 0, 0, .08); */
    position: relative;
    z-index: 2;
    width: 92%;
    margin: 0 auto;
}

.navbar-brand img {
    width: 170px;
    height: 30px;
    object-fit: contain;
}

.main_nav .nav-link {
    font-size: 12px;
    color: #33454e;
    font-weight: 700;
    padding: 0 8px;
    line-height: 51px;
}

/* Megamenu */
.mega_item {
    position: static;
}

.mega_menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 97.5%;
    padding: 28px 42px;
    background: #f1f5f6;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .2s ease;
}

.mega_item:hover .mega_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px 42px;
    align-items: start;
}

.mega_col {
    min-width: 0;
}

.mega_title {
    display: inline-block;
    margin-bottom: 2px;
    color: #33454e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.mega_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega_list li {
    margin-bottom: 2px;
}

.mega_list a {
    color: #777;
    font-size: 12px;
    text-decoration: none;
    padding: 1px 5px;
}

.navbar-nav > a.nav-link:hover,
.navbar-nav > .mega_item > a.nav-link:hover,
.mega_title:hover,
.navbar-nav > a.active,
.navbar-nav > .mega_item > a.nav-link.active {
    color: #1985b7;
}

.mega_list a:hover {
    color: #1985b7;
    background: #e8f5fb;
}

/* Megamenu mobile */
.mobile_menu_btn {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
}

.mobile_menu_btn span {
    width: 26px;
    height: 2px;
    display: block;
    background: #34464e;
}

.mobile_offcanvas {
    width: 360px;
    border: 0;
}

.offcanvas-header {
    padding: 22px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile_logo img {
    max-height: 42px;
}

.mobile_close {
    border: 0;
    background: transparent;
    color: #34464e;
    font-size: 34px;
    line-height: 1;
}

.offcanvas-body {
    padding: 22px 24px 28px;
}

.mobile_search {
    height: 42px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    border: 1px solid #cfcfcf;
    border-radius: 30px;
    overflow: hidden;
}

.mobile_search input {
    width: 100%;
    border: 0;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    font-style: italic;
}

.mobile_search button {
    width: 46px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #34464e;
}

.mobile_menu,
.mobile_menu ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.mobile_menu ul {
    margin: 0;
}

.mobile_menu > li:not(:last-child) {
    border-bottom: 1px solid #ececec;
}

.mobile_menu a,
.mobile_menu_link,
.mobile_submenu_link {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    color: #34464e;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}

.mobile_menu_link span,
.mobile_submenu_link span {
    font-size: 22px;
    line-height: 1;
}

.mobile_submenu {
    padding: 4px 0 12px;
}

.mobile_submenu ul {
    padding-left: 14px;
}

.mobile_submenu a,
.mobile_submenu_link {
    min-height: 38px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.mobile_childmenu {
    padding: 2px 0 10px 12px;
}

.mobile_childmenu a {
    min-height: 32px;
    color: #777;
    font-size: 13px;
    font-weight: 400;
}

.mobile_view_all {
    color: #1985b7 !important;
}

.mobile_extra {
    display: grid;
    gap: 12px;
    margin-top: 48px;
}

.mobile_extra a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #34464e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}




/***FOOTER***/
.site_footer {
    border-top: 3px solid #cfd8dc;
    padding: 42px 0 12px;
    font-size: 14px;
}

.site_footer h3 {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
}

.site_footer a,
.site_footer p {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    ;
}

.site_footer .img_kitdigi{
    width: 60%;
    margin-top: 40px;
}

.footer_bottom {
    margin-top: 22px;
    padding-top: 12px;
    border-top: 2px solid #cfd8dc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_bottom p {
    margin: 0;
    font-size: 12px;
}

.footer_bottom img {
    max-width: 230px;
    object-fit: contain;
}


/***HOME**/
.hero_section {
    margin-top: -26px;
}

.hero_box {
    height: 660px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.hero_box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 39, 45, .55);
}

.hero_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_content {
    position: absolute;
    left: 55px;
    right: 55px;
    bottom: 45px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: #fff;
}

.hero_content h1 {
    max-width: 480px;
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
}

.hero_text {
    max-width: 375px;
}

.hero_text p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.benefits_section {
    padding: 62px 0;
}

.benefit_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.benefit_icon {
    color: #0772b3;
    font-size: 56px;
    line-height: 1;
}

.benefit_item p {
    margin: 0;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.categories_section {
    padding-bottom: 75px;
}

.category_card {
    background: #f1f5f6;
    border-radius: 8px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.category_card h3 {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 800;
}

.category_card a {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #38464d;
    font-weight: 600;
    line-height: 1;
    position: relative;
}

.category_card a::before {
    content: " ";
    width: 40%;
    height: 2px;
    background-color: #0772b3;
    position: absolute;
    top: 16px;
    z-index: 10;
}

.category_card a>span {
    color: #c2c5c6;
    font-size: 13px;
    transition: transform .2s ease;
}

.category_card a:hover>span {
    transform: translateX(4px);
}

.category_large {
    height: 575px;
    background: #eef7fc;
    text-align: center;
}

.category_small {
    height: 245px;
    background: #eef7fc;
    text-align: center;
}

.category_mini {
    height: 140px;
}

.category_small img {
    position: absolute;
    right: 32%;
    bottom: 10px;
    width: 40%;
    height: auto;
    object-fit: contain;
}

.category_mini img {
    position: absolute;
    right: 18px;
    bottom: 10px;
    width: 25%;
    height: auto;
    object-fit: contain;
}

.category_large img {
    position: absolute;
    right: 50px;
    bottom: 10px;
    width: 65%;
    height: auto;
    object-fit: contain;
}

.products_section {
    padding: 10px 0 58px;
}

.products_section h2,
.brands_section h2,
.newsletter_section h2 {
    color: #0772b3;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
}

.slider_controls {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.slider_controls button {
    width: 34px;
    height: 34px;
    border: 1px solid #cdd2d3;
    border-radius: 50%;
    background: transparent;
    color: #cdd2d3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.slider_controls button:hover {
    color: #38464d;
}

.product_slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.product_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product_card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8eb;
    border-radius: 6px;
    background: #fff;
    min-height: 330px;
}

.product_slider .product_card {
    flex: 0 0 calc((100% - 96px) / 4);
    max-width: calc((100% - 96px) / 4);
}

.product_card_inner {
    padding: 18px 16px;
    height: 100%;
    transition: transform .25s ease;
}

.product_card:hover img {
    margin-bottom: 10px;
}

.product_card img {
    width: 100%;
    height: 195px;
    object-fit: contain;
    margin-bottom: 40px;
    transition: margin-bottom .25s ease;
}

.product_card h3 {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.3em * 2);
}

.product_card p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.product_card .product_price_offer {
    margin-right: 18px;
}
.product_card .product_price_offer + p {
    color: #0772b3;
}

.product_badge_offer_minia {
    background-color: #ff6b5b;
    padding: .245rem .625rem;
    color: #fff;
    font-weight: 600;
    position: absolute;
    top: 10px;
    left: 8px;
    font-size: 11px;
}

.cart_btn {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 40px;
    padding: 0 18px;
    background: #38464d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    transition: bottom .25s ease;
}

.product_card:hover .cart_btn {
    bottom: 0;
    color: #fff;
}

.info_section {
    padding: 8px 0 64px;
}

.info_card {
    min-height: 224px;
    padding: 26px;
    border-radius: 6px;
    background: url('../img/fondo_textura.jpg') no-repeat center center / cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info_card h3 {
    font-size: 21px;
    font-weight: 700;
}

.info_card p {
    max-width: 210px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    height: 87.5px;
}

.info_card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.featured_section {
    padding: 10px 0 78px;
}

.featured_section h2 {
    margin-bottom: 32px;
}

.featured_section .product_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.brands_section {
    padding: 45px 0;
}

.brands_list {
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.brand_item {
    flex: 0 0 auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand_item img {
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
}

.newsletter_section {
    padding: 60px 0 12px;
}

.newsletter_section p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.newsletter_form {
    display: flex;
    height: 44px;
}

.newsletter_form input {
    width: 100%;
    border: 1px solid #e2e8eb;
    border-radius: 6px;
    border-right: 0;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 400;
}

.newsletter_form button {
    width: 150px;
    border: 0;
    background: #0f3d57;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 0 6px 6px 0;
}

/***PAGINA CATEGORIA***/
.category_page {
    padding-bottom: 70px;
}

.breadcrumb_nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 18px 0 22px;
    font-size: 13px;
}

.breadcrumb_nav a {
    color: #7a858b;
}

.category_tit {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.category_text {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.25;
}

.products_toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 26px;
}

.view_switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 48%;
    font-size: 12px;
}

.view_btn {
    width: 28px;
    height: 28px;
    border: 0;
    background: #fff;
    display: grid;
    gap: 3px;
    padding: 7px;
}

.view_btn.active {
    background: #f1f5f6;
}

.view_btn:not(.view_list) {
    grid-template-columns: repeat(2, 1fr);
}

.view_btn span {
    display: block;
    background: #38464d;
}

.view_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.view_list span {
    height: 3px;
}

.order_select {
    height: 36px;
    padding: 0 8px;
    border: 1px solid #dce3e6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

.order_select select {
    border: 0;
}

.categories_sidebar {
    min-height: 340px;
    padding: 16px 24px;
    background: #f1f5f6;
    border-radius: 8px;
}

.sidebar_header,
.category_item_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar_header {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.sidebar_toggle,
.category_toggle {
    border: 0;
    background: transparent;
    color: #38464d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
}

.category_menu,
.subcategory_menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category_item {
    margin-bottom: 9px;
    font-size: 14px;
}

.category_item a {
    font-weight: 500;
}

.category_item_head:hover>a,
.category_item_head>a.active,
.subcategory_menu>li:hover>a,
.subcategory_menu>li>a.active {
    color: #0772b3;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.subcategory_menu {
    padding: 12px 0 0 16px;
}

.subcategory_menu li {
    margin-bottom: 8px;
}

.category_toggle {
    position: relative;
    width: 16px;
    height: 16px;
    border: 0;
    background: transparent;
    padding: 0;
}

.category_toggle::before,
.category_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    background: #38464d;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .25s ease;
}

.category_toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.category_toggle[aria-expanded="true"]::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

/* Filtro categorias */
.products_toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.filter_btn {
    font-weight: 500;
    height: 36px;
    padding: 0 18px;
    border: 1px solid #dce3e6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    background: transparent;
}

.category_filter_offcanvas {
    width: 340px;
}

.category_filter_offcanvas .offcanvas-header {
    padding: 22px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.category_filter_offcanvas .offcanvas-header h5 {
    margin: 0;
    color: #243846;
    font-size: 22px;
    font-weight: 700;
}

.category_filter_offcanvas .offcanvas-body {
    padding: 0;
}

.category_filter_offcanvas .categories_sidebar {
    height: 100%;
    padding: 24px;
    border-radius: 0;
    background: #f1f5f6;
}

/* @media (max-width: 575.98px) {
    .category_filter_offcanvas {
        width: 88%;
    }
} */


/* Pagination */
.block_pagination > nav > div:last-child > div:first-child{
    display: none;
}

.pagination {
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.page-item .page-link {
    width: 34px;
    height: 34px;
    border: 1px solid #dce3e6;
    border-radius: 50% !important;
    background: #fff;
    color: #38464d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
}

.page-item.active .page-link {
    border-color: #0772b3;
    background: #0772b3;
    color: #fff;
}

.page-item .page-link:hover {
    border-color: #0772b3;
    color: #0772b3;
    background: #eef7fc;
}

.page-item.active .page-link:hover {
    color: #fff;
    background: #0772b3;
}

.page-item.disabled .page-link {
    opacity: .35;
    pointer-events: none;
}


/***PRODUCT PAGE***/
.product_gallery {
    position: relative;
    text-align: center;
}

.gallery_actions {
    position: absolute;
    top: 35px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery_actions button {
    width: 28px;
    height: 28px;
    line-height: 28px;
    ;
    border: 0;
    border-radius: 50%;
    background: #f1f5f6;
}

.gallery_main {
    width: 100%;
    max-width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}

.gallery_main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery_thumbs {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.gallery_thumbs>div {
    width: 118px;
    height: 132px;
    border: 1px solid #e2e8eb;
    border-radius: 4px;
    background: #fff;
    padding: 4px;
    cursor: pointer;
}

.gallery_thumbs div.active {
    border-color: #0772b3;
    opacity: .75;
}

.gallery_thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_info {
    max-width: 100%;
}

.product_info h1 {
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 22px;
}

.product_block_price {
    display: flex;
    align-items: flex-start;
    align-items: center;
}

.product_price {
    margin: 0;
    color: #0772b3;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.product_tax {
    margin-bottom: 8px;
    font-size: 12px;
}

.product_price_offer {
    color: #999;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    text-decoration: line-through;
    margin-right: 26px;
}

.product_excerpt {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

.product_code {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.product_stock {
    margin-bottom: 26px;
    color: #71b944;
    font-size: 14px;
    font-weight: 600;
}

.product_badge_offer {
    background-color: #ff6b5b;
    padding: .245rem .925rem;
    color: #fff;
    font-weight: 600;
    position: absolute;
    top: 35px;
    right: 10px;
    font-size: 15px;
}

.product_buy {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 8px;
    margin-bottom: 34px;
}

.quantity_box {
    display: flex;
    height: 40px;
    border: 1px solid #dce3e6;
}

.quantity_box input {
    width: 100%;
    border: 0;
    border-right: 1px solid #dce3e6;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.quantity_box input:focus {
    outline: none;
}

.quantity_buttons {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.quantity_buttons button {
    border: 0;
    background: #fff;
    line-height: 1;
}

.quantity_buttons button:first-child {
    border-bottom: 1px solid #dce3e6;
}

/* Chrome, Safari, Edge */
.quantity_box input::-webkit-outer-spin-button,
.quantity_box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.quantity_box input[type=number] {
    -moz-appearance: textfield;
}

.finance_box {
    border: 1px solid #dce3e6;
    padding: 12px 14px;
    font-size: 12px;
}

.finance_head,
.finance_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.finance_row select {
    width: 120px;
    height: 22px;
    border: 1px solid #dce3e6;
}

.finance_btn {
    width: 100%;
    height: 28px;
    border: 0;
    background: #38464d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.finance_box p {
    margin: 8px 0 0;
    color: #8b969c;
    font-size: 10px;
}

.product_tabs {
    padding-top: 55px;
}

.product_tabs_nav {
    justify-content: center;
    gap: 55px;
    margin-bottom: 24px;
}

.product_tabs_nav button {
    border: 0;
    background: transparent;
    color: #999;
    font-size: 24px;
    font-weight: 500;
}

.product_tabs_nav button.active {
    color: #38464d;
    font-weight: 800;
}

.tab-content {
    color: #38464d;
    font-size: 13px;
    line-height: 1.45;
}

.additional_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.additional_table tr {
    border-bottom: 1px solid #e8e8e8;
}

.additional_table td {
    padding: 10px 16px;
    font-size: 14px;
    vertical-align: top;
}

.additional_table .additional_label {
    font-weight: 600;
    width: 200px;
    background: #f8f9fa;
}

.product_benefits {
    padding: 80px 0;
}

.benefits_grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(5, 1fr);
    gap: 18px;
    align-items: stretch;
}

.benefit_logo img {
    width: 210px;
    max-width: 100%;
    height: 45px;
    object-fit: contain;
    margin-bottom: 12px;
}

.benefit_logo .marca_text_fallback {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    margin-bottom: 12px;
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.2s, color 0.2s;
}

.benefit_logo .marca_text_fallback:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}

.benefit_logo p {
    font-size: 12px;
    font-weight: 700;
}

.benefit_box {
    min-height: 120px;
    padding: 20px 16px;
    border-radius: 8px;
    background: #f1f5f6;
}

.benefit_box h3 {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.benefit_box p {
    margin: 0;
    line-height: 1.25;
    font-size: 15px;
}

.related_products h2 {
    margin-bottom: 28px;
    color: #0772b3;
    font-size: 24px;
    font-weight: 700;
}

.related_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.related_controls.slider_controls{
    margin: -16px 0 28px 0;
}

.related_grid.is_carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.related_grid.is_carousel .product_card {
    flex: 0 0 calc((100% - 96px) / 5);
}


/***CHECKOUT***/
.cart_logo {
    position: relative;
    text-align: center;
    margin-bottom: 54px;
}
.cart_back {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 36px;
}
.cart_steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 70px;
}
.cart_steps span {
    position: relative;
    font-size: 21px;
}
.cart_steps span.active {
    font-weight: 700;
}
.cart_steps span:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -32px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 36px;
    font-weight: 300;
    width: 16px;
}

.cart_content {
    width: 998px;
    max-width: 100%;
    margin: 0 auto;
}

.cart_vacio{
    text-align:center;
    padding: 0 0 40px;
}

.cart_vacio .btn_buy{
    width:280px;
    max-width: 100%;
    margin:20px auto;
}

.cart_product {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr 40px;
    gap: 26px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cart_product_image {
    /* background: #f3f3f3; */
    width: 100px;
    height: 100px;
}

.cart_product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart_product_info h2 {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
}

.cart_product_info p {
    margin-bottom: 12px;
    font-size: 11px;
}

.cart_quantity {
    display: inline-grid;
    grid-template-columns: 28px 34px 28px;
    align-items: center;
    margin-bottom: 54px;
}

.cart_quantity button,
.cart_quantity input {
    border: 0;
    background: transparent;
    color: #000;
    text-align: center;
    font-size: 15px;
}

.cart_quantity input {
    width: 34px;
}

.cart_quantity input::-webkit-outer-spin-button,
.cart_quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart_quantity input[type=number] {
    -moz-appearance: textfield;
}

.cart_product_info strong {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 800;
}

.cart_remove {
    border: 0;
    background: transparent;
    font-size: 20px;
    color: #F44336;
    cursor: pointer;
    align-self: flex-start;
}

.have_cupon form{
    display:flex;
    align-items:center;
    gap:12px;
}

.have_cupon .form-control{
    flex:1;
}

.have_cupon .cupon_btn{
    flex-shrink:0;
    margin-top:0 !important;
    white-space:nowrap;

    border: 1px solid #0772b3;
    background: #fff;
    color: #0772b3;
}
.have_cupon_error{
    color:#dc3545;
    font-size:13px;
    margin-top:8px;
}

.cart_summary {
    margin-top: 58px;
}

.cart_summary h2 {
    margin-bottom: 24px;
    font-size: 21px;
    font-weight: 700;
}

.free_shipping {
    padding: 12px 18px;
    background: #0772b3;
    color: #fff;
}

.free_shipping p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.summary_total {
    padding: 26px 0 24px;
    border-bottom: 1px solid #000;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.summary_total span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
}

.summary_total h3 {
    margin: 0;
    font-size: 22px;
}

.summary_total small {
    font-size: 9px;
    color: #777;
}

.summary_total strong {
    display: block;
    font-size: 22px;
}

.__checkout .btn_buy {
    height: 48px;
    font-size: 17px;
}
.__checkout .cart_summary .btn_buy {
    margin-top: 34px;
    font-size: 22px;
}
/*Tab de envio y facturacion*/
.shipping_section,
.facture_section {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
}
.facture_section {
    margin-top: 38px;
}

.shipping_section h1,
.facture_section h1 {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 700;
}

.guest_options{
    text-align:center;
    padding:20px;
    margin-bottom:20px;
    background:#f8f9fa;
    border-radius:8px;
}

.guest_options .btn_buy{
    max-width: 220px;
    margin: 0 auto;
}

.address_box {
    border: 1px solid #777;
    padding: 34px 24px 26px;
}

.address_item {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 14px;
    padding-bottom: 28px;
    border-bottom: 1px solid #999;
}

.address_radio input {
    display: none;
}

.address_radio span {
    width: 20px;
    height: 20px;
    border: 1px solid #38464D;
    border-radius: 50%;
    display: block;
}

.address_radio input:checked + span {
    box-shadow: inset 0 0 0 5px #fff;
    background: #38464D;
}

.address_info h2 {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
}

.address_info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
}

.address_edit {
    font-size: 15px;
    font-weight: 600;
}

.add_address_btn {
    width: 188px;
    margin-top: 26px;
    border: 1px solid #38464D;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
}

.address_form {
    display: none;
    margin-top: 34px;
}

.address_form.is_active {
    display: block;
}

.address_form h2 {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
}

.facture_section .address_form {
    display: block;
    margin-top: 0;
}

.form_group {
    margin-bottom: 22px;
}

.form_group input,
.form_group select {
    width: 100%;
    height: 38px;
    border: 0;
    border-bottom: 1px solid #777;
    background: transparent;
    font-size: 15px;
    outline: none;
}

.form_group input::placeholder {
    color: #777;
}

.form_row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
}

.address_submit {
    width: 100%;
    height: 38px;
    margin-top: 22px;
    border: 0;
    border-radius: 28px;
    background: #38464D;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.shipping_actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 48px;
}

.btn_back,
.btn_continue {
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
}

.btn_back {
    border: 1px solid #38464D;
}

.btn_continue {
    background: #000;
    color: #fff;
}

/*Tab de Pago*/
.payment_section {
    max-width: 650px;
    margin: 0 auto;
}

.payment_section h1 {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #999;
    font-size: 20px;
    font-weight: 800;
}

.pay_summary{
    max-width:600px;
    margin:0 auto 32px;
}

.payment_methods {
    padding: 15px 0;
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.payment_methods h2,
.payment_form h2 {
    margin-bottom: 36px;
    font-size: 14px;
    font-weight: 500;
}

.payment_grid {
    text-align:center;
    max-width:500px;
    margin:0 auto;
}

.payment_method_option {
    display:flex;
    align-items:center;
    padding:16px 20px;
    cursor:pointer;
    border-bottom:1px solid #f0f0f0;
    background:#fff;
    transition:background .15s;
}
.payment_method_option:last-child{
    border-bottom: 0;
}

.payment_name{
    text-align:left;
}
.payment_name > strong{
    font-size:15px;
    display:block;
}

.payment_actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.__checkout .form-floating > .form-control,
.__checkout .form-floating > .form-select {
    padding: 1.625rem 0 .5rem;
    border: 0;
    border-bottom: 1px solid #777;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.__checkout .form-floating > .form-control:focus,
.__checkout .form-floating > .form-select:focus {
    border-color: #000;
    box-shadow: none;
    background: transparent;
}

.__checkout .form-floating > label {
    padding: .75rem 0;
    font-size: 14px;
}

.__checkout .form-floating > .form-control:not(:placeholder-shown) ~ label,
.__checkout .form-floating > .form-control:focus ~ label,
.__checkout .form-floating > .form-select ~ label {
    transform: scale(.85) translateY(-.5rem);
}


/*Tab Pagina de Gracias*/






/***PAGINAS Y CONTACTO***/
.page-wrapper.__pages{
    padding: 40px 0 80px;
}

.page-wrapper.__pages main{
    min-height: unset;
}
.page-wrapper.__pages .category_intro > p {
    margin-bottom: 34px;
    font-size: 15px;
}

.pages_content h1 {
    margin-bottom: 38px;
    color: #0772b3;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
}

.pages_content {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid #d5e5ee;
}

.pages_content:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.pages_content h2 {
    margin-bottom: 18px;
    color: #38464d;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.pages_content p {
    margin-bottom: 16px;
    color: #38464d;
    font-size: 15px;
    line-height: 1.65;
}

.pages_content a {
    color: #0772b3;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact_form_box .form-control {
    border: 0;
    border-bottom: 1px solid #777;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contact_form_box .form-control:focus {
    border-color: #0772b3;
    box-shadow: none;
}

.contact_form_box .form-floating > label {
    color: #7a858b;
}

.contact_form_box textarea {
    min-height: 148px;
    resize: vertical;
}

.contact_info_box {
    padding: 42px;
    border-radius: 14px;
    background: #eef7fc;
}

.contact_label {
    display: block;
    margin-bottom: 16px;
    color: #0772b3;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
}

.contact_info_box h2 {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 800;
}

.contact_info_box p {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.45;
}

.contact_info_item {
    padding: 18px 0;
    border-top: 1px solid #d5e5ee;
}

.contact_info_item span {
    display: block;
    margin-bottom: 4px;
    color: #7a858b;
    font-size: 13px;
}

.contact_info_item a {
    font-size: 18px;
    font-weight: 800;
}










































































































/* === DASHBOARD REUSABLE === */
.page-title-input {
    font-size: 1.5rem;
    width: 400px;
}

.flex-child {
    min-width: 0;
}

.brand-logo-img {
    max-height: 80px;
    max-width: 200px;
}

.brand-logo-placeholder {
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    border-radius: 4px;
}

.icon-lg {
    font-size: 2rem;
}

.icon-md {
    font-size: 1.5rem;
}

.cursor-pointer {
    cursor: pointer;
}

.editor-container {
    min-height: 200px;
}

.editor-container-lg {
    min-height: 250px;
}

.upload-dropzone {
    min-height: 200px;
    cursor: pointer;
}

.upload-dropzone:hover {
    border-color: #0d6efd !important;
    background: #f0f7ff;
}

.sidebar-panel {
    width: 360px;
    flex-shrink: 0;
}

.sidebar-row {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.img-preview {
    max-height: 200px;
}

.gallery-thumb {
    height: 100px;
    object-fit: cover;
}

.gallery-remove-btn {
    border-radius: 50%;
    padding: 0 6px;
    font-size: 10px;
}

.remove-related-btn {
    cursor: pointer;
    margin-left: 3px;
}

.spinner-lg {
    width: 3rem;
    height: 3rem;
}

.progress-sm {
    height: 25px;
}

.progress-md {
    height: 30px;
}

.table-sm-text {
    font-size: 0.85rem;
}

.table-xs-text {
    font-size: 0.8rem;
}

.col-bd-field {
    width: 200px;
}

.table-scrollable {
    max-height: 400px;
    overflow-y: auto;
}

.error-list {
    max-height: 300px;
    overflow-y: auto;
}

.input-max-200 {
    max-width: 200px;
}

.input-time {
    width: 100px;
}

.brand-table-logo {
    max-height: 40px;
    max-width: 100px;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.cat-toggle-btn {
    cursor: pointer;
    margin-right: 4px;
    user-select: none;
}

.col-categoria {
    width: 40%;
}

.col-estado {
    width: 200px !important;
}

.filter-remove-link {
    color: white;
    text-decoration: none;
    margin-left: 5px;
}

.pedido-alert-sticky {
    display: none;
    position: sticky;
    top: 10px;
    z-index: 1000;
}

.filters-collapse {
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.manage-products-list {
    max-height: 400px;
    overflow-y: auto;
}

.subcategory-indent {
    padding-left: 16px;
}

/* === DASHBOARD SETTINGS === */
.user-edit-form .card-header-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-bottom: none;
}

.user-edit-form .card-header-tabs .nav-link.active {
    border-bottom: 2px solid #0d6efd;
    background: transparent;
    font-weight: 600;
}

.user-edit-form .card-header {
    background: #f8f9fa;
}

.user-edit-form .tab-pane {
    padding-bottom: 5rem;
}

.brand-edit-form .card-header {
    background: #f8f9fa;
}

/* === PRODUCT CREATE/EDIT FORM === */
.product-edit-form .card-header-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-bottom: none;
}

.product-edit-form .card-header-tabs .nav-link.active {
    border-bottom: 2px solid #0d6efd;
    background: transparent;
    font-weight: 600;
}

.product-edit-form .card-header {
    background: #f8f9fa;
}

.gallery-item {
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.related-badge {
    font-size: 0.8rem;
    padding: 0.35em 0.65em;
}

.product-edit-form .ql-container {
    min-height: 200px;
}

.product-edit-form .ql-editor {
    min-height: 200px;
    overflow-y: auto;
}

.product-edit-form .tab-pane {
    padding-bottom: 5rem;
}

.product-edit-form .row.g-0>[class*="col-"] {
    min-width: 0;
}

.select2-container--default .select2-selection--multiple {
    border-color: #dee2e6;
    min-height: 38px;
}

/* === SETTINGS PAGE === */
.tax-rate-row:last-child,
.shipping-zone-row:last-child {
    border-bottom: none !important;
}

/* === IMPORT PAGES === */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.modal-backdrop-custom {
    background: rgba(0, 0, 0, 0.5);
}

/* === DASHBOARD TABLA === */
.cat-hidden {
    display: none;
}

.ver-productos-btn {
    text-decoration: none;
}

.ver-productos-btn:hover svg {
    transform: scale(1.1);
    transition: transform 0.2s;
}

#listaProductos li {
    font-size: 14px;
}

#listaProductos li:last-child {
    border-bottom: none !important;
}

.ver-mensaje-btn,
.ver-respuesta-btn {
    text-decoration: none;
}

.ver-mensaje-btn:hover,
.ver-respuesta-btn:hover {
    text-decoration: underline;
}

/* === Inline style replacements === */
.page-title-input {
    font-size: 1.5rem;
    width: 400px;
}

.flex-child {
    min-width: 0;
}

.editor-container {
    min-height: 200px;
}

.editor-container-lg {
    min-height: 250px;
}

.upload-dropzone {
    min-height: 200px;
    cursor: pointer;
}

.upload-dropzone:hover {
    border-color: #0d6efd !important;
    background: #f0f7ff;
}

.icon-lg {
    font-size: 2rem;
}

.icon-md {
    font-size: 1.5rem;
}

.sidebar-panel {
    width: 360px;
    flex-shrink: 0;
}

.sidebar-row {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.img-preview {
    max-height: 200px;
}

.gallery-thumb {
    height: 100px;
    object-fit: cover;
}

.gallery-remove-btn {
    border-radius: 50%;
    padding: 0 6px;
    font-size: 10px;
}

.remove-related-btn {
    cursor: pointer;
    margin-left: 3px;
}

/* === TIENDA PAGE === */
.tienda_total {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.progress-sm {
    height: 25px;
}

.progress-md {
    height: 30px;
}

.table-sm-text {
    font-size: 0.85rem;
}

.table-xs-text {
    font-size: 0.8rem;
}

.col-bd-field {
    width: 200px;
}

.table-scrollable {
    max-height: 400px;
    overflow-y: auto;
}

.error-list {
    max-height: 300px;
    overflow-y: auto;
}

.input-max-200 {
    max-width: 200px;
}

.input-time {
    width: 100px;
}

.brand-table-logo {
    max-height: 40px;
    max-width: 100px;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.cat-toggle-btn {
    cursor: pointer;
    margin-right: 4px;
    user-select: none;
}

.col-categoria {
    width: 40%;
}

.col-estado {
    width: 200px !important;
}

.filter-remove-link {
    color: white;
    text-decoration: none;
    margin-left: 5px;
}

.pedido-alert-sticky {
    display: none;
    position: sticky;
    top: 10px;
    z-index: 1000;
}

.filters-collapse {
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.manage-products-list {
    max-height: 400px;
    overflow-y: auto;
}

.subcategory-indent {
    padding-left: 16px;
}

/* === DASHBOARD SETTINGS === */
.user-edit-form .card-header-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-bottom: none;
}

.user-edit-form .card-header-tabs .nav-link.active {
    border-bottom: 2px solid #0d6efd;
    background: transparent;
    font-weight: 600;
}

.user-edit-form .card-header {
    background: #f8f9fa;
}

.user-edit-form .tab-pane {
    padding-bottom: 5rem;
}

.brand-edit-form .card-header {
    background: #f8f9fa;
}

/* === PRODUCT CREATE/EDIT FORM === */
.product-edit-form .card-header-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-bottom: none;
}

.product-edit-form .card-header-tabs .nav-link.active {
    border-bottom: 2px solid #0d6efd;
    background: transparent;
    font-weight: 600;
}

.product-edit-form .card-header {
    background: #f8f9fa;
}

.gallery-item {
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.related-badge {
    font-size: 0.8rem;
    padding: 0.35em 0.65em;
}

.product-edit-form .ql-container {
    min-height: 200px;
}

.product-edit-form .ql-editor {
    min-height: 200px;
    overflow-y: auto;
}

.product-edit-form .tab-pane {
    padding-bottom: 5rem;
}

.product-edit-form .row.g-0>[class*="col-"] {
    min-width: 0;
}

.select2-container--default .select2-selection--multiple {
    border-color: #dee2e6;
    min-height: 38px;
}

/* === SETTINGS PAGE === */
.tax-rate-row:last-child,
.shipping-zone-row:last-child {
    border-bottom: none !important;
}

/* === IMPORT PAGES === */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.modal-backdrop-custom {
    background: rgba(0, 0, 0, 0.5);
}

/* === DASHBOARD TABLA === */
.cat-hidden {
    display: none;
}

.ver-productos-btn {
    text-decoration: none;
}

.ver-productos-btn:hover svg {
    transform: scale(1.1);
    transition: transform 0.2s;
}

#listaProductos li {
    font-size: 14px;
}

#listaProductos li:last-child {
    border-bottom: none !important;
}

.ver-mensaje-btn,
.ver-respuesta-btn {
    text-decoration: none;
}

.ver-mensaje-btn:hover,
.ver-respuesta-btn:hover {
    text-decoration: underline;
}

/* === PRODUCT CREATE/EDIT FORM === */
.product-edit-form .card-header-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-bottom: none;
}

.product-edit-form .card-header-tabs .nav-link.active {
    border-bottom: 2px solid #0d6efd;
    background: transparent;
    font-weight: 600;
}

.product-edit-form .card-header {
    background: #f8f9fa;
}

.upload-dropzone:hover {
    border-color: #0d6efd !important;
    background: #f0f7ff;
}

.gallery-item {
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.related-badge {
    font-size: 0.8rem;
    padding: 0.35em 0.65em;
}

.product-edit-form .ql-container {
    min-height: 200px;
}

.product-edit-form .ql-editor {
    min-height: 200px;
    overflow-y: auto;
}

.product-edit-form .tab-pane {
    padding-bottom: 5rem;
}

.product-edit-form .row.g-0>[class*="col-"] {
    min-width: 0;
}

.select2-container--default .select2-selection--multiple {
    border-color: #dee2e6;
    min-height: 38px;
}

/* Inline style replacements */
.page-title-input {
    font-size: 1.5rem;
    width: 400px;
}

.flex-child {
    min-width: 0;
}

.editor-container {
    min-height: 200px;
}

.editor-container-lg {
    min-height: 250px;
}

.upload-dropzone {
    min-height: 200px;
    cursor: pointer;
}

.icon-lg {
    font-size: 2rem;
}

.icon-md {
    font-size: 1.5rem;
}

.sidebar-panel {
    width: 360px;
    flex-shrink: 0;
}

.sidebar-row {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.img-preview {
    max-height: 200px;
}

.gallery-thumb {
    height: 100px;
    object-fit: cover;
}

.gallery-remove-btn {
    border-radius: 50%;
    padding: 0 6px;
    font-size: 10px;
}

.remove-related-btn {
    cursor: pointer;
    margin-left: 3px;
}

/* ── Search Suggestions AJAX ── */
.search_box {
    position: relative;
}

.search_suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #d9e1e5;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    max-height: 360px;
    overflow-y: auto;
    margin-top: 2px;
    padding: 6px 0;
}

.search_suggestions.active {
    display: block;
}

.search_suggestions_item {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    color: #38464d;
    cursor: pointer;
    transition: background 0.15s;
}

.search_suggestions_item:hover,
.search_suggestions_item.selected {
    background: #f0f4f7;
}

.search_suggestions_item strong {
    color: #1d8f9b;
    font-weight: 600;
}

.search_suggestions_empty {
    padding: 12px 14px;
    font-size: 13px;
    color: #9aa6ac;
    font-style: italic;
}

#mobileMenu .search_suggestions {
    position: static;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    max-height: none;
}

#mobileMenu .search_suggestions_item {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f4f7;
}
