/** Shopify CDN: Minification failed

Line 320:8 Unexpected "{"
Line 320:15 Expected ":"
Line 322:15 Expected identifier but found whitespace
Line 322:17 Unexpected "{"
Line 322:24 Expected ":"
Line 322:49 Expected ":"
Line 323:18 Expected identifier but found whitespace
Line 323:20 Unexpected "{"
Line 323:27 Expected ":"
Line 323:55 Expected ":"
... and 18 more hidden warnings

**/
/* Inspired by storefront layout patterns similar to aouhra.com — customize images/copy in the theme editor */

:root {
  --aouhra-black: #0a0a0a;
  --aouhra-muted: #5c5c5c;
  --aouhra-border: #e8e8e8;
  --aouhra-red: #c41e3a;
  --aouhra-font: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--aouhra-font);
  letter-spacing: -0.01em;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: none;
  padding: 0.75rem 1.25rem;
  color: #fff;
}

.site-header__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
}

.site-header__right {
  display: flex;
  align-items: center;
  min-width: 0;
  justify-self: end;
  grid-column: 3;
}

.site-header a.site-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-header__logo {
  justify-self: center;
  text-align: center;
  min-width: 0;
  grid-column: 2;
}

.site-header__logo a {
  text-decoration: none;
  color: inherit;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #fff;
}

.site-header__logo-anim {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.site-header__logo-text {
  font-family: var(--aouhra-font);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

.site-header__cart-count {
  font-size: 0.8rem;
  color: #fff;
  opacity: 1;
}

.site-header__nav {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.site-header__nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0.65rem 1.25rem;
}

.site-header__nav-inner a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-header__nav-inner a:hover {
  text-decoration: underline;
}



/* ——— Footer ——— */
.site-footer {
  background: #fafafa;
  border-top: 1px solid var(--aouhra-border);
  padding: 3rem 1.25rem 2rem;
  margin-top: 0;
}

.site-footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.site-footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  color: var(--aouhra-black);
}

.site-footer__info p,
.site-footer__links a {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--aouhra-muted);
  line-height: 1.5;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
}

.site-footer__links a {
  text-decoration: none;
  color: var(--aouhra-muted);
}

.site-footer__links a:hover {
  color: var(--aouhra-black);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--aouhra-border);
  border-radius: 6px;
  font: inherit;
}

.newsletter-form button {
  padding: 0.65rem 1rem;
  background: var(--aouhra-black);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-footer__bottom {
  max-width: 1400px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--aouhra-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--aouhra-muted);
}

/* ——— Home: Hero ——— */
.aouhra-hero {
  position: relative;
  height: min(85vh, 720px);
  overflow: hidden;
  background: #f0f0f0;
}

.aouhra-hero__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}

.aouhra-hero__track::-webkit-scrollbar {
  display: none;
}

.aouhra-hero__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-size: cover;
  background-position: center;
  position: relative;
}

.aouhra-hero__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  z-index: 10;
  pointer-events: auto;
}

.aouhra-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aouhra-hero__dot.is-active {
  background: rgba(0, 0, 0, 0.72);
  transform: scale(1.12);
}

.aouhra-hero__dot:focus-visible {
  outline: 2px solid var(--aouhra-black, #0a0a0a);
  outline-offset: 3px;
}

.aouhra-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

.aouhra-hero__overlay h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 18ch;
  color: var(--aouhra-black);
}

.aouhra-hero__overlay p {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.95;
  max-width: 32ch;
  color: var(--aouhra-black);
}
#slide-{{ block.id }} .aouhra-hero__overlay {
    /* Márgenes editables */
    margin-top: {{ block.settings.margin_top }}px;
    margin-bottom: {{ block.settings.margin_bottom }}px;
    margin-left: {{ block.settings.margin_left }}px;
    margin-right: {{ block.settings.margin_right }}px;
    
    /* Para que el margen funcione correctamente */
    display: flex;
    flex-direction: column;
  }

  /* Color de la letra independiente */
  #slide-{{ block.id }} h2 {
    color: {{ block.settings.color_text_heading }};
  }

  #slide-{{ block.id }} p {
    color: {{ block.settings.color_text_subheading }};
  }
.aouhra-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: #fff;
  color: var(--aouhra-black);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid #fff;
  transition: transform 0.2s, background 0.2s;
}

.aouhra-btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #fff;
}

.aouhra-btn--dark {
  background: var(--aouhra-black);
  color: #fff;
  border-color: var(--aouhra-black);
}

.aouhra-btn--dark:hover {
  background: transparent;
  color: var(--aouhra-black);
}

/* ——— Benefits ——— */
.aouhra-benefits {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--aouhra-border);
}

.aouhra-benefit__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.aouhra-benefit__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.aouhra-benefit h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

@media (max-width: 700px) {
  .aouhra-benefits {
    grid-template-columns: 1fr;
  }
}

