/*
Colors:
	Body 		: #5A3B29
	Headers 	: #5A3B29
	Primary 	: #D10024
	Dark 		: #8C5A3C ##8C5A3C
	Grey 		: #F1E4D3 #FAF7F2 #A4A376 #A4A376

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
  font-family: 'Lato', serif;
  font-weight: 400;
  color: #F7E3A6;
  background-color: #1F2525;
}

h1,
h2,
h3 {
  color: #FAF7F2;
  font-weight: 700;
  margin: 0 0 10px;
}


h4,
h5,
h6 {
  color: #F7E3A6;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #FAF7F2;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover,
a:focus {
  color: #F7E3A6;
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

.hidden-by-default {
  display: none !important;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #6D6E68;
  border: none;
  border-radius: 40px;
  color: #FAF7F2;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover,
.primary-btn:focus {
  opacity: 0.9;
  color: #F7E3A6;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #6D6E68;
  background-color: #1F2525;
  color: #F7E3A6;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #6D6E68;
  background-color: #1F2525;
  color: #F7E3A6;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #F1E4D3;
  background-color: #FAF7F2;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover,
.input-number .qty-down:hover {
  background-color: #F1E4D3;
  color: #C96F4A;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #1F2525;
  border: 1px solid #6D6E68;
  color: #F7E3A6;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio,
.input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label,
.input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span,
.input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #F1E4D3;
  background: #FAF7F2;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FAF7F2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FAF7F2;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span,
.input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #6D6E68;
  border-color: #6D6E68;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption,
.input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-title {
  position: relative;
  margin-bottom: 15px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #6D6E68;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #C96F4A;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #F7E3A6;
}

.section-tab-nav li a:hover:after,
.section-tab-nav li a:focus:after,
.section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #1F2525;
  border-bottom: 1px solid #6D6E68;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #A4A376;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #A4A376;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #C96F4A;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  background: -webkit-linear-gradient(90deg, #1F2525, #2C312D, #3D3F3A);
  background: linear-gradient(90deg, #1F2525, #2C312D, #3D3F3A);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  /* Necesario para z-index */
  z-index: 50;
  /* Aumentar prioridad */
}

.header-track {
  display: flex;
  gap: 70px;
  /* ajustá según tu diseño */
  white-space: nowrap;
  will-change: transform;
}

.header-track li {
  list-style: none;
  font-size: 13px;
  white-space: nowrap;
}

.header-track a {
  color: #FAF7F2;
  text-decoration: none;
}

.header-track a:hover {
  color: #e6b65fff;
}

.header-track i {
  color: #e6b65fff;
  margin-right: 5px;
}

/* --- Wrapper para separar carrusel de cotización fija --- */
/* --- Wrapper para separar carrusel de cotización fija --- */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}

/* El carrusel ocupa el espacio restante */
.header-carousel {
  flex: 1;
  min-width: 0;
  /* CRITICAL: Permite que flex-shrink funcione y no se desborde */
  overflow: hidden;
  margin-right: 10px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.header-track a {
  color: #FAF7F2 !important;
  /* Forzar blanco */
  text-decoration: none;
}

.header-track a:hover {
  color: #e6b65fff !important;
  /* Forzar dorado al hover */
}

.header-track i {
  color: #e6b65fff !important;
  /* Forzar dorado */
  margin-right: 5px;
}

/* Cotización fija a la derecha */
.dollar-rate-fixed {
  flex-shrink: 0;
  white-space: nowrap;
  color: #FAF7F2;
  font-size: 13px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.dollar-rate-fixed i {
  color: #e6b65fff;
  margin-right: 5px;
}

/* Ajustes para móviles */
@media (max-width: 768px) {

  /* Asegurar contenedor */
  .header-wrapper {
    gap: 5px;
    overflow: visible;
    /* Permitir que se vea si sobresale un poco */
  }

  /* Estilos del ticker de dolar movil */
  .dollar-rate-fixed {
    font-size: 13px !important;
    padding: 2px 6px;
    z-index: 999;
    /* Máxima prioridad */
    position: fixed;
    display: inline-block !important;
    background: rgb(0, 0, 0);
    /* Fondo semi-transparente oscuro */
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    min-width: auto;
    margin-left: -1px;
  }

  /* Ocultar detalles extra */
  .dollar-rate-fixed .d-detail {
    display: none;
  }

  /* Ajustar carrusel para que no empuje */
  .header-carousel {
    -webkit-mask-image: none;
    mask-image: none;
    flex: 1;
    /* Ocupa el espacio que sobra */
    margin-right: 5px;
  }
}

/* Pantallas muy pequeñas */
@media (max-width: 380px) {
  .dollar-rate-fixed .d-label {
    display: none;
  }
}


/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  /* Ensure header takes full height */
}

/* --- Carousel como fondo absoluto --- */
#headerCarousel {
  position: absolute;
  /* clave: queda detrás del contenido */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Fill the header */
  z-index: 0;
}

