/* Catálogo público — Majestic Barber Tools */

.brand-logo-script {
  font-family: var(--font-script);
  color: var(--brand);
  line-height: 1;
}

.brand-logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.catalog-shell {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 168, 160, 0.06), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(242, 139, 106, 0.05), transparent 38%),
    #f4f7f7;
  color: var(--ink);
}

.catalog-container {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .catalog-container {
    padding-inline: 1.5rem;
  }
}

/* — Announcement — */
.catalog-announcement {
  border-bottom: 1px solid rgba(18, 54, 58, 0.06);
  background: linear-gradient(90deg, #fff9f7 0%, #f0faf8 50%, #fff9f7 100%);
}

.catalog-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4a6366;
  text-align: center;
}

.catalog-announcement-link {
  font-weight: 800;
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.catalog-announcement-link:hover {
  color: var(--brand);
}

/* — Header — */
.catalog-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18, 54, 58, 0.06);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(18, 54, 58, 0.04);
}

.catalog-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 76rem;
  margin-inline: auto;
  padding: 0.65rem 1rem;
}

@media (min-width: 640px) {
  .catalog-header-row {
    padding: 0.75rem 1.5rem;
    gap: 1rem;
  }
}

.catalog-header-logo {
  flex-shrink: 0;
}

.catalog-search {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  max-width: 28rem;
}

.catalog-search--header {
  display: none;
}

.catalog-search-mobile {
  display: block;
  max-width: 76rem;
  margin-inline: auto;
  padding: 0 1rem 0.65rem;
}

@media (min-width: 768px) {
  .catalog-search--header {
    display: flex;
    margin-inline: auto;
  }

  .catalog-search-mobile {
    display: none;
  }
}

.catalog-search-icon {
  pointer-events: none;
  position: absolute;
  left: 0.9rem;
  width: 1rem;
  height: 1rem;
  color: var(--muted);
}

.catalog-search-input {
  width: 100%;
  border: 1px solid #e5eceb;
  border-radius: 999px;
  background: #f8fafa;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  font-size: 0.875rem;
  outline: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.catalog-search-input:focus {
  border-color: var(--teal-dark);
  background: white;
  box-shadow: 0 0 0 3px rgba(31, 127, 121, 0.1);
}

.catalog-nav {
  border-top: 1px solid rgba(18, 54, 58, 0.06);
  background: white;
}

.catalog-nav-track {
  display: flex;
  gap: 0.35rem;
  max-width: 76rem;
  margin-inline: auto;
  padding: 0.5rem 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-nav-track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .catalog-nav-track {
    padding-inline: 1.5rem;
  }
}

.catalog-nav-pill {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5a7376;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.catalog-nav-pill:hover {
  background: #f3f8f7;
  color: var(--ink);
}

.catalog-nav-pill.is-active {
  background: var(--ink);
  color: white;
  box-shadow: 0 4px 14px rgba(18, 54, 58, 0.18);
}

/* — Hero — */
.catalog-hero {
  position: relative;
  min-height: clamp(300px, 44vh, 460px);
  overflow: hidden;
  background: var(--panel);
}

.catalog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(18, 54, 58, 0.92) 0%,
    rgba(18, 54, 58, 0.62) 42%,
    rgba(18, 54, 58, 0.2) 100%
  );
}

.catalog-hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.catalog-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(300px, 44vh, 460px);
  padding-block: 2.25rem 2.75rem;
}

.catalog-hero-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-hero-headline {
  margin-top: 0.5rem;
  line-height: 0.95;
}

.catalog-hero-lead {
  margin-top: 0.85rem;
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.catalog-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

/* — Trust strip — */
.catalog-trust-strip {
  border-bottom: 1px solid rgba(18, 54, 58, 0.05);
  background: white;
  box-shadow: 0 8px 24px rgba(18, 54, 58, 0.03);
}

.catalog-trust-grid {
  display: grid;
  gap: 0.75rem;
  padding-block: 1rem;
}

@media (min-width: 640px) {
  .catalog-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-block: 1.1rem;
  }
}

