:root {
  --brand: #BE1622;
  --bg: #0b0b0b;
  --text: #e9e9e9;
  --muted: #bdbdbd;
  --card: #151515;
  --white: #fff;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Tw Cen MT Condensed", "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color: var(--text);
  background: transparent;
  min-height: 100vh;
}

.site-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, #1b1b1b 50%, #fff 80%);
  z-index: -1
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 16px
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #222;
  z-index: 50
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 18px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .6px
}

.brand img {
  height: 50px;
  width: auto
}

.main-nav {
  display: flex;
  gap: 18px
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 22px;
}

.main-nav a:hover {
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.icon-btn {
  background: transparent;
  border: 0;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;

}

.header-actions button {
  background-image: url(/img/icono\ lupa\ buscador.png);
  background-size: cover;
  background-position: center;
}

.header-actions button:hover {
  background-image: url(/img/icono\ lupa\ buscador\ bold.png);
  padding: 14px;
}

.btn-cart {
  background-image: url(/img/icono\ carrito.png);
  background-size: cover;
  background-position: center;
}

.btn-cart:hover {
  background-image: url(/img/icono\ carrito\ bold.png);
  padding: 14px;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 2px 6px
}

.search-panel {
  background: rgba(0, 0, 0, .9);
  border-top: 1px solid #222
}

.search-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 0
}

#searchInput {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  border: 0;
  background: #fff;
  color: var(--brand);
  font-weight: bold;
}

.close-btn {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 48px 0
}

.hero h1 {
  font-size: 56px;
  line-height: .95;
  margin: 0 0 12px
}

.hero p {
  color: var(--muted);
  max-width: 46ch
}

.hero-mood {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
}

.btn-primary {
  display: inline-block;
  border: 2px solid var(--brand);
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer
}

