:root {
  --color-rojo: #cc0000;
  --color-blanco: #f2f2f2;
  --color-negro: #1a1a1a;

  --color-btn-rojo1: #cc0000;
  --color-bnt-rojo2: #ff3333;
  --color-btn-azul1:#db4dff;
  --color-btn-azul2:#6600cc;

  /* Para la marquesina de marcas */
  --marquee-width: 1600px;
  --marquee-height: 20vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 6;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 1.5s);
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  
  /*outline: 1px solid greenyellow !important;*/ /* FOR CSS DEBUGGIN */
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  /* width: min(90%, 1600px); */
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Josefin Sans', sans-serif;
  margin-inline: auto;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

p, a {
    font-weight: 300;
    font-size: 1.2em;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Le quito el fondo amarillo cuando esta en focus el input */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
  box-shadow: 0 0 0 100px #800000 inset !important;
  -webkit-box-shadow: 0 0 0 100px #800000 inset !important;
    -webkit-text-fill-color: white !important;
}

.w100p {
  width: 100%;
}

.top-search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.top-search-bar img {
  display: inline-block;
  margin-left: -1rem;
  margin-right: 1rem;
}

.top-search-bar input {
  outline: none;
  color: var(--color-blanco);
  border: none;
  border-bottom: 0.1rem solid var(--color-blanco);
  background-color: transparent;
  height: 2.2rem;
  padding: 0 .5rem;
}

.top-search-bar input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-blanco);
  opacity: 1; /* Firefox */
}
.top-search-bar input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: red;
}
.top-search-bar input::-ms-input-placeholder { /* Microsoft Edge */
  color: red;
}
.btn-search {
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0 1.5rem 0 0;
}
.btn-search img {
  position: absolute;
  bottom: 0px;
}
.btn-search img:hover {
  cursor: pointer;
}

/* texto centrado */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

/* texto centrado */
.text-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* marquesina */
.marquesina {
  /* max-width: 1600px; */
  width: 100%;
  height: 3.8rem;
  background-color: #800;
  color: var(--color-blanco);
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: .9em;
}

.atencion {
  position: relative;
  display: inline-block;
  /* width: 70vw; */
}

.atencion a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blanco);
}

.atencion img {
  padding: 0 .5rem;
}

.atencion p {
  border-radius: 50vmax;
  border: 2px solid #fff;
  padding: 0 1rem;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;
}

.atencion p:hover {
  background: #ffffff8d;
}

.tooltip {
  font-size: .8em;
  visibility: hidden;
  width: 120px;
  background-color: rgba(26, 26, 26, .8);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 5px;
  position: absolute;
  top: 2rem;
  z-index: 1;
}
.tooltip::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 15%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgba(26, 26, 26, .8) transparent;
}

.atencion:hover .tooltip {
  visibility: visible;
}

.user-cart {
  /* width: 21vw; */
  display: flex;
  align-items: flex-end;
  flex-direction: row; 
}

.user-cart img {
  padding-left: 1rem;
}


/*
  Carrito de compras
*/
.cart {
  width: 200px;
  position: absolute;
  top: 2.5rem;
  right: -0.5rem;
  list-style: none;
  background: var(--color-blanco);
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
  color: var(--color-negro);
  padding-left: 0px;
  float: left;
  font-size: 1em;
  display: none;
  z-index: 15;
}
.cart li {
  padding: 10px;
  height: 72px;
}

.cart li a .rojo {
  line-height: 0;
  color: red;
  font-size: 1rem;
}
.cart li a .azul {
  line-height: 0;
  padding: 0 2px 0 10px !important;
  color: blue;
  font-size: 1rem;
}
.cart img {
  max-width: 45px;
  max-height: 45px;
  border: 1px solid #cccccc;
  float: left;
  padding: 0;
  margin-right: 5px;
} 
.title {
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1rem;
  margin-top: 0px;
} 
.price-cart {
  font-weight: normal;
}

.cart .price {
  display: block;
  float: left;
}

.cart #total {
  line-height: 1rem;
  height: 2rem;
  background: #262626;
  color: #fff;
  font-size: 1rem;
  text-align: right;
}
.cart #submitForm {
  background: #f2f2f2;
}
.cart #gastos-envio {
  height: 32px;
  margin-top: -20px !important;
  background: #ff7f50;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.cart .pay {
  color: #fff !important;
  font-size: 13px !important;
  text-align: right;
  width: auto;
}  
.cart:after {
  width:0px;
  height:0px;
  border-left: 16px solid transparent;  /* izquierda flecha */
  border-right: 16px solid transparent; /* derecha flecha */
  border-bottom: 16px solid var(--color-blanco); /* base flecha y color*/
  content: "";
  font-size: 0px;
  line-height: 0px;
  top: -15px;
  right: 3px;
  position: absolute;
}  
.cart #submitForm {
  float: center;
}  
.cart-icon {
  position: relative;
  margin: 0;
  padding: 0;
}
.iconcart {
  color: #ccc;
  font-size: 1.5rem;
}

.cart-icon:hover .cart {
  display: block;
}

.cart-icon #totalItems {
  position: absolute;
  top: -1rem;
  right: -1.2rem;
  height: 25px;
  width: 25px;
  background-color: rgb(242, 242, 242, .7);
  color: var(--color-rojo);
  font-size: .8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*
    Barra de navegación y menú móvil