.catalog-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.85rem;
  background: #f8fafa;
  font-size: 0.74rem;
  font-weight: 600;
  color: #4a6366;
}

.catalog-trust-item svg {
  flex-shrink: 0;
  color: var(--teal-dark);
}

/* — Main layout — */
.catalog-main {
  flex: 1 1 auto;
  padding-block: 1.75rem 2.5rem;
  padding-bottom: calc(2.5rem + 5rem);
}

.catalog-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.catalog-block {
  animation: catalog-fade-up 0.45s ease both;
}

.catalog-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.catalog-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.catalog-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}

.catalog-link-action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.catalog-link-action:hover {
  background: #ffe8df;
  transform: translateX(2px);
  text-decoration: none;
}

.catalog-section-subtitle {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
}

/* — Category page — */
.catalog-category-hero {
  border-bottom: 1px solid rgba(18, 54, 58, 0.06);
  background: white;
  padding-block: 1.25rem 1.5rem;
}

.catalog-category-title {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.catalog-category-meta {
  margin-top: 0.45rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.catalog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.75rem;
}

.catalog-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.catalog-breadcrumb-sep {
  width: 0.85rem;
  height: 0.85rem;
  color: #b0c0c2;
}

.catalog-breadcrumb-link {
  color: var(--muted);
  transition: color 0.15s ease;
}

.catalog-breadcrumb-link:hover {
  color: var(--brand);
}

.catalog-breadcrumb-current {
  font-weight: 700;
  color: var(--ink);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(18, 54, 58, 0.06);
  border-radius: 1rem;
  background: white;
}

.catalog-toolbar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.catalog-sort-select {
  border: 1px solid #e5eceb;
  border-radius: 999px;
  background: #f8fafa;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  outline: none;
}

.catalog-sort-select:focus {
  border-color: var(--teal-dark);
  background: white;
}

/* — Product grid — */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

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

.catalog-featured-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(158px, 190px);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.catalog-featured-rail::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .catalog-featured-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
}

.catalog-featured-item {
  scroll-snap-align: start;
}

/* — Product card — */
.catalog-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(18, 54, 58, 0.06);
  background: white;
  box-shadow: 0 4px 20px rgba(18, 54, 58, 0.04);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.catalog-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 168, 160, 0.22);
  box-shadow: 0 18px 40px rgba(18, 54, 58, 0.1);
}

.catalog-product-card.is-unavailable {
  filter: grayscale(0.9);
  opacity: 0.72;
  background: #f3f3f3;
}

.catalog-product-card.is-unavailable:hover {
  transform: none;
  border-color: rgba(18, 54, 58, 0.06);
  box-shadow: 0 4px 20px rgba(18, 54, 58, 0.04);
}

.catalog-product-media {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f7f9f9 0%, #f0f4f4 100%);
  padding: 0.85rem;
  border: none;
  cursor: pointer;
}

.catalog-product-quick-add {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 3;
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: var(--brand);
  color: white;
  box-shadow: 0 8px 20px rgba(242, 139, 106, 0.35);
  opacity: 0;
  transform: translateY(6px) scale(0.92);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.15s ease;
}

.catalog-product-card:hover .catalog-product-quick-add,
.catalog-product-quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 767px) {
  .catalog-product-quick-add {
    opacity: 1;
    transform: none;
  }
}

.catalog-product-quick-add:hover {
  background: var(--brand-dark);
}

.catalog-product-image {
  object-fit: contain !important;
  padding: 0.35rem;
}

.catalog-product-badge {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  z-index: 2;
  border-radius: 999px;
  background: var(--brand);
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
}

.catalog-product-soldout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.9rem 1rem;
}

