:root {
  --teal: #1a3035;
  --teal-deep: #003844;
  --orange: #e75e35;
  --orange-hover: #d14f2a;
  --yellow: #fcd12a;
  --ink: #1a1a1a;
  --muted: #5f6b73;
  --line: #c5ced3;
  --bg: #ffffff;
  --font: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --script: "Great Vibes", cursive;
  --max: 1180px;
  --shadow: 0 12px 28px rgba(20, 32, 40, 0.12);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-radius: 8px;
  padding: 0.95rem 1.7rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 18px rgba(231, 94, 53, 0.28);
}

.btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.4rem;
  color: var(--teal-deep);
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-title span {
  flex: 0 0 auto;
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #ffffff;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-scene {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}

/* Sfumatura nello STESSO div dell'immagine: bianco pieno a sx → trasparente a dx */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 42%,
      rgba(255, 255, 255, 0.98) 50%,
      rgba(255, 255, 255, 0.75) 58%,
      rgba(255, 255, 255, 0.35) 68%,
      rgba(255, 255, 255, 0.1) 78%,
      rgba(255, 255, 255, 0) 88%
    );
  pointer-events: none;
}

/* Header geometrico: rettangolo + triangolo */
.el1-header {
  position: relative;
  z-index: 3;
  width: 100%;
}

.el1-header-rect {
  background: #1a252b;
  height: 76px;
}

.el1-header-wedge {
  display: block;
  width: 100%;
  height: 35px;
  background: #1a252b;
  clip-path: polygon(0 0, 131% 0, 0 100%);
  margin-top: -1px;
}

/* Logo + OUTLET absolute sull'hero */
.el1-logo {
  position: absolute;
  top: 20px;
  left: 10%;
  z-index: 1000;
}

.el1-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.el1-outlet {
  height: 52px;
  width: auto;
  display: block;
  position: absolute;
  right: 20%;
  top: 17px;
  z-index: 1000;
  zoom: 1.5;
}

/* Colonna contenuti bloccata a sinistra (come mockup) */
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0rem 0 5.5rem;
  display: block;
}

.hero-copy {
  width: min(100%, 520px);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-titles {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-title {
  margin: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-title img {
  width: 100%;
  height: auto;
  display: block;
}

.deal-ribbon {
  position: absolute;
  left: 2%;
  width: 96%;
  bottom: 30px;
  margin: 0;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-2deg);
}

.deal-ribbon img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  margin: 0 0 1.35rem;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  transform: rotate(-3deg);
  margin-left: 34px;
  margin-top: -30px;
}

.hero-text p { margin: 0 0 0.55rem; }
.hero-text strong {
  font-style: normal;
  font-weight: 800;
}

.btn-hero {
  display: inline-block;
  margin: 0 0 0 28px;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  transform: rotate(-3deg);
  line-height: 0;
}

.btn-hero img {
  height: 150px;
  width: auto;
  display: block;
  position: relative;
  bottom: 0;
  z-index: 100000;
  margin-bottom: -100px;
  margin-top: -44px;
}

/* Badge apertura ancorato in basso a destra dell'hero */
.open-badge {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: 1.25rem;
  z-index: 3;
  width: clamp(118px, 14vw, 142px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe566, var(--yellow));
  border: 5px solid #1a1a1a;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--ink);
  /* box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28); */
}

.open-badge-kicker,
.open-badge-month {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.open-badge-day {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

/* ===== WHY ===== */
.why {
  padding: 2.4rem 0 1.5rem;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid #2a3d48;
  border-radius: 8px;
  padding: 0.9rem 0.85rem;
  background: #fff;
  min-height: 88px;
  min-width: 0;
}

.why-ico {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--teal-deep);
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: break-word;
}

/* ===== PRODUCTS ===== */
.featured,
.pills { padding: 1.8rem 0; }

.featured-carousel {
  position: relative;
  padding: 0 5px;
}

.featured-carousel__viewport {
  overflow: hidden;
}

.featured-carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}

.featured-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.featured-carousel__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1.5px solid #c5ced3;
  border-radius: 50%;
  background: #fff;
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.featured-carousel__btn svg {
  width: 16px;
  height: 16px;
}

.featured-carousel__btn--prev {
  left: 0;
}

.featured-carousel__btn--prev svg {
  transform: rotate(180deg);
}

.featured-carousel__btn--next {
  right: 0;
}

.featured-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.featured-carousel__dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #c5ced3;
  cursor: pointer;
}

.featured-carousel__dots button.is-active {
  background: var(--teal-deep);
}

.featured .product-card {
  border-radius: 10px;
}

.featured .discount-badge {
  zoom: 1.5;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid #1a1a1a;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 900;
  z-index: 1;
}

.featured .price-new {
  text-align: center;
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 900;
  color: var(--orange);
  zoom: 1.5;
}