/* --- Imágenes y videos dentro del carousel --- */
#headerCarousel .item img,
#headerCarousel .item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Ensure full image/video is visible */
  object-position: center center;
  display: block;
}

/* --- Contenido sobre el carousel (logo, botones, etc.) --- */
.header-logo {
  position: relative;
  z-index: 2;
  /* arriba del video */
}

.carousel-control {
  z-index: 3;
  /* aún más arriba */
}

/* ============================
  RESPONSIVE (ajuste sin recortes)
============================ */


/* Celulares */
@media (max-width: 768px) {
  #headerCarousel {
    height: 55vh;
  }

  #headerCarousel .item img,
  #headerCarousel .item video {
    width: auto;
    max-height: 55vh;
    object-fit: contain;
    object-position: center center;
  }

  .header-logo .logo-container {
    max-width: 150px;
  }

  .carousel-control {
    display: none;
  }
}

/* Celulares muy chicos */
@media (max-width: 480px) {
  #headerCarousel {
    height: 45vh;
  }

  #headerCarousel .item img,
  #headerCarousel .item video {
    width: auto;
    max-height: 45vh;
  }

  .header-logo .logo-container {
    max-width: 120px;
  }
}


/* Centrar logo */
.header-logo {
  float: none;
  text-align: center;
  margin-bottom: 500px;
}


.header-logo .logo {
  display: inline-block;
  /* mantener logo como bloque inline */
}

/* Contenedor de logos superpuestos */
.logo-container {
  display: grid;
  /* superpone los logos */
  grid-area: 1 / 1;
  margin: 0 auto;
  /* centrar contenedor */
  width: auto;
  max-width: 250px;
  /* controla el tamaño máximo */
}

/* Logos */
.logo-container img {
  grid-area: 1 / 1;
  /* se superponen */
  margin-top: 5px;
  width: 100%;
  /* se adapta al contenedor */
  height: auto;
  transition: opacity 1s ease-in-out;
  /* suaviza el desvanecimiento */
}

/* Logo base siempre visible */
.logo-base {
  opacity: 1;
  z-index: 1;
  position: relative;
}

/* Logo iluminado */
.logo-light {
  opacity: 0;
  z-index: 2;
  position: relative;
  animation: lightOn 3s infinite alternate;
  border-radius: 50px;
}

/* Animación de desvanecimiento */
@keyframes lightOn {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  #header {
    background-size: cover;
    /* Cubre todo el fondo */
    background-position: center 20%;
    /* Mueve un poco el enfoque hacia abajo */
    background-repeat: no-repeat;
    height: 55vh;
  }

  .header-logo {
    margin-bottom: 100px;
  }

  .logo-container {
    max-width: 200px;
  }

  .logo-container img {
    width: 100%;
    height: auto;
  }

  .logo-light {
    animation: lightOn 2.5s infinite alternate;
  }
}

/* Aún más pequeño para pantallas muy chicas */
@media (max-width: 480px) {
  #header {
    background-size: cover;
    background-position: center 25%;
    /* baja un poco más el punto de enfoque */
    height: 45vh;
  }

  .logo-container {
    max-width: 170px;
  }
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 15px 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #FAF7F2;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FAF7F2;
  background-color: #C96F4A;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #FAF7F2;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #F1E4D3;
  box-shadow: 0px 0px 0px 2px #F1E4D3;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open>.cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #5A3B29;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #C96F4A;
  color: #FAF7F2;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
  margin-right: -4px;
  background-color: #8C5A3C;
}

.cart-dropdown .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #F1E4D3;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: -webkit-linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
  background: linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
}