.catalog-product-name {
  display: -webkit-box;
  min-height: 2.35rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.catalog-product-card:hover .catalog-product-name {
  color: var(--brand-dark);
}

.catalog-product-meta {
  margin-top: 0.15rem;
}

.catalog-product-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
}

.catalog-product-compare {
  font-size: 0.72rem;
  color: #9aa8aa;
  text-decoration: line-through;
}

.catalog-product-sku {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8fa0a2;
}

.catalog-product-note {
  width: 100%;
  resize: none;
  border: 1px solid #e8eeee;
  border-radius: 0.65rem;
  background: #f8fafa;
  padding: 0.55rem 0.7rem;
  font-size: 0.75rem;
  outline: none;
}

.catalog-product-note:focus {
  border-color: var(--teal-dark);
}

/* — Buttons — */
.catalog-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #e87a56 100%);
  padding: 0.72rem 1.35rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 10px 24px rgba(242, 139, 106, 0.28);
  transition:
    filter 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.catalog-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.catalog-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid #d5e2e0;
  background: white;
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.catalog-btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.catalog-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  backdrop-filter: blur(4px);
}

.catalog-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* — Cart bar — */
.catalog-cart-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.catalog-cart-bar-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 24rem;
  margin-inline: auto;
  border: 1px solid rgba(18, 54, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  box-shadow: 0 12px 40px rgba(18, 54, 58, 0.14);
  backdrop-filter: blur(12px);
}

.catalog-cart-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
}

.catalog-cart-button {
  position: relative;
  display: inline-flex;
  width: 2.65rem;
  height: 2.65rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e5eceb;
  background: white;
  color: var(--ink);
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}

.catalog-cart-button:hover {
  border-color: var(--brand);
  transform: scale(1.04);
}

.catalog-cart-button-badge {
  position: absolute;
  right: -0.15rem;
  top: -0.15rem;
  display: flex;
  min-width: 1.15rem;
  height: 1.15rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  padding-inline: 0.2rem;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
}

/* — Brand story — */
.catalog-story {
  border-top: 1px solid rgba(18, 54, 58, 0.06);
  background: white;
  padding-block: 3rem;
}

.catalog-story-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .catalog-story-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.catalog-story-title {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--ink);
}

.catalog-story-lead {
  margin-top: 1rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.catalog-story-hours {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.catalog-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.catalog-story-cards {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .catalog-story-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .catalog-story-cards {
    grid-template-columns: 1fr;
  }
}

.catalog-story-card {
  border: 1px solid rgba(18, 54, 58, 0.07);
  border-radius: 1rem;
  background: #f8fafa;
  padding: 1rem 1.1rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.catalog-story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 54, 58, 0.07);
}

.catalog-story-card h3 {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}

.catalog-story-card p {
  margin-top: 0.25rem;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--muted);
}

/* — Footer — */
.catalog-footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  background: linear-gradient(180deg, #0f2f33 0%, #0a2428 100%);
  color: white;
}

.catalog-footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #1b4d4a 0%, #2a7a76 55%, #1b4d4a 100%);
}

.catalog-footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.5rem;
}

@media (min-width: 768px) {
  .catalog-footer-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.catalog-footer-cta-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.catalog-footer-cta-title {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
}

.catalog-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.catalog-footer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 2.5rem;
}

@media (min-width: 640px) {
  .catalog-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .catalog-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.catalog-footer-title {
  margin-bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.catalog-footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.catalog-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.15s ease;
}

.catalog-footer-link:hover {
  color: var(--brand);
}

.catalog-footer-icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.catalog-footer-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.catalog-footer-cat-link:hover {
  color: var(--brand);
}

.catalog-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
  background: #0a2428;
}

/* — Modal — */
.catalog-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) 0.75rem
    max(0.75rem, env(safe-area-inset-bottom, 0px));
  background: rgba(15, 35, 38, 0.55);
  backdrop-filter: blur(8px);
  animation: catalog-fade-in 0.2s ease;
}