*/
nav {
  max-width: 1600px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #262626;
  height: 4rem;
  padding: 0 1rem;
}

nav::after {
  content: "";
  display: table;
  clear: both;
}

nav ul {
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 10;
}
nav ul li {
  float: left;
  z-index: 99;
}
nav ul li a {
  display: block;
  color: var(--color-blanco);
  text-transform: uppercase;
  padding: 1rem 10px;
  letter-spacing: .1rem;
  font-size: 1em;
}
nav ul li ul li a {
  text-transform: capitalize;
}
nav ul ul li a {
  font-weight: lighter !important;
}
nav ul li a img, nav ul li a p img {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-bottom: -4px;
}
nav ul ul {
  display: none;
  position: absolute;
  /* top: 25px; */
  top: 3.1rem;
  min-width: 180px;
  z-index: 10;
}
nav ul ul ul {
  min-width: 240px;
  margin-top: 5px;
}
nav ul li ul a:hover {
  background-color: #cccccc;
}
nav ul li:hover > ul {
  display: inherit;
}
nav ul li ul li {
  background-color: var(--color-blanco);
  float: none;
  display: list-item;
  position: relative;
}
nav ul ul li a {
  padding: .5rem 1rem;
  color: var(--color-negro);
}
nav ul ul ul li {
  position: relative;
  top: -3.5rem;
  left: 180px;
}

.drop-down {
  position: relative;
}
.drop-down img {
  position: absolute;
  right: 0;
}

/*
  icono de menu hamburguesa
*/
.menu-icon {
  width: 60%;
  display: none;
  cursor: pointer;
  margin: 20px;
}
.menu-icon div {
  width: 25px;
  height: 3px;
  margin: 3px;
  background-color: var(--color-rojo);
  transition: all .5s ease;
}
.top, .middle, .bottom {
  color: var(--color-rojo)
}
@media screen and ( max-width: 1024px ){
  .nav {
    width: 60%;
  }
}