/* Estado fijo del nav */
#navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sólo para pantallas grandes */
@media (max-width: 991px) {
  #navigation.sticky {
    position: static;
    box-shadow: none;
  }
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a {
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #F7E3A6;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after,
.main-nav>li>a:focus:after,
.main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }

  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: -webkit-linear-gradient(90deg, #1B2121, #2C312D, #3D3F3A);
    background: linear-gradient(90deg, #1B2121, #2C312D, #3D3F3A);
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }

  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }

  .main-nav {
    margin: 0px;
    float: none;
  }

  .main-nav>li {
    display: block;
    float: none;
  }

  .main-nav>li+li {
    margin-left: 0px;
  }

  .main-nav>li>a {
    padding: 15px;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #F7E3A6;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: #F7E3A6;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #6D6E68;
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #1F2525;
}

.shop .shop-body .cta-btn {
  color: #1F2525;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

/* Slider de productos */
.product-slider {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  /* centrado horizontal */
  align-items: center;
  overflow: hidden;
}

.product-set {
  position: absolute;
  top: 50%;
  /* centrado vertical */
  left: 50%;
  /* centrado horizontal */
  transform: translate(-50%, -50%);
  /* mover al centro exacto */
  width: auto;
  /* ancho según el contenido */
  display: flex;
  justify-content: center;
  /* centrado de los productos dentro del set */
  align-items: center;
  gap: 20px;
  /* espacio entre productos */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  /* más rápido */
}

.product-set.active {
  opacity: 1;
  pointer-events: auto;
}

/* Animación de salida (más espacio hacia el centro antes de desaparecer) */
.product-set.exit .product-left {
  transform: translateX(-250%);
  /* se mueve más a la izquierda */
  opacity: 0;
}

.product-set.exit .product-right {
  transform: translateX(250%);
  /* se mueve más a la derecha */
  opacity: 0;
}

/* Animación de entrada (entra desde el lado opuesto hacia su posición) */
.product-set.enter .product-left {
  transform: translateX(-250%);
  opacity: 0;
}

.product-set.enter.active .product-left {
  transform: translateX(0);
  /* llega a su posición */
  opacity: 1;
}

.product-set.enter .product-right {
  transform: translateX(250%);
  opacity: 0;
}

.product-set.enter.active .product-right {
  transform: translateX(0);
  /* llega a su posición */
  opacity: 1;
}

/* Productos */
.product-left,
.product-right {
  max-height: 100%;
  /* no supera la altura del slider */
  max-width: 45%;
  /* para que ambos productos quepan juntos */
  width: auto;
  height: auto;
  object-fit: contain;
  /* mantiene proporción y centra la imagen */
  transition: transform 0.5s ease, opacity 0.5s ease;
}



/* Countdown */
.hot-deal .hot-deal-countdown {
  margin-bottom: 20px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FAF7F2;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FAF7F2;
}

/* Texto principal */
.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}


@media only screen and (max-width: 767px) {
  .product-set {
    width: 75%;
    height: 75%;
  }
}


#hot-deal.section {
  padding: 30px 0px;
  margin: 0;
  background: -webkit-linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
  background: linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hot-deal {
  text-align: center;
  position: relative;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  background: #6D6E68;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FAF7F2;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FAF7F2;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .hot-deal .cta-btn {
    margin-top: 0;
  }
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #6D6E68, 0px 0px 0px 1px #6D6E68;
  box-shadow: 0px 0px 0px 0px #6D6E68, 0px 0px 0px 1px #6D6E68;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #F1E4D3, 0px 0px 0px 3px #F7E3A6;
  box-shadow: 0px 0px 6px 0px #F1E4D3, 0px 0px 0px 3px #F7E3A6;
}

.product .product-img {
  position: relative;
}

.product-img span {
  position: absolute;
  z-index: 10;
  /* Se asegura que quede encima */
}

.product .product-img>img {
  width: 100%;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #1F2525;
  border-color: #F7E3A6;
  color: #F7E3A6;
}