.catalog-modal-panel {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 26rem;
  max-height: calc(100dvh - 1.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  background: white;
  box-shadow: 0 24px 60px rgba(18, 54, 58, 0.2);
  animation: catalog-slide-up 0.28s ease;
}

.catalog-modal-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.catalog-modal-footer {
  flex-shrink: 0;
  border-top: 1px solid #eef2f2;
  background: white;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
}

.catalog-modal-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 3;
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(18, 54, 58, 0.12);
}

.catalog-modal-media {
  position: relative;
  width: 100%;
  height: clamp(8rem, 28dvh, 12rem);
  flex-shrink: 0;
  background: #f3f6f6;
  padding: 0.75rem;
}

.catalog-modal-media img {
  object-fit: contain !important;
}

.catalog-modal-content {
  padding: 1.1rem 1.25rem 1.25rem;
}

.catalog-modal-title {
  margin-top: 0.25rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
}

.catalog-modal-sku {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.catalog-modal-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.catalog-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e5eceb;
  border-radius: 999px;
  background: white;
}

.catalog-qty-btn {
  padding: 0.45rem 0.7rem;
  transition: background 0.15s ease;
}

.catalog-qty-btn:hover {
  background: #f3f6f6;
}

.catalog-qty-value {
  min-width: 1.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 800;
}

.catalog-empty {
  border: 1px dashed #d5e2e0;
  border-radius: 1rem;
  background: white;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
}

.catalog-header-main {
  border-bottom: 1px solid rgba(18, 54, 58, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(18, 54, 58, 0.04);
}

.catalog-checkout-card {
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(18, 54, 58, 0.06);
  background: white;
  box-shadow: 0 8px 30px rgba(18, 54, 58, 0.05);
}

.catalog-checkout-head {
  border-bottom: 1px solid rgba(18, 54, 58, 0.06);
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #fafcfc 0%, white 100%);
}

.catalog-checkout-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.catalog-payment-card {
  border-radius: 1rem;
  border: 1px solid rgba(18, 54, 58, 0.08);
  background: white;
  padding: 0.85rem;
  text-align: left;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.catalog-payment-card.is-active {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 6px 18px rgba(242, 139, 106, 0.12);
}

.catalog-trust-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.85rem;
  background: #f0faf8;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-dark);
}

@keyframes catalog-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes catalog-fade-up {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes catalog-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* — Catalog assistant bot — */
.catalog-bot {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 10040;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

.catalog-bot > * {
  pointer-events: auto;
}

@media (max-width: 640px) {
  .catalog-bot {
    right: 0.85rem;
    bottom: 5.5rem;
  }
}

.catalog-bot-fab {
  position: relative;
  display: inline-flex;
  width: 3.6rem;
  height: 3.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  box-shadow: 0 14px 32px rgba(31, 127, 121, 0.35);
  transition: transform 0.15s ease;
}

.catalog-bot-fab:hover {
  transform: scale(1.05);
}

.catalog-bot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--teal);
  animation: wa-pulse 2s ease-out infinite;
  z-index: 0;
}

.catalog-bot-tip {
  max-width: 15rem;
  border: 1px solid rgba(18, 54, 58, 0.08);
  border-radius: 1rem;
  background: white;
  padding: 0.75rem 0.95rem;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 54, 58, 0.12);
}

.catalog-bot-panel {
  display: flex;
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(34rem, calc(100dvh - 7rem));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 54, 58, 0.08);
  border-radius: 1.25rem;
  background: white;
  box-shadow: 0 22px 50px rgba(18, 54, 58, 0.18);
}

.catalog-bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1b4d4a 0%, #256663 100%);
  padding: 0.85rem 1rem;
}

.catalog-bot-avatar {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  line-height: 0;
}

.catalog-bot-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.78);
}

.catalog-bot-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.catalog-bot-icon-btn {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.15s ease;
}