.btn-primary:hover {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

@media(max-width:678px) {
  .btn-primary {
    padding: 8px 12px;
  }
}

.categories {
  padding: 16px 0 8px
}

.categories h2 {
  font-size: 3em;
}

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

.cat-card {
  display: flex;
  place-items: center;
  height: 90px;
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
@media(min-width:678px){
  .cat-card {
    justify-content: center;
}
}

.cat-card:hover {
  outline: 2px solid var(--brand);
  transition: transform 0.5s ease-in-out;
  position: relative;
  transform: scale(102%);
}
.cat-card h3{
  text-align: left;
  font-size: 2em;
}
@media(max-width:678px){
  .cat-card {
  text-align: left;
  padding-left:20px;
}
.cat-card h3{
  text-align: left;
  font-size: 1.75em;
}
}

.featured,
.about {
  padding: 28px 0
}

h2 {
  margin: 0 0 12px
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.card {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background-color: #fff;
}

.card .p {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.card h3 {
  margin: 0;
  font-size: 20px
}

.card .price {
  color: #fff;
  margin-top: auto;
  text-align: center;
}

.catalog-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

@media(max-width:678px) {
  .catalog-head {
    flex-direction: column;
  }
  .filters{
    margin:auto;
  }
}

.catalog-head h2 {
  font-size: 1.75em;
}

.filters select {
  background: #0f0f0f;
  color: #fff;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 8px 10px
}

.site-footer {
  background: transparent;
  margin-top: 48px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 0
}

.footer-grid h4 {
  margin: 0 0 6px
}

.footer-grid a {
  color: #fff
}

.copyright {
  text-align: center;
  color: #000;
  padding: 20px 0;
  background-color: transparent;
}

.copyright a {
  color: #000;
}

.copyright a:hover {
  font-weight: 800;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--brand);
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  z-index: 40
}

.fab-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  border: 2px solid #fff;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);

  &:hover {
    background-color: #000;
  }
}

.cart .cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border: 1px solid #222;
  border-radius: 14px;
  overflow: hidden
}

.cart-item img {
  width: 100px;
  height: 75px;
  object-fit: contain;
  background-color: #fff;
}

.cart h2 {
  font-size: 3em;
}
@media(max-width:678px){
 .cart h2 {
  font-size: 1.75em;
} 
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  cursor: pointer;
}

.cart-item button {
  background: #0f0f0f;
  border: 1px solid #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  margin-right: 10px;
}

@media(max-width:678px) {
  .cart-item {
    gap: 8px;
    height: 120px;
    padding: 8px;
  }

  .cart-item .remove {
    grid-column: 3 / 4;
  }

  .cart-item img {
    grid-row: 1/3;
  }

  .cart-item div:nth-child(even) {
    grid-row: 1 / 3;
  }
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  background: #0f0f0f;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 14px
}

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

.team-card {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #111;
  display: grid;
  place-items: center;
  border: 1px solid #333
}

@media (max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .categories .grid-5 {
    grid-template-columns: repeat(2, 1fr)
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .main-nav {
    display: none
  }

  .cart-item button {
    margin-right: 4px;
  }

  .cart-summary {
    flex-direction: column;
  }
}

.socialIcons {
  display: flex;
  gap: 10px;
}

.contactoSocial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  text-transform: uppercase;
}

@media(max-width:678px) {
  .contactoSocial {
    width: 87%;
    margin: auto;
    margin-top: 10px;
  }
  .contactoSocial h2{
    font-size: 1.75em;
    margin: 0 0 0;
  }
  .contactoSocial img {
  height: 26px;
  margin-right: 2px;
}
.contactW{
  width: 25px;
    height: 25px;
}
.contactG{
  width: 25px;
    height: 25px;
}
.contactI{
  width: 25px;
    height: 25px;
}
.socialIcons {
    gap: 3px;
}
.like-pdf h2 {
  font-size: 1.75em;
  color: #000;
}
}





@media(min-width:679px) {
  .contactoSocial {
    padding-top: 48px;
    width: 96%;
    margin: auto;

    h2 {
      margin: 0 0 0;
      font-size: 3em;
      color: #000;
      
    }
  
  }
  .like-pdf h2 {
  color: #000;
  font-size: 3em;
  text-transform: uppercase;
}

  .catalog {
    padding-top: 20px;
  }

  .socialIcons img {
    margin-right: 16px;
  }
  .contactoSocial img {
  height: 35px;
}
.contactW{
  width: 35px;
  height: 35px;
}
.contactG{
  width: 35px;
  height: 35px;
}
.contactI{
  width: 35px;
  height: 35px;
}
.catalog-head h2 {
  font-size: 3em;
}
}

/* Categories 2-1-2 layout */
.grid-2-1-2 {
  display: grid;
  grid-template-areas: 'a b' 'c c' 'd e' 'f f';
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.grid-2-1-2 .cat-card:nth-child(1) {
  grid-area: a;
}

.grid-2-1-2 .cat-card:nth-child(2) {
  grid-area: b;
}

.grid-2-1-2 .cat-card:nth-child(3) {
  grid-area: c;
}

.grid-2-1-2 .cat-card:nth-child(4) {
  grid-area: d;
  text-align: center;
}

.grid-2-1-2 .cat-card:nth-child(5) {
  grid-area: e;
}
.grid-2-1-2 .cat-card:nth-child(6) {
  grid-area: f;
}

.grid-2-1-2 .cat-card {
  height: 30vh;
}

.grid-2-1-2 a {
  position: relative;

  h3 {
    position: absolute;
  }
}



/* Like PDF (Nosotros) */
@media(min-width:678px) {
  .categories {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.about.like-pdf {
  background-image: url(/img/fondo\ carta\ de\ presentacion.jpg);
  background-position: center;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 18px
}


.like-pdf__content {
  column-count: 1;
  column-gap: 24px
}

.like-pdf__content p {
  break-inside: avoid;
  margin: 0 0 10px;
  color: #000;
  font-family: "Tw Cen MT", "Century Gothic", sans-serif;
}

.like-pdf__content strong {
  color: #000
}

.imgNosotros {
  height: 25px;
}

@media(min-width:678px) {
  .mainNosotros {
    padding-top: 48px;
    min-height: 75vh;
  }

  .mainContact {
    padding-top: 28px;
    min-height: 75vh;

  }

  .mainProductos {
    min-height: 75vh;
  }

  .mainCart {
    min-height: 75vh;
  }
}

/* Responsive tweaks */
@media (max-width:900px) {
  .grid-2-1-2 {
    grid-template-areas: 'a' 'b' 'c' 'd' 'e' 'f';
    grid-template-columns: 1fr
  }

}

/* chevrons */
.banner-slide.theme-zaraza .bn-chevron {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 32px;
}

.banner-slide.theme-zaraza .bn-chevron svg {
  width: 100%;
  height: 100%
}

/* Banner controls overlay stays on top */
.banner-controls {
  pointer-events: none
}

.banner-controls button {
  pointer-events: auto
}

@media(min-width:678px) {
  .bannerPromo {
    padding-top: 48px;
  }
}

@media (max-width:900px) {
  .banner-slide.theme-zaraza {
    grid-template-columns: 1fr 60px .8fr
  }

  .banner-slide.theme-zaraza .bn-left {
    flex-direction: column;
    align-items: flex-start
  }

  .banner-slide.theme-zaraza .bn-left .bn-img {
    width: 100%;
    max-width: 100%;
    height: 130px
  }
}

/* === Zaraza Banner unified === */
.banner-slide.theme-zaraza {
  position: relative;
  display: flex;
  max-height: 150px;
  justify-content: center;
  background-color: white;
  align-items: center;
  text-decoration: none;
}

.banner-slide.theme-zaraza .bn-left {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px;
  color: #fff
}

.banner-slide.theme-zaraza .bn-left .bn-copy {
  background: rgba(0, 0, 0, .55);
  padding: 16px;
  border-radius: 10px;
  max-width: 400px
}

.banner-slide.theme-zaraza .bn-left h3 {
  margin: 0;
  font-size: 32px
}

.banner-slide.theme-zaraza .bn-left p {
  margin: 6px 0
}

.banner-slide.theme-zaraza .bn-left .price {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-top: 6px
}

.banner-slide.theme-zaraza .bn-sep {
  background-image: url(/img/flechitas\ negras.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 150px;
  width: 7%;
  transform: skewX(-14deg);
}

.banner-slide.theme-zaraza .bn-right {
  background: var(--brand);
  width: 28%;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 20% 0%);
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-slide.theme-zaraza .bn-chevron {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 32px
}

.banner-slide.theme-zaraza .bn-chevron svg {
  width: 100%;
  height: 100%
}

.bn-copy {
  width: 100%;
  height: 140px;
  position: relative;
  padding: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  white-space: pre;
  text-align: left;
  display: flex;
}

.bn-copy h3 {
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: 2.5em;
}

.bn-copy p {
  margin-top: 10px;
}

@media(max-width:678px) {
  .bn-copy p {
    margin-top: 0px;
  }
  .grid-2-1-2 .cat-card{
      height: 20vh;
}
.bn-copy h3 {
  font-size: 1.65em;
}
  .checkout-form .row2 {
    label:nth-child(2) {
      grid-row: 2;

    }

    label {
      grid-column: 1/3;
    }
  }

  .banner-slide.theme-zaraza .bn-sep {
    height: 230px;
  }

  .banner-slide.theme-zaraza {
    max-height: 230px;
  }

  .bn-copy {
    height: 210px;
    background-image: url(/img/Promos/bcf.jpg)!important;
    margin: 4px;
  }

  .banner-slide.theme-zaraza .bn-right {
    height: 210px;
  }
  .category{
        background-position: top;
  }
}

.bn-copy h3,
p,
div {
  z-index: 1;
  position: relative;
}


.bn-copy a {
  position: absolute;
}

/* Background image version */




/* Checkout form styling */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px
}

.checkout-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #fff
}

.checkout-form input {
  background: #0f0f0f;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  outline: none
}

.checkout-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(190, 22, 34, .25)
}

.checkout-form .delivery {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px
}

@media(max-width:678px) {
  .checkout-form .delivery {
    text-align: center;
  }
}

.checkout-form .delivery legend {
  padding: 0 6px;
  color: #fff
}

.checkout-form .delivery .radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px
}

.checkout-form .addr.hidden {
  display: none
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 10px 14px;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4)
}