@media (min-width: 720px) {
  .featured-slide {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
}

@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.product-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card .media {
  position: relative;
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lazy-hover-img {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.media.is-loaded .lazy-hover-img {
  opacity: 1;
}

.img-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 3px solid rgba(0, 56, 68, 0.15);
  border-top-color: var(--teal-deep);
  border-radius: 50%;
  animation: img-loader-spin 0.8s linear infinite;
}

.media.is-loaded .img-loader {
  display: none;
}

@keyframes img-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.discount-badge {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid #1a1a1a;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 900;
  z-index: 1;
}

.product-card .meta {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(0.62rem, 1.1vw, 0.76rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
  min-height: 2.4em;
  color: var(--teal);
}

.price-old {
  margin: 0;
  font-size: 0.68rem;
  color: #8a9399;
  text-decoration: line-through;
  font-weight: 600;
}

.price-new {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 900;
  color: var(--orange);
}

.price-new small {
  font-size: 0.75em;
  font-weight: 800;
}

/* ===== PILLS ===== */
.pills-panel {
  position: relative;
  border: 1.5px solid #2a3d48;
  border-radius: 12px;
  padding: 1.65rem 0.85rem 0.95rem;
  background: #fff;
}

.pills-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0 0.85rem;
  background: #fff;
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-deep);
  white-space: nowrap;
}

.pill-row {
  display: flex;
  justify-content: space-between;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pill {
  flex: 1 1 0;
  min-width: 72px;
  border: 1.5px solid #2a3d48;
  background: #fff;
  color: var(--teal-deep);
  border-radius: 8px;
  padding: 0.55rem 0.35rem;
  text-align: center;
  text-decoration: none;
}

.pill-line {
  display: block;
  font-size: clamp(0.58rem, 1.1vw, 0.72rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.pill:hover {
  border-color: var(--orange);
  background: #fff7f3;
}

@media (max-width: 720px) {
  .pill-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pill {
    flex: 1 1 calc(25% - 0.45rem);
    min-width: 68px;
  }
}

/* ===== CHEAP ===== */
.cheap {
  position: relative;
  background-color: var(--teal-deep);
  background-image: url('../assets/static/background_perche.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: #fff;
  padding: 2.8rem 0;
  margin: 1.2rem 0;
}

.cheap-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.cheap-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cheap-icon--tag img {
  width: 92px;
  height: auto;
  display: block;
}

.cheap-icon--box img {
  width: 108px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.cheap-copy {
  max-width: 52rem;
  margin: 0 auto;
}

.cheap-copy h2 {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cheap-copy p {
  margin: 0;
  text-align: center;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
}

/* ===== STEPS ===== */
.steps { padding: 2.6rem 0 2rem; }

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.45rem;
  align-items: stretch;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1.5px solid #2a3d48;
  border-radius: 8px;
  padding: 0.9rem 0.85rem;
  background: #fff;
  min-height: 88px;
  min-width: 0;
}

.step-ico {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.step-num {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  display: grid;
  place-items: center;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--teal-deep);
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: break-word;
}

.step-arrow {
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  width: 22px;
}

.step-arrow svg { width: 20px; height: 20px; }

/* ===== STORE ===== */
.store {
  padding: 0;
}

.store-split {
  display: flex;
  min-height: 300px;
}

.store-photo,
.store-panel {
  flex: 0 0 50%;
  width: 50%;
}

.store-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.store-panel {
  display: flex;
  flex-direction: column;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 6px
    ),
    var(--teal-deep);
  color: #fff;
}

.store-panel__body {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: 1.35rem 1.2rem 1rem;
}

.store-panel__main {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.store-head {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.store-pin {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--yellow);
  margin-top: 0.1rem;
}

.store-kicker {
  margin: 0;
  font-size: clamp(0.72rem, 1.2vw, 0.92rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.store-brand {
  margin: 0.15rem 0 0;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.1;
}

.store-addr {
  margin: 0;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

.store-cta {
  display: block;
  margin-top: auto;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.store-cta:hover {
  background: var(--orange-hover);
}

.store-panel__divider {
  flex: 0 0 1px;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
  align-self: stretch;
}

.store-panel__hours {
  flex: 1 1 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  min-width: 0;
}

.store-hour {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.store-hour svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #fff;
  stroke-width: 2.2;
}

.store-hour svg.is-yellow {
  color: var(--yellow);
}

.store-hour p {
  margin: 0;
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
}

.store-bar {
  margin: 0;
  padding: 0.55rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.catalog-trust .trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
  padding: 0.25rem 0.4rem;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255,255,255,0.18);
}

.trust-item svg {
  width: 32px;
  height: 32px;
  color: #fff;
  flex: 0 0 auto;
}

.trust-item p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.trust-item p span {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.trust-item strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  font-weight: 800;
}

.trust-euro {
  filter: brightness(0) invert(1);
}

/* ===== CATALOG ===== */
.catalog {
  padding: 0 0 3rem;
  background: var(--teal-deep);
  color: #fff;
}

.catalog-trust {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.catalog-body {
  padding-top: 2rem;
}

.catalog-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.catalog-lead {
  text-align: center;
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-style: italic;
}

.catalog-lead--error {
  color: #ffb4a8;
}

.catalog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.catalog-card {
  border: 0;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card .meta {
  font-size: 0.82rem;
  color: #1a3035;
  font-weight: 800;
}

.product-views {
  margin: 0;
  font-size: 0.68rem;
  color: #5f6b73;
  font-style: italic;
}

.product-views strong {
  font-style: normal;
  font-weight: 800;
  color: var(--teal-deep);
}

.catalog-card h3 {
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  text-transform: none;
  color: #1a3035;
  min-height: 2.6em;
}

.catalog-card .price-old {
  font-size: 0.72rem;
}

.catalog-card .price-new {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.catalog-load-more {
  border: 2px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
}

.catalog-load-more:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* ===== PRODUCT MODAL ===== */
body.modal-open {
  overflow: hidden;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.product-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.product-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #1a3035;
}

.product-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.product-modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.product-modal__gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f5f7f8;
  border-radius: 8px;
}

.product-modal__id {
  margin: 0 0 0.35rem;
  font-weight: 800;
  color: #1a3035;
}

.product-modal__title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1.35;
  color: #1a3035;
}

.product-modal__views {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-style: italic;
  color: #5f6b73;
}

.product-modal__views strong {
  font-style: normal;
  font-weight: 800;
  color: var(--teal-deep);
}

.product-modal__category {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: #5f6b73;
}

.product-modal__price-old {
  margin: 0.8rem 0 0.25rem;
  font-size: 0.82rem;
  color: #8a9399;
  text-decoration: line-through;
}

.product-modal__price-new {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--orange);
}

.product-modal__price-new small {
  font-size: 0.75em;
}

.product-modal__note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #5f6b73;
  font-style: italic;
}

@media (max-width: 768px) {
  .product-modal__grid {
    grid-template-columns: 1fr;
  }

  .product-modal__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-fab {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 19000;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.05rem;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease;
}

.contact-fab:hover {
  background: var(--orange-hover);
}

.contact-fab svg {
  width: 16px;
  height: 16px;
}

.totop-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 19000;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.totop-fab[hidden] {
  display: none;
}

.totop-fab svg {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.contact-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #1a3035;
}

#contact-modal-title {
  margin: 0 0 0.5rem;
  color: var(--teal-deep);
}

.contact-modal__lead {
  margin: 0 0 1.2rem;
  font-size: 0.88rem;
  color: #5f6b73;
}

.contact-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-btn svg {
  width: 22px;
  height: 22px;
}

.contact-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-btn--call {
  background: var(--teal-deep);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .el1-outlet {
    height: 52px;
    width: auto;
    display: block;
    position: absolute;
    right: -2%;
    top: 84px;
    z-index: 1000;
    zoom: 1;
  }
}

@media (max-width: 900px) {
  .hero-media::after {
    background:
      linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 48%,
        rgba(255, 255, 255, 0.85) 62%,
        rgba(255, 255, 255, 0) 88%
      );
  }

  .hero-copy {
    width: min(100%, 380px);
  }

  .open-badge {
    right: 0.6rem;
    bottom: 0.8rem;
  }

  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .step-arrow { display: none; }

  .cheap {
    background-image: none;
    background-color: var(--teal-deep);
    padding: 2rem 0;
  }

  .cheap-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1rem;
  }

  .cheap-copy {
    order: 2;
  }

  .cheap-icon--tag {
    order: 1;
  }

  .cheap-icon--box {
    order: 3;
  }

  .store-split {
    flex-direction: column;
  }

  .store-photo,
  .store-panel {
    flex: 0 0 auto;
    width: 100%;
  }

  .store-photo img {
    min-height: 220px;
  }

  .store-panel__body {
    flex-direction: column;
    gap: 0.85rem;
  }

  .store-panel__divider {
    width: 100%;
    height: 1px;
    flex: 0 0 1px;
  }

  .catalog-trust .trust-row { grid-template-columns: 1fr; }
  .catalog-trust .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 0.8rem;
  }
}

@media (max-width: 560px) {
  .logo-img { height: 46px; }
  .hero-title { font-size: 1.4rem; }
}

@media (max-width: 500px) {
  .hero-media {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    padding-top: 100px;
  }

  .hero-media::after {
    background: #ffffff00;
  }

  .hero-title {
    padding-top: 200px;
  }

  .hero-title img {
    padding-bottom: 10px;
  }

  .hero-text {
    transform: rotate(0deg);
    margin-left: 14px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-text strong {
    font-style: normal;
    font-weight: 800;
    /* margin-left: -30px; */
    display: block;
    font-size: 24px;
  }

  .btn-hero img {
    height: 90px;
    width: auto;
    display: block;
    position: relative;
    bottom: 0;
    z-index: 100000;
    margin-bottom: -100px;
    margin-top: -44px;
    margin-left: -40px;
  }

  .deal-ribbon {
    position: absolute;
    left: -3%;
    width: 95%;
    bottom: 7px;
    margin: 0;
    z-index: 2;
    pointer-events: none;
    transform: rotate(-2deg);
  }
}

@media (max-width: 400px) {
  .why-grid {
    grid-template-columns: 1fr;
    zoom: 0.9;
  }

  .steps-row {
    grid-template-columns: 1fr;
    zoom: 0.9;
  }
}