.catalog-bot-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.catalog-bot-messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  background: #f4f7f7;
  padding: 0.85rem;
}

.catalog-bot-bubble-wrap {
  display: flex;
  margin-bottom: 0.65rem;
}

.catalog-bot-bubble-wrap.is-bot {
  justify-content: flex-start;
}

.catalog-bot-bubble-wrap.is-user {
  justify-content: flex-end;
}

.catalog-bot-bubble {
  max-width: 88%;
  border-radius: 1rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

.catalog-bot-bubble.is-bot {
  border-bottom-left-radius: 0.3rem;
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(18, 54, 58, 0.06);
}

.catalog-bot-bubble.is-user {
  border-bottom-right-radius: 0.3rem;
  background: var(--teal-dark);
  color: white;
}

.catalog-bot-products {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-bot-product {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-radius: 0.75rem;
  background: #f8fafa;
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  transition: background 0.15s ease;
}

.catalog-bot-product:hover {
  background: #eef5f4;
}

.catalog-bot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.catalog-bot-link {
  display: inline-flex;
  border-radius: 999px;
  background: var(--brand-soft);
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.catalog-bot-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: #25d366;
  padding: 0.35rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: white;
}

.catalog-bot-chips {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  border-top: 1px solid rgba(18, 54, 58, 0.06);
  background: white;
  padding: 0.55rem 0.65rem;
  scrollbar-width: none;
}

.catalog-bot-chips::-webkit-scrollbar {
  display: none;
}

.catalog-bot-chip {
  flex-shrink: 0;
  border: 1px solid #e5eceb;
  border-radius: 999px;
  background: #f8fafa;
  padding: 0.35rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #4a6366;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.catalog-bot-chip:hover {
  border-color: var(--teal-dark);
  background: #f0faf8;
  color: var(--ink);
}

.catalog-bot-input-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-top: 1px solid rgba(18, 54, 58, 0.06);
  background: white;
  padding: 0.65rem;
}

.catalog-bot-input {
  flex: 1;
  border: 1px solid #e5eceb;
  border-radius: 999px;
  background: #f8fafa;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  outline: none;
}

.catalog-bot-input:focus {
  border-color: var(--teal-dark);
  background: white;
}

.catalog-bot-send {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: white;
}

.catalog-bot-typing {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 3rem;
  padding-block: 0.75rem;
}

.catalog-bot-typing span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #b0c0c2;
  animation: catalog-bot-dot 1s ease-in-out infinite;
}

.catalog-bot-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.catalog-bot-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes catalog-bot-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* — Luxury editorial — */
.catalog-shell--lux {
  background: #f7f5f2;
}

.catalog-announcement {
  border-bottom: none;
  background: linear-gradient(90deg, #1b4d4a 0%, #2a7a76 50%, #1b4d4a 100%);
}

.catalog-announcement-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  padding-block: 0.65rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.catalog-announcement-strong {
  color: var(--brand);
  font-weight: 800;
}

.catalog-announcement-sep {
  color: rgba(255, 255, 255, 0.25);
}

.catalog-header--lux {
  border-bottom-color: rgba(18, 54, 58, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.catalog-header-back {
  border-bottom: 1px solid rgba(18, 54, 58, 0.06);
  background: #f4faf9;
}

.catalog-back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
  transition: color 0.15s ease, background 0.15s ease;
}

.catalog-back-home:hover {
  color: var(--ink);
  background: rgba(59, 141, 141, 0.08);
}

@media (min-width: 640px) {
  .catalog-back-home {
    width: auto;
    padding-inline: 1.25rem;
  }
}

.catalog-search--lux .catalog-search-input {
  border-color: transparent;
  background: #f0eeea;
}

.catalog-nav--lux {
  border-top-color: rgba(18, 54, 58, 0.06);
  background: #fff;
}

.catalog-nav-link {
  flex-shrink: 0;
  position: relative;
  padding: 0.55rem 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a7d7f;
  transition: color 0.15s ease;
}

.catalog-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--brand);
  transition: transform 0.2s ease;
}