/* Muestra menu para dispositivos móviles */
/*@media screen and ( max-width: 900px ){*/
@media (max-width: 768px) {

  nav {
    padding: 0;
    background-color: rgb(230, 230, 230);
  }

  .nav {
    position: absolute;
    top: 136px;
    left: -100px;
    height: 90vh;
    width: 0px;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: rgb(242, 242, 242);
    transition: all .5s ease-in-out;;
    z-index: 1;
  }

  nav ul li a {
    color: var(--color-negro);
  }
  

  nav ul ul {
    top: 12%;
    left: 0;
    z-index: 999;
  }

  nav ul li ul li {
    background-color: #000000;
    padding-bottom:.5rem;
  }
  nav ul li ul li a {
    color: var(--color-blanco);
    padding-top:.5rem;
  }

  
  /* Menu móvil de hamburguesa */
  .menu-icon {
    width: 85%;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    z-index: 100;
  }
  .nav-active {
    left: 0;
    width: 100vw;
    z-index: 8;
  }
  .menu-icon-active .top {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .menu-icon-active .middle {
    opacity: 0;
  }
  .menu-icon-active .bottom {
    transform: rotate(45deg) translate(-5px, -6px);
  }

}

/* Letras del logo */
.logo {
  border: 2px solid #cccccc;
  border-radius: 5px;
  background-color: rgba(242, 242, 242, 0.9);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: absolute;
  top: 0;
  margin: 1rem;
  padding: 1rem .5rem;
  font-family: 'Julius Sans One', sans-serif;
  line-height: 1;
  max-width: 11rem;
  z-index: 2;
}
.logo a {
  color: var(--color-rojo);
}

/* Container y section */
.container {
  /* max-width: 1600px; */
  width: 100%;
  padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

section {
  padding: 4rem 2rem;
  background-color: var(--color-blanco);
}

.section-title {
  text-transform: uppercase;
  letter-spacing: .2em;
  width: fit-content;
  border-bottom: 2px solid var(--color-rojo);
  margin-bottom: 1.1rem;
}

main {
  background-color: var(--color-blanco);
}
#main-header {
  position: relative;
  height: 100dvh;
  background-color: rgb(230, 230, 230);
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
  clip-path: polygon(50% 0%, 100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
}

.video-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

.main-title {
  color: var(--color-blanco);
  font-size: 4em;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 1rem;
}

.main-title span {
  color: var(--color-bnt-rojo2);
}

#main-header h2 {
  color: var(--color-negro);
  padding-bottom: 2rem;
  font-size: 1.5em;
}

.cta-btn-div {
  width: 92%;
  text-align: center;
}

.btn-cta {
  position: relative;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border: 2px solid var(--color-blanco);
  border-radius: 16px 6px;
  padding: .5rem 2rem;
  margin-bottom: 4rem;
  border: none;
  background: var(--color-btn-rojo1);
  background: linear-gradient(0deg, var(--color-btn-rojo1) 0%, var(--color-bnt-rojo2) 100%);
  color: #fff;
  overflow: hidden;
}
.btn-cta:hover {
    text-decoration: none;
    color: #e6e6e6 !important;
}
.btn-cta:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-cta:hover{
  color: var(--color-negro);
  background-color: var(--color-bnt-rojo2);
}
.btn-cta:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

.btn-pago {
  position: relative;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border: 2px solid var(--color-blanco);
  border-radius: 16px 6px;
  padding: .5rem 1rem;
  border: none;
  background: var(--color-btn-rojo1);
  background: linear-gradient(0deg, var(--color-btn-rojo1) 0%, var(--color-bnt-rojo2) 100%);
  color: #fff;
  overflow: hidden;
  font-size: .8em;
}
.btn-pago:hover {
    text-decoration: none;
    color: #e6e6e6 !important;
}
.btn-pago:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-pago:hover{
  color: var(--color-negro);
  background-color: var(--color-bnt-rojo2);
}
.btn-pago:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

@keyframes shiny-btn1 {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.right-header {
  display: flex;
  justify-content: center;
}

.move-img {
  filter: drop-shadow(12px 12px 7px rgba(0,0,0,.5));
  height: 100%;
  object-fit: contain;
  width: 100%;
  /* animation: updown 3s infinite alternate-reverse; */
}

@keyframes updown {
  from {
    transform: translateY(35px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes horizon {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.5);
  }
}


/* divide el contenido en columnas iguales */
.split-columns {
  display: flex;
  flex-direction: column;
}
@media (min-width: 40em) { /* 40em = 640px */
  .split-columns {
      flex-direction: row;
  }

  .split-columns > * {
      flex-basis: 100%;
  }
}

#search-section {
  width: 100%;
  display: none;
}
.search-section-bg {
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='25' height='25' patternTransform='scale(4) rotate(45)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(231, 14%, 85%,1)'/><path d='M9.19 3.93a9.187 9.187 0 00-5.26 5.26m0 6.618a9.187 9.187 0 005.26 5.259m6.619.002a9.187 9.187 0 005.261-5.261m0-6.618a9.187 9.187 0 00-5.26-5.26'  stroke-linejoin='round' stroke-linecap='round' stroke-width='1' stroke='hsla(240,16.7%,97.6%,1)' fill='none'/><path d='M3 0c0 4-6 4-6 0s6-4 6 0zm25 0c0 4-6 4-6 0s6-4 6 0zM3 25c0 4-6 4-6 0s6-4 6 0zm25 0c0 4-6 4-6 0s6-4 6 0z'  stroke-linejoin='round' stroke-linecap='round' stroke-width='1' stroke='hsla(228,12.5%,84.3%,1)' fill='none'/><path d='M12.5 8.523l3.977 3.977-3.977 3.977L8.523 12.5z'  stroke-linejoin='round' stroke-linecap='round' stroke-width='1' stroke='hsla(230,13%,91%,1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
}

/* Productos Destacados */
#destacados {
  padding: 4rem 0;
  margin: 0;
  width: 100%;
}

.lista-destacados {
  max-width: 1400px;
  margin: 0 auto;
}


/* section escaparate */
#escaparate {
  padding: 4rem 1rem;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='25' height='25' patternTransform='scale(4) rotate(45)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(231, 14%, 85%,1)'/><path d='M9.19 3.93a9.187 9.187 0 00-5.26 5.26m0 6.618a9.187 9.187 0 005.26 5.259m6.619.002a9.187 9.187 0 005.261-5.261m0-6.618a9.187 9.187 0 00-5.26-5.26'  stroke-linejoin='round' stroke-linecap='round' stroke-width='1' stroke='hsla(240,16.7%,97.6%,1)' fill='none'/><path d='M3 0c0 4-6 4-6 0s6-4 6 0zm25 0c0 4-6 4-6 0s6-4 6 0zM3 25c0 4-6 4-6 0s6-4 6 0zm25 0c0 4-6 4-6 0s6-4 6 0z'  stroke-linejoin='round' stroke-linecap='round' stroke-width='1' stroke='hsla(228,12.5%,84.3%,1)' fill='none'/><path d='M12.5 8.523l3.977 3.977-3.977 3.977L8.523 12.5z'  stroke-linejoin='round' stroke-linecap='round' stroke-width='1' stroke='hsla(230,13%,91%,1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
}

.lista-productos {
  width: 100%;
}

/* galeria de productos */
.galeria {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat( auto-fill, minmax(16rem, 1fr) );
  padding-top: 2rem;
}

.card {
  position: relative;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: rgba(255, 255, 255, 1);
  max-width: 262.75px;
  min-height: 554.17px;
  overflow: hidden;
}

.ver-detalle {
  position: absolute;
  top: .6rem;
  right: .6rem;
  cursor: pointer;
  z-index: 6;
}
.content-modal-detalle {
  max-width: 800px;
  display: inline-block;
}
.imagen-detalle {
  display: inline-block;
  width: 50%;
}
.imagen-detalle img {
  max-height: 350px;
}
.texto-detalle {
  display: inline-block;
  width: 45%;
}
.star-review img {
  display: inline-block;
}

.precio-detalle p {
  display: inline-block;
  font-size: .8em;
  font-weight: 700;
}
.btn-add-detalle{
  margin-top: 2rem;
}

.image-card {
  min-height: 350px;
  max-height: 350px;
  overflow: hidden;
}

.image-card img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  /* max-height: 350px; */
  transition: transform .5s ease-in-out;
}

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

.card-title {
  margin: 1rem;
}

.card-short-desc, .card-price {
  padding: 0 1rem;
}
.card-short-desc {
  line-height: 1;
  min-height: 38.41px;
}