.product .product-img .product-label>span.new {
  background-color: #F7E3A6;
  border-color: #F7E3A6;
  color: #1F2525;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #1F2525;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #6D6E68;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover,
.product .product-body .product-name>a:focus {
  color: #F7E3A6;
}

.product .product-body .product-price {
  color: #F7E3A6;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #6D6E68;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #1F2525;
  color: #6D6E68;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #F7E3A6;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #6D6E68;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #6D6E68;
  color: #F7E3A6;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #6D6E68;
  color: #F7E3A6;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 0.1px;
  right: 0.1px;
  bottom: 0.5px;
  background: #1F2525;
  -webkit-box-shadow: 0px 0px 6px 0px #F1E4D3, 0px 0px 0px 3px #F7E3A6;
  box-shadow: 0px 0px 6px 0px #F1E4D3, 0px 0px 0px 3px #F7E3A6;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  background-color: #6D6E68;
  color: #FAF7F2;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #F7E3A6;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #1F2525;
  color: #F7E3A6;
  border-color: #F7E3A6;
  padding: 0px 20px 0px 35px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #6D6E68;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover,
.product-widget .product-body .product-name>a:focus {
  color: #F7E3A6;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #F7E3A6;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #6D6E68;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #6D6E68;
  border: none;
  color: #F7E3A6;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev,
.products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before,
.products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label,
.checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small,
.checkbox-filter .input-checkbox label small {
  color: #A4A376;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FAF7F2;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #F1E4D3;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #C96F4A;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #C96F4A;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FAF7F2;
  border: 1px solid #F1E4D3;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #F1E4D3;
  color: #C96F4A;
}

.store-grid li.active {
  background-color: #C96F4A;
  border-color: #C96F4A;
  color: #FAF7F2;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FAF7F2;
  border: 1px solid #F1E4D3;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #F1E4D3;
  color: #C96F4A;
}

.store-pagination li.active {
  background-color: #C96F4A;
  border-color: #C96F4A;
  color: #FAF7F2;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev,
#product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FAF7F2;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #F1E4D3;
}

#product-imgs .product-preview.slick-current {
  border-color: #C96F4A;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #F1E4D3;
}

.product-details .product-rating>i.fa-star {
  color: #C96F4A;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #C96F4A;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #A4A376;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #C96F4A;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #A4A376;
  color: #FAF7F2;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #A4A376;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FAF7F2;
  color: #A4A376;
  border-color: #A4A376;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #F1E4D3;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FAF7F2;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #A4A376;
}

#product-tab .tab-nav li.active a {
  color: #C96F4A;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #C96F4A;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after,
#product-tab .tab-nav li a:focus:after,
#product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars,
.rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i,
.rating .rating-stars>i {
  color: #F1E4D3;
}

.rating-avg .rating-stars>i.fa-star,
.rating .rating-stars>i.fa-star {
  color: #C96F4A;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #F1E4D3;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #C96F4A;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #A4A376;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #A4A376;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #F1E4D3;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #C96F4A;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FAF7F2;
  border: 1px solid #F1E4D3;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #F1E4D3;
  color: #C96F4A;
}

.reviews-pagination li.active {
  background-color: #C96F4A;
  border-color: #C96F4A;
  color: #FAF7F2;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #F1E4D3;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before,
.review-form .input-rating .stars>label:hover~label:before {
  color: #C96F4A;
}

.review-form .input-rating .stars>input:checked label:before,
.review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #C96F4A;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #F1E4D3;
  border-left: 1px solid #F1E4D3;
  border-bottom: 1px solid #F1E4D3;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #F1E4D3;
  border-left: 1px solid #F1E4D3;
  border-right: 1px solid #F1E4D3;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #C96F4A;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #6D6E68;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
  color: white;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #6D6E68;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 120px;
  height: 40px;
  font-weight: 700;
  background: #25D366;
  color: #FAF7F2;
  border: none;
  border-radius: 40px 40px 40px 40px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #F1E4D3;
  background-color: #6D6E68;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover,
.newsletter .newsletter-follow li a:focus {
  background: -webkit-linear-gradient(90deg, #F7E3A6, #E6C87F, #F7E3A6);
  background: linear-gradient(90deg, #F7E3A6, #E6C87F, #F7E3A6);
  color: #1F2525;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: -webkit-linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
  background: linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
}

#bottom-footer {
  background: -webkit-linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
  background: linear-gradient(90deg, #1F2525, #2C312D, #1F2525);
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: #F7E3A6;
}

.footer-links li i {
  margin-right: 15px;
  color: #F7E3A6;
  width: 14px;
  text-align: center;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #F7E3A6;
  font-size: 36px;
  display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #F1E4D3;
  background-color: #FAF7F2;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #F7E3A6;
  border-color: #F7E3A6;
}

.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
  color: #F7E3A6;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before {
  color: #1F2525;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #6D6E68;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #F7E3A6;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }

  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }

  .header-logo {
    float: none;
    text-align: center;
  }

  .header-logo .logo {
    display: inline-block;
  }

  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }

  #rating {
    text-align: center;
  }

  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }

  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }

  .store-grid {
    float: none;
    margin-top: 10px;
  }

  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 9999;
}

/* Icono de WhatsApp */
.whatsapp-btn img {
  width: 30px;
  height: 30px;
}