.catalog-nav-link:hover,
.catalog-nav-link.is-active {
  color: var(--ink);
}

.catalog-nav-link.is-active::after {
  transform: scaleX(1);
}

.catalog-hero--editorial {
  display: flex;
  flex-direction: column;
  min-height: auto;
  overflow: hidden;
  background: #1b4d4a;
}

.catalog-hero-logo-band {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.25rem, 7vw, 3.75rem) 1rem 1.25rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(79, 176, 164, 0.28), transparent 55%),
    linear-gradient(180deg, #256663 0%, #1b4d4a 100%);
}

.catalog-hero-logo-crop {
  display: block;
  line-height: 0;
  border-radius: 1.35rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-hero-logo-crop:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 24px 56px rgba(0, 0, 0, 0.4);
}

.catalog-hero-logo {
  display: block;
  width: clamp(10.5rem, 38vw, 15rem);
  height: auto;
  border-radius: 1.35rem;
}

.catalog-hero-brand-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1rem clamp(2.5rem, 6vw, 3.25rem);
  background: linear-gradient(180deg, #1b4d4a 0%, #123836 100%);
}

.catalog-hero-brand-band .catalog-hero-lead {
  margin-top: 0;
  max-width: 24rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.catalog-hero-brand-band .catalog-hero-cta {
  justify-content: center;
  margin-top: 1.35rem;
  gap: 0.75rem;
}

.catalog-btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b4d4a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.catalog-btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.catalog-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  backdrop-filter: blur(4px);
}

.catalog-btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.catalog-header-logo {
  padding: 0;
  border-radius: 0.7rem;
  background: transparent;
  box-shadow: 0 2px 10px rgba(18, 54, 58, 0.14);
  overflow: hidden;
  line-height: 0;
}

.catalog-header-logo img {
  width: 3rem !important;
  height: auto !important;
  border-radius: 0.7rem;
}

.catalog-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a1415;
}

.catalog-marquee-track {
  display: flex;
  width: max-content;
  animation: catalog-marquee 38s linear infinite;
}

.catalog-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.catalog-marquee-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--brand);
}

@keyframes catalog-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.catalog-showcase {
  padding-block: 4rem 3.5rem;
  background: #f7f5f2;
}

.catalog-editorial-head {
  margin-bottom: 2rem;
  text-align: center;
}

.catalog-editorial-head--left {
  text-align: left;
  margin-bottom: 0;
}

.catalog-editorial-head--light .catalog-editorial-title,
.catalog-editorial-head--light .catalog-editorial-lead {
  color: rgba(255, 255, 255, 0.88);
}

.catalog-editorial-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}

.catalog-editorial-kicker--light {
  color: rgba(242, 139, 106, 0.9);
}

.catalog-editorial-title {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.catalog-editorial-title--light {
  color: white;
}

.catalog-editorial-lead {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
}

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

@media (min-width: 768px) {
  .catalog-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.catalog-showcase-tile {
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #0a1415;
  min-height: 11rem;
}

@media (min-width: 768px) {
  .catalog-showcase-tile {
    min-height: 16rem;
  }
}

.catalog-showcase-media {
  position: absolute;
  inset: 0;
}

.catalog-showcase-image {
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-showcase-tile:hover .catalog-showcase-image {
  transform: scale(1.06);
}

.catalog-showcase-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a3336, #0a1415);
}

.catalog-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8, 18, 19, 0.88) 100%);
}

.catalog-showcase-copy {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem;
}

.catalog-showcase-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
}

.catalog-showcase-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.catalog-main--lux {
  max-width: none;
  padding-inline: 0;
  padding-top: 0;
}

.catalog-block--dark {
  margin-inline: 0;
  padding: 3.5rem 1rem;
  background: #0a1415;
}