.toast.show {
  animation: toastIn .2s ease-out
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

/* Contact form aesthetic */
.contact .contact-form {
  margin: 8px;
  background: #0f0f0f;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.contact .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600
}

.contact .contact-form input,
.contact .contact-form textarea {
  background: #0b0b0b;
  border: 1px solid #333;
  border-radius: 12px;
  color: #fff;
  padding: 12px 14px;
  outline: none
}

.contact .contact-form textarea {
  min-height: 140px;
  resize: vertical
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(190, 22, 34, .25)
}

.contact .contact-form .btn-primary {
  justify-self: start
}

.footer-stripes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #fff;
}

.footer-stripes .stripe {
  height: 54px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 1px
}

.footer-stripes .red {
  background: var(--brand);
  color: #fff;
  clip-path: polygon(0% 100%, 94% 100%, 100% 0%, 0% 0%);
}

.footer-stripes .white {
  color: #000;
  text-transform: uppercase;
}

.footer-stripes .white h2 {
  font-size: 2em;
}

.footer-stripes .black {
  background: #000;
  color: #fff;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 5% 0%);
}
@media(max-width:678px) {
  .bbs {
    background-image: url(/img/cb.jpg);
  }
  .gas {
    background-image: url(/img/cs.jpg);
  }
  .marker {
    background-image: url(/img/cellm.jpg);
  }
  .equip {
    background-image: url(/img/cpm.jpg);
  }
  .acces {
    background-image: url(/img/c\ v.jpg);
  }
  .ra{
    background-image: url(/img/ra.jpg);
  }
}
@media(min-width:678px) {
  .bbs {
    background-image: url(/img/categoria\ bbs\ +\ gas\ 2.jpg);
  }
  .gas {
    background-image: url(/img/categoria\ speed\ loaders\ y\ mags\ 2.jpg);
  }
  .marker {
    background-image: url(/img/categoria\ marcadoras\ 5.jpg);
    justify-content: center;
  }
  .equip {
    background-image: url(/img/categoria\ extra\ para\ marcadoras\ 4.jpg);
  }
  .acces {
    background-image: url(/img/cell\ vos.jpg);
  }
  .ra{
    background-image: url(/img/raf.jpg);
  }
  .bn-copy {
    margin: 6px;
  }
}

