:root {
    --color-primary-hover: rgb(214, 63, 54);
    --color-primary: rgb(214, 33, 54);
    --color-primary-transparent: rgba(214, 33, 54, .3);
    --bs-breadcrumb-divider: ">"
}
/* Sidebar y navegación de categorías */
.browse-categories-wrap {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.category-item {
    margin-bottom: 0.75rem;
    transition: background-color 0.2s;
}

.category-item > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-item.active > div > a {
    font-weight: bold;
}

.category-item .category-toggle {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.category-item.expanded > div > .category-toggle i,
.subcategory-item.expanded > div > .category-toggle i {
    transform: rotate(180deg);
}

.category-item.expanded > .subcategory-list,
.subcategory-item.expanded > .subcategory-list {
    display: block;
}

.subcategory-list {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
}

.subcategory-list.level-2 {
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.subcategory-list.level-3 {
    padding-left: 2rem;
    font-size: 0.85rem;
}

.subcategory-list.level-3 a {
    color: #666;
}

.subcategory-item {
    margin-bottom: 0.5rem;
}


.subcategory-item a {
    font-size: 0.9rem;
}

/* Productos verticales */
.vertical-products-slider {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vertical-product-card {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.vertical-product-card img {
    width: 70px;
    height: auto;
    border-radius: 0.25rem;
}

.vertical-product-card .product-info {
    flex: 1;
}

.vertical-product-card .product-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.vertical-product-card .product-price {
    font-size: 0.85rem;
}

.vertical-product-card .previous-price {
    font-size: 0.8rem;
    color: #888;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Estilo general de producto en grid */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-top {
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.25rem;
}

.product-name h6 {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.product-price {
    font-weight: bold;
    font-size: 1rem;
}

.previous-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .browse-categories-wrap {
        margin-top: 1rem;
    }

    .vertical-product-card {
        flex-direction: row;
    }

    .product-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .vertical-product-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .vertical-product-card img {
        width: 100%;
    }

    .product-card-middle .product-name h6 {
        font-size: 0.85rem;
    }

    .product-card-middle .product-price {
        font-size: 0.9rem;
    }

    .product-card-bottom button {
        font-size: 0.875rem;
    }
}
.product-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    align-items: center;
    display: flex;
    justify-content: center;
}

.product-badge {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: -5px;
}

.product-card {
    border: 1px solid #ebebeb;
    border-radius: 2px;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    position: relative;
    transition: .2s ease-in-out;
}

.product-card:hover {
    border-color: #fff;
    box-shadow: 2.5px 4.33px 50px 5px rgba(11, 28, 42, .15);
    z-index: 1;
}

.product-card:hover .btn-add-to-cart,
.product-card:hover .product-card-actions button {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.product-card:hover .product-badge {
    opacity: 0;
    transform: scale(.9);
    visibility: hidden;
}

.btn:disabled {
    opacity: .65;
}

.product-card .product-badge {
    right: 0;
    transition: .2s ease-in-out;
    z-index: 1;
}

.product-card .product-card-actions {
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: -5px;
    z-index: 1;
}

.product-card .product-card-actions .btn {
    align-items: center;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    display: flex;
    height: 35px;
    justify-content: center;
    opacity: 0;
    padding: 0;
    transform: scale(.5);
    transition: opacity .2s ease-in-out, transform .2s ease-in-out, border-color .15s ease-in-out;
    visibility: hidden;
    width: 35px;
}

.product-card .product-card-actions .btn:hover {
    border-color: rgba(0, 85, 184, .3);
    border-color: var(--color-primary-transparent);
}

.product-card .product-card-actions .btn>i,
h6 {
    font-size: 15px;
}

.product-card .product-card-actions .btn-wishlist {
    margin-bottom: 5px;
}

.product-card .product-card-middle {
    display: flex;
    flex-direction: column;
    height: 90px;
    justify-content: flex-end;
    margin-top: auto;
    padding-bottom: 9px;
    position: relative;
    z-index: 0;
}

.product-card .product-rating {
    margin-bottom: 10px;
    transition: .2s ease-in-out;
}

.product-card .product-rating .back-stars {
    font-size: 13px;
}

.product-card .product-name {
    color: #191919;
    display: block;
    transition: .2s ease-in-out;
    z-index: 1;
}

.product-card .product-name h6 {
    background: #fff;
    line-height: 21px;
    max-height: 40px;
    overflow: hidden;
    position: relative;
}

.product-card .product-card-bottom {
    border-top: 1px solid #ebebeb;
    padding: 12px 0 10px;
    position: relative;
    transition: .15s ease-in-out;
}

.product-card .product-price {
    position: relative;
    transition: .2s ease-in-out;
}

.product-card .product-price:after {
    background: #0068e1;
    background: var(--color-primary);
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    content: "";
    height: 15px;
    left: -20px;
    position: absolute;
    top: 4px;
    transition: .2s ease-in-out;
    width: 7px;
}

.product-card .product-price-clone {
    border: none;
    bottom: 15px;
    left: 15px;
    opacity: 0;
    padding: 0;
    position: absolute;
    visibility: hidden;
    z-index: -1;
}

.product-card .product-price-clone:after {
    left: -40px;
    opacity: 0;
    top: 4px;
    visibility: hidden;
}

.product-card .btn-add-to-cart {
    bottom: 20px;
    font-size: 13px;
    left: 0;
    opacity: 0;
    padding: 6px 0 4px;
    position: absolute;
    transform: scale(.9);
    transition: .2s ease-in-out;
    visibility: hidden;
    width: 100%;
}

.product-card .btn-add-to-cart>i {
    font-size: 15px;
    margin: 5px 6px 0 0;
    vertical-align: top;
}

.product-card-top {
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-card-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.btn-wishlist {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e91e63;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
}

.btn-wishlist:hover {
    background: #fff;
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}



.product-card-middle h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
}

.product-price-clone {
    margin-top: 0.5rem;
    color: #555;
}

.product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #ffc107;
}

.product-rating .back-stars {
    position: relative;
    display: flex;
}

.product-rating .front-stars {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}

.rating-count {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: #888;
}

.product-card-bottom {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.btn-edit-product {
    font-size: 0.9rem;
    background: #6c757d;
    border: none;
    color: #fff;
    transition: background 0.2s ease;
}

.btn-edit-product:hover {
    background: #5a6268;
}
/*! CSS Used from: https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css */
.lab,.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;}
.la-calendar-minus:before{content:'\f272';}
.la-credit-card:before{content:'\f09d';}
.la-facebook:before{content:'\f09a';}
.la-headphones:before{content:'\f025';}
.la-heart:before{content:'\f004';}
.la-minus:before{content:'\f068';}
.la-pinterest:before{content:'\f0d2';}
.la-plus:before{content:'\f067';}
.la-search-plus:before{content:'\f00e';}
.la-shield-alt:before{content:'\f3ed';}
.la-star:before{content:'\f005';}
.la-truck:before{content:'\f0d1';}
.la-twitter:before{content:'\f099';}
.la-whatsapp:before{content:'\f232';}
.lab{font-family:'Line Awesome Brands';}
.lar{font-family:'Line Awesome Free';font-weight:400;}
.las{font-family:'Line Awesome Free';font-weight:900;}
/*! CSS Used from: https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
*,::after,::before{box-sizing:border-box;}
h1,h3,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color);}
h1{font-size:calc(1.375rem + 1.5vw);}
@media (min-width:1200px){
    h1{font-size:2.5rem;}
}
h3{font-size:calc(1.3rem + .6vw);}
@media (min-width:1200px){
    h3{font-size:1.75rem;}
}
h5{font-size:1.25rem;}
h6{font-size:1rem;}
p{margin-top:0;margin-bottom:1rem;}
ol,ul{padding-left:2rem;}
ol,ul{margin-top:0;margin-bottom:1rem;}
ul ul{margin-bottom:0;}
strong{font-weight:bolder;}
small{font-size:.875em;}
a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline;}
a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb);}
img{vertical-align:middle;}
table{caption-side:bottom;border-collapse:collapse;}
tbody{border-color:inherit;border-style:solid;border-width:0;}
label{display:inline-block;}
button{border-radius:0;}
button:focus:not(:focus-visible){outline:0;}
button,input{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;}
button{text-transform:none;}
[type=button],[type=submit],button{-webkit-appearance:button;}
[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer;}
.list-inline{padding-left:0;list-style:none;}
.list-inline-item{display:inline-block;}
.list-inline-item:not(:last-child){margin-right:.5rem;}
.container{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto;}
@media (min-width:576px){
    .container{max-width:540px;}
}
@media (min-width:768px){
    .container{max-width:720px;}
}
@media (min-width:992px){
    .container{max-width:960px;}
}
@media (min-width:1200px){
    .container{max-width:1140px;}
}
@media (min-width:1400px){
    .container{max-width:1320px;}
}

.table{--bs-table-color-type:initial;--bs-table-bg-type:initial;--bs-table-color-state:initial;--bs-table-bg-state:initial;--bs-table-color:var(--bs-emphasis-color);--bs-table-bg:var(--bs-body-bg);--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-emphasis-color);--bs-table-striped-bg:rgba(var(--bs-emphasis-color-rgb), 0.05);--bs-table-active-color:var(--bs-emphasis-color);--bs-table-active-bg:rgba(var(--bs-emphasis-color-rgb), 0.1);--bs-table-hover-color:var(--bs-emphasis-color);--bs-table-hover-bg:rgba(var(--bs-emphasis-color-rgb), 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color);}
.table>tbody{vertical-align:inherit;}
.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch;}
.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
@media (prefers-reduced-motion:reduce){
    .form-control{transition:none;}
}
.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);}
.form-control::placeholder{color:var(--bs-secondary-color);opacity:1;}
.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1;}
.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
@media (prefers-reduced-motion:reduce){
    .btn{transition:none;}
}
.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);}
:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color);}
.btn:disabled{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity);}
.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd;}
.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x);}
.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/");}
.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color);}
.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius);}
.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis);}
.d-inline-block{display:inline-block!important;}
.d-flex{display:flex!important;}
.d-inline-flex{display:inline-flex!important;}
.flex-column-reverse{flex-direction:column-reverse!important;}
.align-items-center{align-items:center!important;}
.mx-1{margin-right:.25rem!important;margin-left:.25rem!important;}
.mt-3{margin-top:1rem!important;}
.mt-4{margin-top:1.5rem!important;}
.me-2{margin-right:.5rem!important;}
.mb-0{margin-bottom:0!important;}
.mb-3{margin-bottom:1rem!important;}
.mb-4{margin-bottom:1.5rem!important;}
.py-5{padding-top:3rem!important;padding-bottom:3rem!important;}
.text-center{text-align:center!important;}
.text-decoration-line-through{text-decoration:line-through!important;}
.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important;}
.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important;}
@media (min-width:992px){
    .flex-lg-row{flex-direction:row!important;}
}
/*! CSS Used from: http://natayfresas.com/css/main.css */
@media (min-width:576px){
    .container{max-width:540px;}
}
@media (min-width:768px){
    .container{max-width:720px;}
}
@media (min-width:992px){
    .container{max-width:960px;}
}
@media (min-width:1200px){
    .container{max-width:1140px;}
}
@media screen and (min-width:1920px){
    .container{max-width:1770px;}
}
@media screen and (min-width:2200px){
    .container{max-width:1920px;}
}
@media screen and (max-width:1920px){
    .container{max-width:100%;}
}
.btn{-webkit-user-select:none;-moz-user-select:none;}
button{text-transform:none;}
.slick-slider{-webkit-tap-highlight-color:transparent;box-sizing:border-box;}
*,.slick-slider,:after,:before{box-sizing:border-box;}
.lab,.lar,.las{text-rendering:auto;}
h3,h6,label{margin-bottom:.5rem;}
.las{-moz-osx-font-smoothing:grayscale;}
ul{list-style:none;}
*,:after,:before{--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;}
table{border-collapse:collapse;}
button,input{font-family:inherit;line-height:inherit;}
.table{color:#212529;margin-bottom:1rem;width:100%;}
.table-responsive{-webkit-overflow-scrolling:touch;display:block;overflow-x:auto;width:100%;}
.las{-webkit-font-smoothing:antialiased;}
.product-rating .front-stars>i:last-child{margin-right:0;}
.product-details-top .right-sidebar .feature-list .single-feature:last-child,ul ul{margin-bottom:0;}
.base-image-wrap .btn-gallery-trigger:hover>i{color:var(--color-primary);}
*{padding:0;}
img{vertical-align:middle;}
.single-feature{display:flex;justify-content:center;}
.section-title{position:relative;}
.product-details-bottom{display:flex;}
strong{font-weight:500;}
h1,h3,h6{color:#191919;}
*,button,input{color:inherit;margin:0;}
.slick-initialized .slick-slide,.slick-slide img,aside,nav,section{display:block;}
.col-lg-12{padding-left:15px;padding-right:15px;position:relative;width:100%;}
.d-flex{display:flex!important;}
.align-items-center{align-items:center!important;}
:disabled{cursor:default;}
.additional-image-wrap .additional-image>img{max-height:100%;max-width:100%;}
[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled),label{cursor:pointer;}
[type=button],a,button{background-color:transparent;}
label{display:inline-block;}
.text-center{text-align:center;}
a{text-size-adjust:none;-webkit-text-size-adjust:none;cursor:pointer;color:inherit;text-decoration:none;transition:.15s ease-in-out;}
:focus{outline:0!important;}
input{background:0 0;border-radius:0;}
.lab,.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;}
button,input{font-family:inherit;line-height:inherit;}
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-color:rgba(59, 130, 246, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;}
:after,:before{--tw-content:"";}
button,input{font-size:100%;font-weight:inherit;padding:0;overflow:visible;}
button,input{font-size:inherit;}
[type=button],button{-webkit-appearance:button;background-image:none;}
[type=button],[type=submit],button{-webkit-appearance:button;}
input::placeholder{color:#6b7280;opacity:1;}
.mt-4{margin-top:1rem;}
button{overflow:visible;}
.btn{user-select:none;}
.slick-slider{-webkit-touch-callout:none;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;user-select:none;}
.product-rating{display:inline-flex;}
.btn,img{vertical-align:middle;}
@media print{
    img{page-break-inside:avoid;}
    h3,p{orphans:3;widows:3;}
    h3{page-break-after:avoid;}
    .table{border-collapse:collapse!important;}
    *,:after,:before{box-shadow:none!important;text-shadow:none!important;}
    a:not(.btn){text-decoration:underline;}
    .container{min-width:992px!important;}
}
.btn:hover,a:hover{text-decoration:none;}
.btn:disabled{opacity:.65;}
h6,p{font-size:15px;}
.product-details-top{display:flex;margin-bottom:20px;}
.section-title:after{border-bottom:2px solid #0068e1;border-bottom:2px solid var(--color-primary);bottom:-1px;content:"";left:0;position:absolute;width:50px;}
.list-inline{padding-left:0;list-style:none;}
.btn:focus,.form-control:focus{box-shadow:0 0 0 .2rem rgba(0, 123, 255, .25);}
.single-feature .feature-icon{margin-right:13px;}
.form-control,.form-control:focus{background-color:#fff;color:#495057;}
a:hover{color:#0056b3;}
img{width:auto;height:auto;border-style:none;}
button{cursor:pointer;border-radius:0;}
button:focus{outline:-webkit-focus-ring-color auto 5px;}
button,input{font-size:inherit;margin:0;}
h1,h3,h6{font-weight:500;line-height:1.2;margin-bottom:.5rem;}
.btn,.form-control,.lab,.lar,small{font-weight:400;}
h6{font-size:1rem;}
small{font-size:80%;}
.container{margin-left:auto;margin-right:auto;width:100%;}
.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px;}
.form-control{background-clip:padding-box;border:1px solid #ced4da;display:block;line-height:1.5;width:100%;}
.form-control::placeholder{color:#6c757d;opacity:1;}
.btn,.btn:hover{color:#212529;}
.form-control:disabled{background-color:#e9ecef;opacity:1;}
.btn{background-color:transparent;border:1px solid transparent;display:inline-block;text-align:center;user-select:none;}
.flex-column-reverse{flex-direction:column-reverse!important;}
.lab,.lar,.las{display:inline-block;font-style:normal;font-variant:normal;line-height:1;}
.lab{font-family:Line Awesome Brands;}
.lar,.las{font-family:Line Awesome Free;}
.las{font-weight:900;}
.la-calendar-minus:before{content:"";}
.la-credit-card:before{content:"";}
.la-facebook:before{content:"";}
.la-headphones:before{content:"";}
.la-heart:before{content:"";}
.la-search-plus:before{content:"";}
.la-shield-alt:before{content:"";}
.la-star:before{content:"";}
.la-truck:before{content:"";}
.la-twitter:before{content:"";}
.btn,h1,h3,h6,p,span{font-family:Rubik, Arial, Helvetica, sans-serif;}
.slick-slider{-webkit-touch-callout:none;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;user-select:none;}
.slick-list,.slick-slider{display:block;position:relative;}
.slick-list{margin:0;overflow:hidden;padding:0;}
.slick-list:focus,a:active,a:focus,a:visited,button:active,button:focus,button:visited,div:active,div:focus,div:visited{outline:0;}
.slick-slider .slick-list,.slick-slider .slick-track{transform:translateZ(0);}
.slick-track{display:block;left:0;margin-left:auto;margin-right:auto;position:relative;top:0;}
.slick-track:after,.slick-track:before{content:"";display:table;}
.slick-track:after{clear:both;}
.slick-slide{display:none;float:left;height:100%;min-height:1px;}
.single-feature .feature-icon>i{color:#0068e1;color:var(--color-primary);font-size:36px;}
.single-feature .feature-details>span{color:#6e6e6e;display:block;font-size:14px;line-height:22px;margin-top:2px;}
.product-rating .back-stars{display:flex;position:relative;}
.product-rating .back-stars>i{color:#a6a6a6;margin-right:1px;}
.product-rating .front-stars{color:#ffb136;display:flex;left:0;overflow:hidden;position:absolute;top:0;}
.product-rating .front-stars>i{margin-right:1px;}
.product-rating .rating-count{color:#6e6e6e;font-size:11px;line-height:12px;margin:1px 0 0 5px;}
.btn-wishlist>i{color:#6e6e6e;transition:.5s ease-in-out;}
h1,h3,h6,li,p,ul{margin:0;padding:0;}
h1{font-size:36px;line-height:44px;}
h3{font-size:24px;line-height:30px;}
h6{color:#191919;line-height:18px;}
p{width:100%;line-height:22px;}
.slick-list .slick-track{float:left;}
.btn{border:none;border-radius:2px;font-size:15px;line-height:26px;padding:7px 24px;position:relative;transition:.15s ease-in-out;}
.btn:focus{box-shadow:none!important;outline:0;}
.form-control{border-color:#ebebeb;border-radius:2px;font-size:14px;height:45px;padding:10px 15px;transition:.15s ease-in-out;}
.form-control:focus{outline:0;border-color:var(--color-primary);box-shadow:none;}
::placeholder{color:#a6a6a6!important;opacity:1;}
.product-details-top .right-sidebar{min-width:285px;padding-left:15px;width:285px;}
.product-details-top .right-sidebar .feature-list{flex-direction:column;margin-top:0;}
.product-details-top .right-sidebar .feature-list .single-feature{justify-content:flex-start;margin-bottom:20px;}
.product-details-top-inner{display:flex;width:100%;}
.product-image-gallery{align-items:flex-start;align-self:flex-start;display:flex;}
.additional-image-wrap{margin-top:8px;min-width:80px;width:80px;}
.additional-image-wrap .additional-image{align-items:center;border:1px solid #ebebeb;border-radius:2px;cursor:pointer;display:flex;height:80px;justify-content:center;margin:8px 0;overflow:hidden;transition:.15s ease-in-out;}
.additional-image-wrap .additional-image.slick-current{border-color:var(--color-primary);}
.base-image-wrap{border:1px solid #ebebeb;border-radius:2px;flex-grow:1;min-width:0;position:relative;width:100%;}
.base-image-wrap .base-image-slide{align-items:center;background:#fff;cursor:crosshair;display:flex;height:100%;justify-content:center;padding-bottom:100%;position:relative;}
.base-image-wrap .base-image-slide:hover>img:not(.zoomImg){opacity:0!important;}
.base-image-wrap .base-image-slide:hover .zoomImg{opacity:1!important;}
.base-image-wrap .base-image-slide>img:not(.zoomImg){left:50%;max-height:100%;max-width:100%;position:absolute;top:50%;transform:translate(-50%, -50%);}
.base-image-wrap .btn-gallery-trigger{align-items:center;bottom:10px;cursor:pointer;display:flex;height:40px;justify-content:center;position:absolute;right:10px;transform:rotateY(180deg);width:40px;z-index:1;}
.base-image-wrap .btn-favorite-trigger{align-items:center;top:10px;cursor:pointer;display:flex;height:40px;justify-content:center;position:absolute;right:10px;transform:rotateY(180deg);width:40px;z-index:1;}
.base-image-wrap .btn-gallery-trigger>i{font-size:20px;transition:.15s ease-in-out;}
.product-details-info{padding:0 15px 0 30px;width:calc(100% - 600px);}
.product-details-info .details-info-top{padding-bottom:17px;}
.product-details-info .product-rating{font-size:16px;margin-bottom:9px;}
.product-details-info .product-rating .rating-count{font-size:14px;margin-top:3px;}
.product-details-info .availability{margin-bottom:5px;margin-left:5px;}
.product-details-info .brief-description{color:#6e6e6e;margin-bottom:12px;}
.product-details-info .details-info-middle{border-bottom:1px solid #e5e5e5;border-top:1px solid #e5e5e5;padding:22px 0 25px;}
.product-details-info .details-info-bottom{padding:10px 0;}
.breadcrumb-item{color:#666;text-decoration:none;transition:color 0.2s;}
.breadcrumb-item:hover{color:#512da8;text-decoration:underline;}
.breadcrumb-item.active{color:#512da8;font-weight:600;}
@media (max-width: 767px){
    .product-details-top-inner{flex-direction:column!important;}
    .product-image-gallery{width:100%!important;flex-direction:column!important;}
    .additional-image-wrap{width:100%!important;margin-top:15px!important;min-width:100%!important;margin-right:0!important;}
    .additional-image-wrap .slick-list{height:auto!important;}
    .additional-image-wrap .slick-list .slick-track{display:flex!important;flex-direction:row!important;transform:none!important;}
    #thumbnail-container{display:flex!important;flex-direction:row!important;overflow-x:auto!important;overflow-y:hidden!important;height:auto!important;width:100%!important;}
    .additional-image{margin:0 5px!important;min-width:80px!important;display:inline-block!important;}
    .product-details-info{width:100%!important;padding:20px 0 0 0!important;}
    .base-image-wrap .base-image-slide{cursor:pointer!important;}
    .base-image-wrap .btn-gallery-trigger{display:none!important;}
}
/*! CSS Used from: http://natayfresas.com/css/white.css */
.breadcrumb{padding:1rem;}
form .form-control{border:2px solid #e9ecef;border-radius:0.25rem;}
form .btn{border:none;background-color:#f8f9fa;color:#6c757d;}
form .btn:hover{background-color:#e9ecef;}
.row{justify-content:center;}
.btn:hover{color:#000;background-color:var(--color-primary);}
/*! CSS Used from: Embedded */
.product-details-info .availability{font-weight:bold;}
.product-details-info .quantity-selector{border:1px solid #dee2e6;border-radius:6px;overflow:hidden;max-width:150px;box-shadow:0 2px 4px rgba(0,0,0,0.05);}
.product-details-info .quantity-input{width:60px;height:42px;border:none;font-weight:600;box-shadow:none;-moz-appearance:textfield;}
.product-details-info .btn-qty-change{width:40px;height:42px;background:#f8f9fa;border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.2s;}
.product-details-info .btn-qty-change:hover{background:#e9ecef;}
.product-details-info .btn-qty-change i{font-size:18px;}
.product-details-info .details-info-bottom ul{padding:0;margin:0;}
.product-details-info .details-info-bottom ul li a{font-size:1.5rem;color:#6c757d;transition:color 0.3s;}
.product-details-info .details-info-bottom ul li a:hover{color:#000;}
@media (max-width: 768px){
    .product-details-info h1{font-size:1.5rem;}
    .product-details-info .btn{font-size:0.875rem;}
}
#openImageModal{padding:10px 20px;font-size:16px;cursor:pointer;}
#thumbnail-container{display:flex;flex-direction:column;overflow-y:auto;scroll-behavior:smooth;-ms-overflow-style:none;scrollbar-width:none;height:350px;width:auto;}
#thumbnail-container::-webkit-scrollbar{display:none;}
.additional-image{flex:0 0 auto;margin:5px 0;cursor:pointer;width:80px;height:80px;display:flex;align-items:center;justify-content:center;}
.additional-image img{max-width:100%;max-height:100%;object-fit:contain;}
.additional-image.slick-current{border:2px solid #007bff;border-radius:4px;}
.product-characteristics{margin-top:1.5rem;}
.product-characteristics table{margin-bottom:0;}
@media (max-width: 767px){
    .product-details-top-inner{flex-direction:column!important;}
    .product-image-gallery{width:100%!important;flex-direction:column!important;display:flex!important;}
    .additional-image-wrap{width:100%!important;margin-top:15px!important;min-width:100%!important;margin-right:0!important;order:2!important;}
    .base-image-wrap{order:1!important;margin-bottom:15px!important;}
    .additional-image-wrap .slick-list{height:auto!important;width:100%!important;}
    .additional-image-wrap .slick-list .slick-track{display:flex!important;flex-direction:row!important;transform:none!important;width:auto!important;flex-wrap:nowrap!important;}
    #thumbnail-container{display:flex!important;flex-direction:row!important;overflow-x:auto!important;overflow-y:hidden!important;height:auto!important;width:100%!important;flex-wrap:nowrap!important;}
    .additional-image{margin:0 5px!important;min-width:80px!important;max-width:80px!important;display:inline-block!important;flex:0 0 auto!important;}
    .product-details-info{width:100%!important;padding:20px 0 0 0!important;}
    .base-image-wrap .base-image-slide{cursor:pointer!important;}
    .base-image-wrap .btn-gallery-trigger{display:none!important;}
}
/*! CSS Used from: Embedded */
.btn-favorite-trigger{cursor:pointer;transition:all 0.3s;font-size:1.5rem;}
.btn-favorite-trigger:hover{transform:scale(1.1);}
/*! CSS Used from: Embedded */
.quantity-selector{border:1px solid #dee2e6;border-radius:6px;overflow:hidden;max-width:120px;box-shadow:0 2px 4px rgba(0,0,0,0.05);}
.quantity-input{width:40px!important;height:36px!important;border:none!important;font-weight:600;box-shadow:none!important;-moz-appearance:textfield;background-color:#fff!important;padding:0!important;}
.btn-qty-change{width:30px;height:36px;background:#f8f9fa;border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.2s;}
.btn-qty-change:hover{background:#e9ecef;}
.btn-qty-change:disabled{opacity:0.5;cursor:not-allowed;}
.btn-qty-change i{font-size:14px;}
/*! CSS Used from: Embedded */
.breadcrumb-item.active{color:#d62136;font-weight:600;}
/*! CSS Used from: Embedded */
.social-sharing{display:flex;align-items:center;margin:1rem 0;}
.social-sharing label{margin-right:0.5rem;margin-bottom:0;font-weight:bold;}
.social-sharing .list-inline{margin-bottom:0;display:inline-flex;}
.share-icons a{transition:transform 0.2s;display:inline-block;margin:0 0.25rem;}
.share-icons a:hover{transform:scale(1.2);}
.share-icons a i{font-size:1.5rem;}
.share-medium a i{font-size:1.5rem;}
a.share-facebook{color:#3b5998;}
a.share-twitter{color:#1da1f2;}
a.share-pinterest{color:#bd081c;}
a.share-whatsapp{color:#25d366;}
/*! CSS Used from: Embedded */
.details-info-bottom .social-sharing{margin:0;}
.details-info-bottom .share-icons a i{font-size:1.75rem;}
/*! CSS Used from: Embedded */
.product-section{padding:2rem;background-color:#ffffff;border-radius:0.5rem;box-shadow:0 2px 10px rgba(0,0,0,0.05);margin-bottom:2rem;}
.section-title{font-size:1.5rem;font-weight:600;color:#333;padding-bottom:0.5rem;border-bottom:1px solid #eee;}
.product-characteristics-details table{margin-bottom:0;}
.reviews-section{width:100%;}
@media (max-width: 768px){
    .product-section{padding:0;}
    .section-title{font-size:1.25rem;}
}


/*! CSS Used from: https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css */
.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;}
.la-bolt:before{content:'\f0e7';}
.la-cart-plus:before{content:'\f217';}
.la-heart:before{content:'\f004';}
.la-star:before{content:'\f005';}
.lar{font-family:'Line Awesome Free';font-weight:400;}
.las{font-family:'Line Awesome Free';font-weight:900;}
/*! CSS Used from: https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
*,::after,::before{box-sizing:border-box;}
h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color);}
h6{font-size:1rem;}
ul{padding-left:2rem;}
ul{margin-top:0;margin-bottom:1rem;}
a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline;}
a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb);}
img{vertical-align:middle;}
button{border-radius:0;}
button:focus:not(:focus-visible){outline:0;}
button,input{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;}
button{text-transform:none;}
[type=button],[type=submit],button{-webkit-appearance:button;}
[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer;}
.list-inline{padding-left:0;list-style:none;}
.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
@media (prefers-reduced-motion:reduce){
    .btn{transition:none;}
}
.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);}
.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color);}
.btn:disabled{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity);}
.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd;}
.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none;}
.d-none{display:none!important;}
/*! CSS Used from: http://natayfresas.com/css/main.css */
.btn{-webkit-user-select:none;-moz-user-select:none;}
button{text-transform:none;}
*,:after,:before{box-sizing:border-box;}
.lar,.las{text-rendering:auto;}
h6{margin-bottom:.5rem;}
.las{-moz-osx-font-smoothing:grayscale;}
ul{list-style:none;}
*,:after,:before{--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;}
button,input{font-family:inherit;line-height:inherit;}
.las{-webkit-font-smoothing:antialiased;}
.product-rating .front-stars>i:last-child{margin-right:0;}
.product-price{color:var(--color-primary);}
*{padding:0;}
img{vertical-align:middle;}
.product-card .product-card-top{position:relative;}
h6{color:#191919;}
*,button,input{color:inherit;margin:0;}
.product-price{display:flex;}
.product-card .product-card-actions .btn:hover{border-color:var(--color-primary-transparent);}
:disabled{cursor:default;}
[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer;}
[type=button],a,button{background-color:transparent;}
a{text-size-adjust:none;-webkit-text-size-adjust:none;cursor:pointer;color:inherit;text-decoration:none;transition:.15s ease-in-out;}
:focus,[tabindex="-1"]:focus{outline:0!important;}
input{background:0 0;border-radius:0;}
.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;}
.product-card .product-name h6{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;font-weight:400;}
button,input{font-family:inherit;line-height:inherit;}
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-color:rgba(59, 130, 246, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;}
:after,:before{--tw-content:"";}
button,input{font-size:100%;font-weight:inherit;padding:0;overflow:visible;}
button,input{font-size:inherit;}
[type=button],button{-webkit-appearance:button;background-image:none;}
[type=button],[type=submit],button{-webkit-appearance:button;}
input::placeholder{color:#6b7280;opacity:1;}
button{overflow:visible;}
.btn{user-select:none;}
.product-image>img{max-height:100%;max-width:100%;transition:.2s ease-in-out;}
.product-rating{display:inline-flex;}
.btn,img{vertical-align:middle;}
.d-none{display:none!important;}
@media print{
    img{page-break-inside:avoid;}
    *,:after,:before{box-shadow:none!important;text-shadow:none!important;}
    a:not(.btn){text-decoration:underline;}
}
.btn:hover,a:hover{text-decoration:none;}
.list-inline{padding-left:0;list-style:none;}
.btn:focus{box-shadow:0 0 0 .2rem rgba(0, 123, 255, .25);}
a:hover{color:#0056b3;}
img{width:auto;height:auto;border-style:none;}
button{cursor:pointer;border-radius:0;}
button:focus{outline:-webkit-focus-ring-color auto 5px;}
button,input{font-size:inherit;margin:0;}
h6{font-weight:500;line-height:1.2;margin-bottom:.5rem;}
.btn,.lar{font-weight:400;}
h6{font-size:1rem;}
.btn,.btn:hover{color:#212529;}
.btn{background-color:transparent;border:1px solid transparent;display:inline-block;text-align:center;user-select:none;}
.lar,.las{display:inline-block;font-style:normal;font-variant:normal;line-height:1;}
.lar,.las{font-family:Line Awesome Free;}
.las{font-weight:900;}
.la-heart:before{content:"";}
.la-star:before{content:"";}
.btn,h6,span{font-family:Rubik, Arial, Helvetica, sans-serif;}
a:active,a:focus,a:visited,button:active,button:focus,button:visited,div:active,div:focus,div:visited{outline:0;}
.product-price{color:#0068e1;color:var(--color-primary);display:flex;font-size:15px;font-weight:500;line-height:24px;}
.product-price .previous-price{color:#a6a6a6;font-size:12px;font-weight:400;margin:1px 0 0 8px;position:relative;text-decoration:line-through;}
.product-rating .back-stars{display:flex;position:relative;}
.product-rating .back-stars>i{color:#a6a6a6;margin-right:1px;}
.product-rating .front-stars{color:#ffb136;display:flex;left:0;overflow:hidden;position:absolute;top:0;}
.product-rating .front-stars>i{margin-right:1px;}
.product-rating .rating-count{color:#6e6e6e;font-size:11px;line-height:12px;margin:1px 0 0 5px;}
.btn-wishlist>i{color:#6e6e6e;transition:.5s ease-in-out;}
h6,ul{margin:0;padding:0;}
h6{color:#191919;line-height:18px;}
.btn{border:none;border-radius:2px;font-size:15px;line-height:26px;padding:7px 24px;position:relative;transition:.15s ease-in-out;}
.btn:focus{box-shadow:none!important;outline:0;}
::placeholder{color:#a6a6a6!important;opacity:1;}
/*! CSS Used from: http://natayfresas.com/css/white.css */
form .btn{border:none;background-color:#f8f9fa;color:#6c757d;}
form .btn:hover{background-color:#e9ecef;}
.btn:hover{color:#000;background-color:var(--color-primary);}
/*! CSS Used from: Embedded */
.add-to-cart-form{display:inline-block;width:auto;}
.btn-add-to-cart{white-space:nowrap;}
/*! CSS Used from: https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css */
.sr-only{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}
/*! CSS Used from: https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
*,::after,::before{box-sizing:border-box;}
svg{vertical-align:middle;}
button{border-radius:0;}
button:focus:not(:focus-visible){outline:0;}
button,input{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;}
button{text-transform:none;}
button{-webkit-appearance:button;}
button:not(:disabled){cursor:pointer;}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px;}
.p-2{padding:.5rem!important;}
/*! CSS Used from: http://natayfresas.com/css/main.css */
button{text-transform:none;}
*,:after,:before{box-sizing:border-box;}
*,:after,:before,[type=search]:focus{--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;}
button,input{font-family:inherit;line-height:inherit;}
*{padding:0;}
svg{vertical-align:middle;}
.relative{position:relative;}
.w-full{width:100%;}
*,button,input{color:inherit;margin:0;}
:disabled{cursor:default;}
button:not(:disabled){cursor:pointer;}
button{background-color:transparent;}
.-translate-y-1\/2{transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}
:focus{outline:0!important;}
input{background:0 0;border-radius:0;}
button,input{font-family:inherit;line-height:inherit;}
.transition{transition-duration:.15s;transition-timing-function:cubic-bezier(.4, 0, .2, 1);}
.absolute,.sr-only{position:absolute;}
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-color:rgba(59, 130, 246, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;}
:after,:before{--tw-content:"";}
button,input{font-size:100%;font-weight:inherit;padding:0;overflow:visible;}
button,input{font-size:inherit;}
.sr-only,svg{overflow:hidden;}
button{-webkit-appearance:button;background-image:none;}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px;--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem;}
button{-webkit-appearance:button;}
svg{display:block;}
[type=search]:focus{--tw-ring-inset:empty;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);outline:transparent solid 2px;outline-offset:2px;}
input::placeholder{color:#6b7280;opacity:1;}
.sr-only{clip:rect(0, 0, 0, 0);border-width:0;height:1px;margin:-1px;padding:0;white-space:nowrap;width:1px;}
.left-1{left:.25rem;}
.top-1\/2{top:50%;}
.mr-4{margin-right:1rem;}
.h-4{height:1rem;}
.w-4{width:1rem;}
.max-w-sm{max-width:24rem;}
.-translate-y-1\/2{--tw-translate-y:-50%;}
.rounded-lg{border-radius:.5rem;}
.rounded-md{border-radius:.375rem;}
.p-2{padding:.5rem;}
.pl-10{padding-left:2.5rem;}
.text-sm{font-size:.875rem;line-height:1.25rem;}
.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity));}
.transition{transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;}
button{overflow:visible;}
@media print{
    *,:after,:before{box-shadow:none!important;text-shadow:none!important;}
}
button{cursor:pointer;border-radius:0;}
button:focus{outline:-webkit-focus-ring-color auto 5px;}
button,input{font-size:inherit;margin:0;}
span{font-family:Rubik, Arial, Helvetica, sans-serif;}
button:active,button:focus,button:visited{outline:0;}
::placeholder{color:#a6a6a6!important;opacity:1;}
.breadcrumb{margin-bottom: 0}
.cart-count{
    font-size: small;
}

/* Cookie Modal Styles */
#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    overflow: auto;
}

#cookie-settings-modal.show {
    display: block;
}

#cookie-settings-modal .modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    max-width: 500px;
}

#cookie-settings-modal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 0.3rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

#cookie-settings-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

#cookie-settings-modal .modal-title {
    margin: 0;
    line-height: 1.5;
}

#cookie-settings-modal .modal-close {
    background: transparent;
    border: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#cookie-settings-modal .modal-close:hover {
    opacity: 1;
}

#cookie-settings-modal .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

#cookie-settings-modal .modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
}

#cookie-settings-modal .modal-footer > * {
    margin: 0.25rem;
}

.cookie-option {
    margin-bottom: 1rem;
}

.modal-open {
    overflow: hidden;
}

/* Cookie Bar Styles */
.cookie-bar-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 1040;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.cookie-bar-wrap.show {
    transform: translateY(0);
    display: block;
}

.cookie-bar {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-bar-text {
    flex: 1 1 100%;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cookie-bar-text {
        flex: 1 1 60%;
        margin-bottom: 0;
    }
    
    .cookie-bar-action {
        flex: 0 0 auto;
        margin-left: 1rem;
    }
}