@media (min-width: 640px) {
  .catalog-block--dark {
    padding-inline: 1.5rem;
  }
}

.catalog-block--dark .catalog-editorial-head,
.catalog-block--dark .catalog-grid--lux {
  max-width: 76rem;
  margin-inline: auto;
}

.catalog-block--soft {
  padding-block: 0.5rem;
}

.catalog-section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: 76rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .catalog-section-row {
    padding-inline: 1.5rem;
  }
}

.catalog-blocks .catalog-grid {
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .catalog-blocks .catalog-grid {
    padding-inline: 1.5rem;
  }
}

.catalog-btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0;
  background: var(--brand);
  padding: 0.85rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
}

.catalog-btn-lux-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  background: transparent;
  padding: 0.85rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
}

.catalog-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.catalog-story {
  border-top: none;
  background: #0a1415;
  padding-block: 5rem 4.5rem;
}

.catalog-story-inner {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.catalog-story-display {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
  color: white;
}

.catalog-story-divider {
  width: 3.5rem;
  height: 2px;
  margin: 1.5rem auto;
  background: var(--brand);
}

.catalog-story-quote {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-story-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--brand);
}

.catalog-story-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.catalog-story-values li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.catalog-story-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.catalog-grid--lux .catalog-product-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.catalog-grid--lux .catalog-product-name {
  color: rgba(255, 255, 255, 0.92);
}

.catalog-grid--lux .catalog-product-sku {
  color: rgba(255, 255, 255, 0.45);
}

.catalog-grid--lux .catalog-product-media {
  background: rgba(255, 255, 255, 0.06);
}

.catalog-category-hero--lux {
  background: #0a1415;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.catalog-category-title--lux {
  color: white;
}

.catalog-category-meta {
  color: rgba(255, 255, 255, 0.5);
}

.catalog-category-hero--lux .catalog-breadcrumb-link {
  color: rgba(255, 255, 255, 0.45);
}

.catalog-category-hero--lux .catalog-breadcrumb-current {
  color: white;
}

.catalog-category-hero--lux .catalog-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* — Social videos — */
.catalog-editorial-head--center {
  text-align: center;
  align-items: center;
}

.catalog-social-videos {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #efece7;
}

.catalog-social-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .catalog-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 52rem;
    margin-inline: auto;
  }
}

@media (min-width: 1100px) {
  .catalog-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.catalog-social-card {
  overflow: hidden;
  border-radius: 1.1rem;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 54, 58, 0.08);
}

.catalog-social-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #123836;
}

.catalog-social-media--tiktok {
  aspect-ratio: auto;
  min-height: 620px;
  background: #000;
}

.catalog-social-iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
}

.catalog-social-fallback {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 50% 40%, rgba(244, 162, 97, 0.25), transparent 55%),
    #1b4d4a;
}

.catalog-social-card-body {
  padding: 0.95rem 1rem 1.1rem;
}

.catalog-social-platform {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.catalog-social-title {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.catalog-social-open {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.catalog-social-cta-row {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .catalog-social-cta-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-social-cta-row--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 36rem;
    margin-inline: auto;
  }
}

.catalog-social-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 8px 22px rgba(18, 54, 58, 0.06);
  transition: transform 0.15s ease;
}

.catalog-social-cta:hover {
  transform: translateY(-2px);
}

.catalog-social-cta strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.catalog-social-cta small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.catalog-social-cta-icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: white;
}

.catalog-social-cta--ig .catalog-social-cta-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}

.catalog-social-cta--tt .catalog-social-cta-icon {
  background: #111;
}

.catalog-social-cta--brand {
  background: #1b4d4a;
}

.catalog-social-cta--brand strong,
.catalog-social-cta--brand small {
  color: rgba(255, 255, 255, 0.92);
}

.catalog-social-cta--brand small {
  color: rgba(255, 255, 255, 0.6);
}

.catalog-bot-tip {
  font-weight: 700;
}