.card-price p {
  display: inline-block;
  font-size: .8em;
  font-weight: 700;
  margin: .8rem 0;
}

#sale {
  padding: 4rem 0;
  margin: 0;
  width: 100%;
}

.sale {
  font-weight: normal;
  color: var(--color-rojo);
  text-decoration: line-through;
  padding-right: .5rem;
}

.card-price .sale {
  font-weight: normal;
  color: var(--color-rojo);
  text-decoration: line-through;
}

.card-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.card-btn button {
  width: 90%;
  padding: .3rem 0;
  display: inline-block;
  cursor: pointer;
  border-radius: 16px 6px;
  transition: all .5s ease;
}

.card-btn button:hover {
  border-radius: 6px 16px;
  color: var(--color-blanco);
  background-color: hsla(0, 100%, 40%, .9);
  border: 2px solid #FFF;
}
.card-btn button:hover img {
  filter: invert(100%);
}

.card-btn img {
  width: initial !important;
  display: inline-block !important;
}

.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 5;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: 4;
  content: '';
  display: block;
  /* border: 5px solid #2980b9; */
  border: 5px solid var(--color-bnt-rojo2);
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  /* background-color: #3498db; */
  background-color: var(--color-rojo);
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: var(--color-blanco);
  font: 700 18px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}
.ribbon::before {
  top: 0;
  left: 0;
}
.ribbon::after {
  bottom: 0;
  right: 0;
}

/*
   Banda para tarjeta de productos en Oferta
*/
.ribbon-sale {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 5;
}
.ribbon-sale::before,
.ribbon-sale::after {
  position: absolute;
  z-index: 4;
  content: '';
  display: block;
  border: 5px solid var(--color-btn-azul1);
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-sale span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: var(--color-btn-azul2);
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: var(--color-blanco);
  /* font: 700 18px/1 'Lato', sans-serif; */
  font: 700 18px/1 'Josefin Sans', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}
.ribbon-sale::before {
  top: 0;
  left: 0;
}
.ribbon-sale::after {
  bottom: 0;
  right: 0;
}

.sin-stock a {
  font-size: 1rem;
  color: var(--color-negro);
  line-height: 2.1em;
}

.reviews {
 max-width: 100%;
}

#checkout {
  margin-top: 4rem;
}



#info {
  width: 100%;
  color: var(--color-negro);
  background-image: 
    linear-gradient(to bottom, rgba(245, 246, 252, 0.5), rgba(204, 0, 0, 0.7)),
    url(../images/accessories-black-shadows.png);
  background-size: contain;
  background-attachment: fixed;
  margin-bottom: 4rem;
}
#info .section-title {
  color: var(--color-blanco) !important;
}
.info-card {
  background-color: rgba(242, 242, 242, 0.3);
  border-radius: 5px;
  padding: 2rem 0;
  margin-left: 2rem;
  margin-top: 2rem;
}
.text-info p {
  padding: 1rem;
}
.entrega-gratis {
  color: var(--color-negro);
  background-color: rgba(242, 242, 242, 0.8);
  border-radius: 5px;
  padding: 1rem 2rem;
  margin-top: 2rem;
}
.entrega-gratis span {
  color: var(--color-rojo);
  font-size: 1.2em;
}

/* Carusel de Marcas*/
.marquee {
	width: var(--marquee-width);
	height: var(--marquee-height);
	overflow: hidden;
	position: relative;
}
.marquee:before, .marquee:after {
	position: absolute;
	top: 0;
	width: 10rem;
	height: 100%;
	content: "";
	z-index: 1;
}
/* .marquee:before {
	left: 0;
	background: linear-gradient(to right, rgba(54, 129, 133, 1) 0%, transparent 100%);
}
.marquee:after {
	right: 0;
	background: linear-gradient(to left, rgba(54, 129, 133, 1) 0%, transparent 100%);
} */
.marquee-content {
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.marquee-content img {
  cursor: pointer;
  filter: grayscale(100%);
  transition: all .3s ease-out;
}
.marquee-content img:hover {
  filter: grayscale(0%);
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrolling {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
	display: flex;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	flex-shrink: 0;
	width: var(--marquee-element-width);
	max-height: 100%;
	font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
	white-space: nowrap;
}
.marquee-content li img {
	border-radius: 5px;
}
/* .marquee-content li p {
	font-size: 4.5rem;
	line-height: 1.1;
	color: var(--color-rojo);
	border-bottom: 2px solid var(--color-rojo);
	letter-spacing: -1px;
	padding: 0 2rem;
	margin: 0;
} */
@media (max-width: 600px) {
	:root {
	  --marquee-width: 100vw;
	  --marquee-height: 22vh;
	  --marquee-elements-displayed: 2;
	}
	.marquee:before, .marquee:after { width: 5rem; }
}


/*
  Opiniones de Clientes
*/
#opiniones {
  width: 100%;
}
#opiniones::before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: url(../images/sombras-mujeres.png);
  background-size: contain;
  opacity: 0.05;
}

.opinion-usuario {
  background-image: url(../images/quote-left.png);
  background-repeat: no-repeat;
}
.opinion-usuario p {
  padding-top: .5rem;
  margin-left: 1.6rem;
}