/* ——— Category tiles ——— */
.aouhra-cats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.aouhra-cat {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  background: #e8e8e8;
}

.aouhra-cat__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.aouhra-cat__link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);
}

.aouhra-cat__link h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 800px) {
  .aouhra-cats {
    grid-template-columns: 1fr;
  }
}

/* ——— Featured product ——— */
.aouhra-featured {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  border-top: 1px solid var(--aouhra-border);
}

.aouhra-featured__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #f5f5f5;
}

.aouhra-featured__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

.aouhra-featured__price {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.aouhra-featured__price .compare {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 400;
  margin-left: 0.5rem;
}

.aouhra-featured__badge {
  display: inline-block;
  background: var(--aouhra-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.aouhra-featured form {
  margin-top: 1rem;
}

.aouhra-featured .aouhra-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 900px) {
  .aouhra-featured {
    grid-template-columns: 1fr;
  }
}

/* ——— Compare ——— */
.aouhra-compare {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.aouhra-compare h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
}

.aouhra-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.aouhra-compare__table th,
.aouhra-compare__table td {
  border: 1px solid var(--aouhra-border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.aouhra-compare__table th {
  background: #fafafa;
  font-weight: 600;
}

.aouhra-compare .rte table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.aouhra-compare .rte th,
.aouhra-compare .rte td {
  border: 1px solid var(--aouhra-border);
  padding: 0.75rem 1rem;
}

.aouhra-compare .rte img {
  max-width: 100%;
  height: auto;
}

/* ——— FBT ——— */
.aouhra-fbt {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  border-top: 1px solid var(--aouhra-border);
}

.aouhra-fbt h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 2rem;
}

.aouhra-fbt__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aouhra-fbt__card {
  border: 1px solid var(--aouhra-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.aouhra-fbt__card a {
  text-decoration: none;
  color: inherit;
}

.aouhra-fbt__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.aouhra-fbt__card .meta {
  padding: 1rem;
}

.aouhra-fbt__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.aouhra-fbt__card .price {
  font-weight: 600;
}

.aouhra-fbt__card .compare-at {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 0.9rem;
  margin-left: 0.35rem;
}
/* ——— Home (Aouhra section) — solo viewport estrecho; las reglas base de escritorio no se modifican arriba ——— */
@media (max-width: 768px) {
  .aouhra-home {
    overflow-x: hidden;
  }

  .aouhra-home .aouhra-hero {
    height: min(78vh, 580px);
  }

  /* Móvil: baja el bloque de texto para que no tape caras; lateral/inf. sin márgenes del editor */
  .aouhra-home [id^="slide-"] .aouhra-hero__overlay {
    margin-top: clamp(5.5rem, 32vh, 12rem) !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    padding: 1.25rem 1rem;
    box-sizing: border-box;
  }

  .aouhra-home .aouhra-hero__overlay h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 5.5vw, 2.1rem);
    word-wrap: break-word;
  }

  .aouhra-home .aouhra-hero__overlay p {
    max-width: 100%;
    font-size: clamp(0.9rem, 3.2vw, 1.05rem);
    margin-bottom: 1.1rem;
  }

  .aouhra-home .aouhra-benefits,
  .aouhra-home .aouhra-cats,
  .aouhra-home .aouhra-featured,
  .aouhra-home .aouhra-compare,
  .aouhra-home .aouhra-fbt {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .aouhra-home .aouhra-compare .rte {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .aouhra-home .aouhra-fbt__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .aouhra-home .aouhra-hero {
    height: min(72vh, 480px);
  }

  .aouhra-home .aouhra-cat {
    min-height: 160px;
  }

  .aouhra-home .aouhra-cat__link h3 {
    font-size: 1.05rem;
  }
}

/* Evita franja / scroll horizontal en móvil (reveal lateral, carruseles, etc.) */
@media (max-width: 900px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .aouhra-hero__overlay h2 {
    margin-top: 7rem;
    background-color: white;
    padding: 3px;
    border-radius: 12px;
    color: #000000;
  }
  .aouhra-hero__overlay p {
    background-color: white;
    padding: 3px;
    border-radius: 12px;
    
  }
  .site-header {
    padding: 0.65rem 0.85rem;
  }

  .site-header__grid {
    gap: 0.35rem 0.5rem;
  }

  .site-header__cart {
    font-size: 0.78rem;
  }

  .site-header__logo-link {
    gap: 0.4rem;
  }

  .site-header__logo-anim {
    width: 22px;
    height: 22px;
  }

  .site-header__logo-text {
    font-size: 0.75rem;
  }
}
.aouhra-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background-color: #000000;
  color: var(--aouhra-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid #fff;
  transition: transform 0.2s, background 0.2s;
}

.aouhra-btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #000000;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  [id^="slide-"] .aouhra-hero__overlay h2 {
    color: #000000 !important;
  }
}