/* Hover efecto */
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Animación de pulso para llamar la atención */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media only screen and (max-width: 767px) {
  .text-wsp {
    display: none;
  }

  .whatsapp-btn {
    padding: 15px 15px;
  }
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  /* limita el tamaño en pantallas grandes */
  margin: 0 auto;
  /* centra horizontalmente */
  aspect-ratio: 16/9;
  /* mantiene proporción */
  overflow: hidden;
  border-radius: 10px;
  /* opcional: esquinas redondeadas */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.title-center {
  text-align: center;
}

/* Botón de cierre dentro del menú móvil */
.close-nav {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #FAF7F2;
  cursor: pointer;
  z-index: 9999;
}

#responsive-nav.active .close-nav {
  display: block;
  /* solo visible cuando el menú está abierto */
}

/* Mostrar solo en pantallas pequeñas (móviles y tablets) */
@media (max-width: 1024px) {
  .menu-floating {
    display: block;
    position: fixed;
    top: 45px;
    left: 15px;
    z-index: 1000;
    margin: 0;
  }

  .menu-floating a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 30px;
    background: -webkit-linear-gradient(90deg, #1B2121, #2C312D, #3D3F3A);
    background: linear-gradient(90deg, #1B2121, #2C312D, #3D3F3A);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  .menu-floating a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  }

  .menu-floating i {
    font-size: 20px;
    color: #ffffff !important;
  }
}

/* --- BARRA DE FILTROS --- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.filter-bar label {
  color: #F7E3A6;
  font-size: 14px;
  white-space: nowrap;
}

/* --- SELECT DE CATEGORÍAS --- */
#categoryFilter {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #FAF7F2;
  color: black;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 36px 8px 12px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='10' viewBox='0 0 20 20' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M5.5 7l4.5 4 4.5-4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  min-width: 100px;
}

#categoryFilter:hover {
  border-color: #888;
}

#categoryFilter:focus {
  border-color: #F7E3A6;
  box-shadow: 0 0 6px rgba(242, 203, 5, 0.4);
}

/* --- BARRA DE BÚSQUEDA --- */
.search-container {
  display: flex;
  align-items: center;
  flex: 1;
}

#searchInput {
  flex: 1;
  max-width: 260px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

#searchInput:focus {
  border-color: #F7E3A6;
  box-shadow: 0 0 5px rgba(242, 203, 5, 0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .filter-bar {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  #categoryFilter {
    min-width: 80px;
    font-size: 13px;
  }

  #searchInput {
    max-width: 180px;
    width: 100%;
    font-size: 13px;
  }
}

/* --- MOBILE NAVIGATION FIXED --- */
@media (max-width: 991px) {
  #navigation {
    position: fixed;
    top: 38px;
    left: 0;
    width: 110%;
    z-index: 999;
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  #top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  #header {
    margin-top: 60px;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .mobile-logo-container {
    max-width: 100px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-logo-container img {
    max-height: 120px;
    width: auto;
  }

  /* Override existing menu-floating styles for inside header */
  .mobile-nav-header .menu-floating {
    position: static !important;
    display: block !important;
    margin: 0;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
  }

  .mobile-nav-header .menu-floating a {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    color: #F7E3A6;
    font-size: 24px;
    padding: 10px;
    border-radius: 0;
  }

  .mobile-nav-header .menu-floating a:hover {
    transform: none;
    background: none;
    box-shadow: none;
    color: #F7E3A6;
  }

  .mobile-nav-header .menu-floating i {
    color: #5A3B29 !important;
    font-size: 24px;
  }

  /* Adjust responsive nav top padding and close button */
  #responsive-nav {
    padding-top: 80px;
    /* More space for fixed header */
    z-index: 998;
    /* Below header */
  }

  .close-nav {
    top: 75px;
    /* Move down below header */
    color: #FAF7F2;
  }
}

@media (min-width: 992px) {
  .mobile-nav-header {
    display: none;
  }

  /* --- DESKTOP NAVIGATION WITH LOGO --- */
  #navigation {
    padding: 10px 0;
  }

  #navigation .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .desktop-logo-container {
    margin-right: 30px;
  }

  .desktop-logo-container img {
    max-height: 120px;
    width: auto;
  }

  .main-nav {
    margin: 0;
  }

  .main-nav>li>a {
    padding: 15px 10px;
  }

  /* Hide old header logo if it still exists */
  .header-logo {
    display: none !important;
  }
}