.opiniones-content {
  position: relative;
  max-width: 1400px;
  padding-top: 2rem;
}
.modal-opiniones-content {
  position: relative;
  max-width: 800px;
  padding: 2rem;
}
.opinion {
  color: var(--color-negro);
  max-width: 300px;
  min-width: 220px;
}
.modal-opinion {
  color: var(--color-negro);
  max-width: 130px;
  min-width: 125px;
}

.opinion p {
  display: block;
  font-size: 1em;
}
.modal-opinion p {
  display: block;
  font-size: .8em;
}
.opinion-nombre {
  font-weight: 700;
}
.opinion-fecha {
  font-size: .8em;
}
.opinion img {
  display: inline-block;
}
.star-rating img {
  display: inline-block !important;
  width: 16px;
  height: 16px;
  max-width: 16px;
}


/*
  OFERTAS
*/
.oferta-col-left {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 85%, 0 95%);
  clip-path: polygon(0 0, 100% 0%, 100% 85%, 0 95%);
}

.oferta-col-right {
  position: relative;
  padding: 0 10rem;
}

#ofertas h3 {
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#ofertas input {
  width: 100%;
  outline: none;
  color: var(--color-negro);
  border: none;
  border-bottom: 0.1rem solid var(--color-negro);
  background-color: transparent;
  height: 2.2rem;
  padding: 0 .5rem;
  margin-top: 2rem;
}

#ofertas input[type="checkbox"] {
  display: inline-block;
  margin-top: 2rem;
  width: 1rem;
  height: 1rem;
}

#ofertas span {
  display: inline-block;
  font-size: .9em;
  padding-left: 1.5em;
  text-indent: -2.1em;
  text-align: justify;
}

#ofertas span a {
  font-size: 1em;
  text-decoration: underline;
}

#ofertas button {
  cursor: pointer;
  background-color: var(--color-btn-azul2);
  color: var(--color-blanco);
  width: 100%;
  letter-spacing: 4px;
  font-weight: bolder;
  text-transform: uppercase;
  padding: .5rem 0;
  margin-top: 1.5rem;
  border-radius: 16px 6px;
  border: 1px solid var(--color-btn-azul1);
}

#ofertas button:hover {
  background-color: rgba(102, 0, 204, .9) !important;
}

.ver-todo {
  padding: 4rem 0;
}
.ver-todo a {
  color: var(--color-blanco);
  border-radius: 100vmax;
  padding: 1rem 2rem;
  background-color: var(--color-rojo);
  background: linear-gradient(0deg, var(--color-btn-rojo1) 0%, var(--color-bnt-rojo2) 100%);
  border: 2px solid var(--color-blanco);
}
.ver-todo a:hover {
  background: linear-gradient(0deg, var(--color-btn-rojo1) 100%, var(--color-bnt-rojo2) 0%);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

/* para el efecto Confetti*/
.svg {
  width: 300px;
  position: absolute;
  top: -40px;
  left: 9rem;
  pointer-events: none;
}

.svg-checkout {
  width: 300px;
  position: absolute;
  top: 0px;
  right: 1rem;
  pointer-events: none;
}

.hide {
  display: none;
}

.gracias-registro {
  width: 100%;
  text-align: center;
}


#privacidad {
  cursor: pointer;
}
.politica-de-privacidad-reg, .terminosycond {
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 1rem;
  display: none;
  width: 100%;
}
.politica-de-privacidad-reg h3, .terminosycond h3 {
  font-size: .8rem;
}
.politica-de-privacidad-reg p, .terminosycond p {
  font-size: .9rem;
  padding-bottom: 1rem;
}
.terminosycond ol {
  padding-left: 2rem;
}
.btn-cerrar-politica, .btn-cerrar-terminos{
  padding: 1rem 0;
  text-align: center;
}
.btn-cerrar-politica button, .btn-cerrar-terminos button {
  padding: .3rem 0;
  display: inline-block;
  cursor: pointer;
  border-radius: 16px 6px;
  background-color: var(--color-btn-azul2);
  color: var(--color-blanco);
  max-width: 150px !important;
  transition: all .5s ease;
}

.btn-cerrar-politica button:hover, .btn-cerrar-terminos button:hover {
  background-color: rgba(102, 0, 204, .9);
}



/* 
  Footer
*/
footer {
  background-color: var(--color-blanco);
}

#footer {
  width: 100vw;
  padding: 8rem 2rem 4rem 2rem;
  background-color: var(--color-negro);
  color: var(--color-blanco);
  -webkit-clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 50% 100%, 0 100%, 0 20%);
  clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 50% 100%, 0 100%, 0 20%);
}
#footer ul li a {
  color: var(--color-blanco);
  line-height: 32px;
  display: flex;
  align-items: center;
}
#footer ul li a:hover {
  color: #666;
}
#footer ul li img {
  padding-right: 1rem;
}
#footer h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}
#footer hr {
  width: 80%;
}

.contacto-col-1 {
  padding: 0 4rem;
}
.contacto-col-1 p {
  padding-left: 2rem;
  display: inline-block;
  text-indent: -1.1em;
}
.contacto-col-1 img {
  display: inline-block !important;
}
.contacto-col-2 {
  max-width: 160px;
}

.contacto-col-2 ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contacto-col-3 ul {
  padding-left: 5rem;
  text-decoration: none;
}
.contacto-col-3 ul li::marker {
  content: "";
}
.contacto-col-3 ul li {
  padding-bottom: 1rem;
}
.contacto-col-3 ul li img {
  display: inline-block;
}