.contact-form label{
  margin-left: 16px;
}

.contact-form label input{
  margin-left:-14px;
}

.contact-form textarea{
  margin-left:-14px;
}

.ra h3{
  color:#000;
}
@media(min-width:678px){
  .ra h3{
  text-align: center;
}
}
@media(max-width:678px){
  .ra h3{
  color: #fff;
}
}
.category{
  background-size: cover;
  background-position: center;
}
.nosotrosFirma {
  display: grid;
  grid-template-columns: 20% 60% 20%;
  height: 200px;
}

.bbs h3 {
  color: var(--brand);
}

.equip h3 {
  color: var(--brand);
}

@media(min-width:678px) {
  .bbs h3 {
    right: 0;
    padding-right: 20px;
    margin: 0;
  }

  .gas h3 {
    left: 0;
    padding-left: 20px;
    margin: 0;
  }

  .marker h3 {
    padding-right: 20px;
    margin: 0;
    color: #000;
  }

  .equip h3 {
    padding-left: 20px;
    left: 0;
    margin: 0;
    text-align: left;
  }

  .acces h3 {
    right: 0;
    padding-right: 20px;
    margin: 0;
    text-align: right;
  }
}

@media(max-width:678px) {
  .nosotrosFirma {
    height: 62px;
  }
  .marker h3 {
    color: #fff;
  }

}

.dima {
  background-image: url(/img/nos\ dima.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.firma {
  background-image: url(/img/firma.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 90px;
  background-position: center;
}

.pucho {
  background-image: url(/img/nos\ nico.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media(min-width:679px) {
  .pucho {
    background-position: right;
  }

  .firma {
    margin-top: 36px;
  }
  .dis {
    display: none;
  }
}

.contactW {
  background-image: url(/img/icono\ whatsapp.png);
  background-size: contain;
  display: block;
  background-repeat: no-repeat;

  &:hover {
    background-image: url(/img/icono\ whatsapp\ blanco.png);
  }
}

.contactG {
  background-image: url(/img/icono\ ubicacion.png);
  background-size: contain;
  display: block;
  background-repeat: no-repeat;

  &:hover {
    background-image: url(/img/icono\ ubicacion\ blanco.png);
  }
}

.contactI {
  background-image: url(/img/icono\ instagram.png);
  background-size: contain;
  display: block;
  background-repeat: no-repeat;

  &:hover {
    background-image: url(/img/icono\ instagram\ blanco.png);
  }
}

.contactIH {
  background-image: url(/img/icono\ instagram\ blanco.png);
  background-size: contain;
  width: 35px;
  height: 35px;
  display: block;

  &:hover {
    background-image: url(/img/icono\ instagram.png);
  }
}

.contact h2 {
  font-size: 3em;
}

@media(max-width:678px){
  .contact h2 {
  font-size: 1.75em;
}
}

h1,
h2,
h3,
h4,
h5,
a,
label,
legend {
  text-transform: uppercase;
}


.hamburguer {
  background-image: url(/img/burger-menu-svgrepo-com.svg);
  height: 45px;
  width: 45px;
  background-size: cover;
}

@media(min-width:678px) {
  .hamburguer {
    display: none;
  }
}


/* Botón + bloqueado */
.btn-plus.is-disabled,
.btn-plus[disabled] {
  opacity: .55;
  cursor: not-allowed;
  filter: grayscale(.2);
}

/* Candado junto al control de cantidad */
.btn-plus.is-disabled,
.btn-plus[disabled] {
  opacity: .55;
  cursor: not-allowed;
  filter: grayscale(.2);
}

.qty .lock-icon {
  display: none;
  margin-left: 8px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  opacity: .9;
}

.qty .lock-icon.show {
  display: inline-block;
}