.contacto-col-3 p {
  padding-left: 5rem;
}



/*
  Ventana modal para suscripción
*/
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-blanco);
  border-radius: 20px;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 10;
  display: none;
  transition: all .5s ease-in-out;
}

.contentBox {
  position: relative;
  width: 600px;
  height: 450px;
}

.contentBox .imgBx {
  /* position: relative;
  width: 300px;
  height: 300px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .contentBox .imgBx::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: #ccc;
  border-radius: 50%;
} */

.contentBox .imgBx img {
  /* position: relative; */
  max-width: 250px;
  animation: updown 3s infinite alternate-reverse;
}

.contentBox .content {
  position: relative;
  width: 300px;
  height: 450px;
  padding-right: 1rem;
  display: flex;
  align-items: center;
}

.contentBox .content input {
  width: 100%;
  outline: none;
  color: var(--color-negro);
  border: none;
  border-bottom: 0.1rem solid var(--color-negro);
  background-color: transparent;
  height: 2.2rem;
  padding: 0 .5rem;
  margin-top: 2rem;
}

.contentBox .content input[type="checkbox"] {
  display: inline-block;
  margin: 2rem 0;
  width: 1rem;
  height: 1rem;
}

.contentBox .content h2 {
  color: var(--color-rojo);
}
.contentBox .content p {
  line-height: 1;
}
.contentBox .content span {
  display: inline-block;
  font-size: .8em;
  line-height: 0;
  padding-bottom: 2rem;
}

.contentBox .content button {
  width: 50%;
  letter-spacing: 4px;
  font-weight: bolder;
  text-transform: uppercase;
  padding: .5rem 0;
  margin-bottom: 1.5rem;
  border-radius: 16px 6px;
}

.close {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: url(../images/close.png);
  z-index: 10;
}

.popup-activo {
  display: block;
}


/*
  Ventana modal para mostrar detalle de articulos
*/
#modalDetalle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  border-radius: 5px;
  border: 1px solid var(--color-blanco);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 1rem;
  /* overflow-y: hidden; */
}
#modalDetalle::backdrop {
  background-color: rgba(204, 0, 0, .5);
}
#modalReview {
  border-radius: 5px;
  border: 1px solid var(--color-blanco);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#modalReview::backdrop {
  background-color: rgba(0, 0, 0, .8);
}
.btn-review {
  cursor: pointer;
  background-color: #ffcc00;
  color: var(--color-negro);
  padding: .5rem 1rem;
  border-radius: 6px;
  border: 1px solid #ffffff;
  outline: none;
}
.btn-review:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.input-review {
  width: 100%;
  outline: none;
  color: var(--color-negro);
  border: none;
  border-bottom: 0.1rem solid var(--color-negro);
  background-color: transparent;
  height: 2.2rem;
  padding: 0 .5rem;
  margin: 2rem 0;
}
.input-container textarea {
  width: 100%;
  padding: 10px;
  resize: none;
  margin-bottom: 2rem
}
.rating-stars{
  overflow: hidden;
  vertical-align: bottom;
  display: inline-block;
  width: auto;
  height: 20px;
}
.rating-stars > input{
  opacity: 0;
  /*margin-right: -100%;*/
}
.rating-stars > label{
  position: relative;
  display: block;
  float: left;
  background: url('../images/estrella-vacia.png');
  background-size: 20px 20px;
  margin-right: 5px;
}
.rating-stars > label:before{
  display: block;
  opacity: 0;
  content: '';
  width: 20px;
  height: 20px;
  background: url('../images/estrella-llena.png');
  background-size: 20px 20px;
  transition: opacity 0.2s linear;
}
.rating-stars > label:hover:before,
.rating-stars > label:hover ~ label:before,
.rating-stars:not(:hover) > :checked ~ label:before{
  opacity: 1;
}
.btn-review-enviar {
  width: 100%;
  margin: 2rem 0;
  font-size: 1em;
  letter-spacing: .2em;
}

.error {
  color: var(--color-rojo);
  margin-top: -2rem;
  padding-bottom: 2rem;
  font-size: .8em;
}
.error-nombre, .error-review {
  display: none;
}
.success {
  color: #009933;
}
.review-sent, .error-review-sent {
  display: none;
}



/*
  Area de revision y continuar con el pago
*/
#carrito {
  margin-top: 4rem;
  width: 60%;
  min-height: 100vh;
}
#detalle-compra img {
  width: 50px;
  max-height: 50px;
}
.total-compra, .continuar-pago {
  display: flex;
  justify-content: flex-end;
}
.continuar-pago .btn-pago {
  font-size: 1em;
}
#shopping-cart .total-compra table {
background-color: #f2f2f2;
border-left: 2px solid #000000;
border-right: 2px solid #000000;
border-bottom: 2px solid #000000;
width: 100%;
max-width: 60%;
margin-bottom: 1rem;
}
.pago-seguro {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.pago-seguro span {
font-size: 1.2rem;
font-weight: bolder;
line-height: 2.5rem;
}
td:last-child {
  text-align: right;
}
th:last-child {
  text-align: right;
}

.btn-continua {
color: var(--color-negro);
border: none;
outline: none;
transition: all .3s ease;
}
.btn-continua:hover {
  cursor: pointer;
  color: var(--color-btn-azul2);
}

.sub-total, .total-iva, .total-envio, .total-pagar {
padding-right: 1rem;
}

.costo-envio {
  padding: .5rem 0;
  margin: 1rem 0 2rem 0;
  background-color: #ccc;
}

.costo-envio img {
  display: inline-block;
}

.cart-info a {
  color: var(--color-rojo);
  font-size: .9em;
}

/*
  Botón flotante de WhatsApp
*/
.btn-whatsapp {
	position: fixed;
	bottom: 4rem;
	right: 2rem;
	background-color: #0df053;
	border-radius: 50px;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.5);
	z-index: 10;
	animation: pulse 5000ms infinite;
  transition: background-color .3s ease;
}

.btn-whatsapp:hover {
	background-color: #0ac244;
}
.necesitas-ayuda {
	position: fixed;
	bottom: 2.5rem;
	right: 3px;
  font-size: .7em;
  text-shadow: 2px 0 var(--color-blanco), -2px 0 var(--color-blanco), 0 2px var(--color-blanco), 0 -2px var(--color-blanco),
               1px 1px var(--color-blanco), -1px -1px var(--color-blanco), 1px -1px var(--color-blanco), -1px 1px var(--color-blanco);
  z-index: 10;
}

@keyframes pulse {
	0% {
		box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
	}
	50% {
		box-shadow: 0px 1px 20px rgba(0,0,0,0.8);
	}
	100% {
		box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
	}
}

.ti-conmigo {
  color: var(--color-negro);
  background-color: var(--color-blanco);
}
.ti-conmigo svg {
  height: 1.2em;
  width: 1.2em;
}
.latido {
  animation: heartbeat 1.5s infinite ease-in-out;
}
@keyframes heartbeat {
  10% {transform: scale(.85)}
  20% {transform: scale(1)}
  40% {transform: scale(.85)}
  60% {transform: scale(1)}
}


/*

    Check-Out

*/
.checkout {
  margin: 0 auto;
  padding: 1rem 0;
}

.checkout h2, .checkout h3, .checkout h4, .checkout p {
  color: #1a1a1a;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.col-left {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 1rem 0 0 2.3rem;
  margin-right: 1rem;
  flex-basis: 65%;
  min-width: 420px;
  background: rgb(242, 242, 242, .8);
}

.col-right {
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  padding: 1rem;
  flex-basis: 30%;
  min-width: 180px;
  background: rgb(204, 0, 0);
  background: linear-gradient(180deg, rgba(204, 204, 204, .9) 15%, rgba(255,255,255,1) 85%);
}

.col-right h3 {
  padding-bottom: 1.5rem;
}

.wrap #nombre, .wrap #apellidos, .wrap #email, .wrap #telefono, .wrap #calle, .wrap #num_ext, .wrap #num_int, .wrap #colonia, .wrap #municipio, .wrap #ciudad, .wrap #estado, .wrap #cp, .wrap #info_adicional {
  display: inline-block;
  margin: 0 1rem 1rem 0;
  width: 45%;
  outline: none;
  border: none;
  border-bottom: 0.1rem solid var(--color-negro);
  background-color: transparent;
  height: 2.2rem;
  padding: 0 .5rem;
}

.wrap input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-rojo);
  opacity: 1; /* Firefox */
}
.wrap input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--color-rojo);
}
.wrap input::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--color-rojo);
}

.wrap #calle {
  width: 63.5%;
}
.wrap #num_ext, .wrap #num_int, .wrap #cp {
  width: 12%;
}
.wrap #info_adicional {
  width: 93%;
  resize: none;
  margin-top: 1rem;
}
.wrap #estado {
  height: 2.2rem;
  border: 0px;
  border-bottom: 1px inset var(--color-negro);
  width: 30%;
}

/* Le quito el fondo amarillo cuando esta en focu el input */
.wrap input:-webkit-autofill,
.wrap input:-webkit-autofill:hover, 
.wrap input:-webkit-autofill:focus, 
.wrap input:-webkit-autofill:active  {
    box-shadow: 0 0 0 100px var(--color-blanco) inset !important;
    -webkit-box-shadow: 0 0 0 100px var(--color-blanco) inset !important;
    -webkit-text-fill-color: var(--color-negro) !important;
}

#detalle-compra img {
  width: 100px;
  max-height: 100px;
}
#detalle-compra p {
  font-size: 1.2rem;
}

.btn-checkout {
  position: relative;
  margin: 1rem 0;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border: 2px solid var(--color-blanco);
  border-radius: 16px 6px;
  padding: .5rem 1rem;
  border: none;
  background: var(--color-btn-rojo1);
  background: linear-gradient(0deg, var(--color-btn-rojo1) 0%, var(--color-bnt-rojo2) 100%);
  color: #fff;
  overflow: hidden;
  font-size: 1.2em;
  letter-spacing: .2px;
  width: 100%;
}
.btn-checkout:hover {
    text-decoration: none;
    color: #e6e6e6 !important;
}
.btn-checkout:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-checkout:hover{
  color: var(--color-negro);
  background-color: var(--color-bnt-rojo2);
}
.btn-checkout:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

.gracias {
  position: relative;
  display: none;
  padding: 2rem 0;
}




/*
----------------------------------------------------------

                      Dispositivos móviles

---------------------------------------------------------
*/
@media (max-width: 768px) {

  body {
    width: 100%;
  }

  section {
    padding: 2rem 1rem;
  }

  .logo {
    display: flex;
    text-align: center;
    justify-content: center;
    box-shadow: none;  
    left: 0;
    margin: 0rem;
    padding: 1rem .5rem;
    font-family: 'Julius Sans One', sans-serif;
    max-width: 100vw;
    min-height: 74.5px;
    width: 100%;
    background-color: #800;
  }

  .logo p {
    color: var(--color-blanco);
    font-size: 1.2rem;
    line-height: 1;
  }

  .marquesina {
    margin-top: 74.5px;
    padding-left: 1rem;
  }

  .atencion {
    display: none;
  }

  .user-cart {
    width: 100vw;
    justify-content: center;
  }

  #main-header {
    height: 80dvh;
    padding-top: 5rem;
    -webkit-clip-path: none;
    clip-path: none;
  }

  #main-header h2 {
    font-size: 1.2em;
    padding-bottom: 0;
    margin-bottom: 2rem;
  }

  .main-title {
    color: var(--color-negro);
    font-size: 2em;
  }

  .marquee-content img {
    max-height: 100px;
  }

  .section-title h2 {
    font-size: 1.2em;
  }

  .galeria {
    gap: 1;
    justify-content: center;
    grid-template-columns: none;
  }
 
  .lista-productos {
    padding: 1rem 0rem;
  }

  #info .split-columns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    padding: 1rem 0;
    margin-left: 1rem;
    margin-top: 1rem;
    max-width: 44%;
    border-radius: 5px;
  }
  .info-card p {
    font-size: .9em;
    padding: .5rem;
  }
  .info-card img {
    width: 50%;
  }

  .imagen-detalle, .texto-detalle {
    width: 100%;
  }

  /* #modalDetalle {
    position: absolute;
    top: 75px;
    left: 0;
  } */

  .texto-detalle {
    padding: 1rem;
  }

  .close {
    left: 1rem;
  }

  .owl-stage-outer {
    margin: 0 auto;
  }

  .owl-carousel .owl-item {
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  /* .card {
    max-width: 350px;
  } */

  .oferta-col-left img {
    width: 50%;
  }
  .oferta-col-right {
    position: relative;
    padding: 0 1rem;
  }

  #footer {
    padding: 2rem 1rem 4rem 1rem;
    -webkit-clip-path: none;
    clip-path: none;
  }

  .contacto-col-1, .contacto-col-2, .contacto-col-3  {
    max-width: 100vw;
  }
  .contacto-col-1 {
    padding: 0;
  }
  .contacto-col-1 p {
    padding-left: 1rem;
    text-indent: -.8em;
  }
  .contacto-col-2 {
    padding-top: 2rem;
  }
  
  .contacto-col-3 {
    padding-top: 2rem;
  }
  .contacto-col-3 ul {
    padding-left: 1rem;

  }  
  .contacto-col-3 p {
    padding-left: 1rem;
  }

  #carrito {
    min-width: 100vw;
  }

  #detalle-compra p, .costo-envio p, #carrito button {
    font-size: .9em;
  }

  #detalle-compra td {
    font-size: .8em;
  }

  .continuar-pago {
    justify-content: center;
    align-items: center;
  }

  .col-left, .col-right {
    min-width: 300px;
    flex-basis: 100%;
    padding: 1rem;
    margin: 0 auto;
  }

  .col-left h3 {
    font-size: .9em;
  }

  .col-right td {
    font-size: .8em;
  }

  .wrap #nombre, .wrap #apellidos, .wrap #email, .wrap #telefono, .wrap #calle, .wrap #num_ext, .wrap #num_int, .wrap #colonia, .wrap #municipio, .wrap #ciudad, .wrap #estado, .wrap #cp, .wrap #info_adicional {
    width: 97%;
  }

  .wrap #num_ext, .wrap #num_int {
    width: 42%;
  }
  .wrap #info_adicional {
    width: 93%;
    resize: none;
    margin-top: 1rem;
  }
  .wrap #estado {
    height: 2.2rem;
    border: 0px;
    border-bottom: 1px inset var(--color-negro);
    width: 55%;
  }

  .wrap #cp {
    width: 30%;
  }

  .wrap textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-size: .8em;
  }
  .wrap textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: .8em;
  }
  .wrap textarea::-ms-input-placeholder { /* Microsoft Edge */
    font-size: .8em;
  }
    


  .contentBox {
    width: 300px;
    height: auto;
    flex-direction: column;
  }

  .contentBox .imgBx {
    height: 150px;
    transform: translateY(-50px);
  }

  .contentBox .imgBx img {
    max-height: 120px;
  }

  .contentBox .content {
    height: auto;
    padding: 0 1rem;
  }

  .contentBox .content input {
    height: 2rem;
    padding: 0 .5rem;
    margin-top: 1rem;
  }
  
  .contentBox .content input[type="checkbox"] {
    margin: 1rem 0;
  }
  
  .contentBox .content span {
    display: inline-block;
    font-size: .8em;
    line-height: 0;
    padding-bottom: 1rem;
  }

  .contentBox .content span a {
    display: inline-block;
    font-size: .9em;
    line-height: 0;
  }

  .contentBox .content button {
    width: 100%;
    letter-spacing: 3px;
    padding: .3rem 0;
    border-radius: 16px 6px;
  }
  
}