:root {
  color-scheme: light;
  --color-bg: #fbf7f0;
  --color-card: #ffffff;
  --color-orange: #ff7a1a;
  --color-text: #1f1f1f;
  --color-muted: #6f655c;
  --bg: var(--color-bg);
  --bg-2: var(--color-card);
  --panel: var(--color-card);
  --panel-strong: #fffaf4;
  --line: rgba(32, 27, 21, 0.1);
  --text: var(--color-text);
  --muted: var(--color-muted);
  --accent: var(--color-orange);
  --accent-2: #ff9b45;
  --shadow: 0 20px 60px rgba(67, 47, 20, 0.08);
  --radius: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 400px at 100% -10%, rgba(255, 122, 24, 0.12), transparent 40%),
    radial-gradient(800px 360px at 0% 10%, rgba(255, 199, 128, 0.18), transparent 42%),
    linear-gradient(180deg, #fbf7f0 0%, #f5efe6 100%);
  color: var(--text);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: 0 12px 24px rgba(255, 122, 24, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.topnav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.topnav a:hover {
  color: var(--accent);
}

.hero {
  padding: 30px 0 16px;
}

.mx-banner {
  padding: 18px 0 6px;
}

.mx-banner-inner {
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 24, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 122, 24, 0.08)),
    linear-gradient(135deg, rgba(255, 224, 190, 0.8), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

.mx-banner-inner::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.mx-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mx-banner-copy strong {
  font-size: 1.05rem;
}

.mx-banner-copy span {
  color: var(--muted);
}

.mx-banner-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mx-banner-points span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 122, 24, 0.16);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-shell,
.footer-inner {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.18), transparent 65%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b75b0a;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.12);
}

.logo-placeholder {
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 122, 24, 0.06);
  border: 1px solid rgba(255, 122, 24, 0.16);
}

.hero-logo {
  width: min(100%, 420px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(255, 122, 24, 0.42));
}

h1 {
  margin: 22px 0 8px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 10ch;
}

.subtitle {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #8b4a14;
}

.hero-text {
  margin: 16px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  will-change: transform;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #241609;
  box-shadow: 0 16px 34px rgba(255, 122, 24, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 122, 24, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.09);
  border: 1px solid rgba(255, 122, 24, 0.18);
  color: #8b4a14;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-panel {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.hero-panel-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 24, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(255, 255, 255, 0.88)),
    #ffffff;
  padding: 18px;
}

.hero-panel-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.hero-panel-card span,
.hero-panel-card p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.panel-label {
  color: #b75b0a;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
  align-content: stretch;
}

.hero-store-card {
  min-height: 170px;
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 236, 0.92));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-store-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #121212;
}

.hero-store-card h3 {
  margin: 0;
  padding: 10px 12px 4px;
  font-size: 0.9rem;
  line-height: 1.25;
  color: #8b4a14;
  font-weight: 800;
}

.hero-store-card p {
  margin: 0;
  padding: 0 12px 12px;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #6f655c;
}

.section {
  padding: 16px 0;
}

.section-shell {
  padding: 24px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-form span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #8b4a14;
}

.quote-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(32, 27, 21, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  outline: none;
}

.quote-form input::placeholder {
  color: rgba(186, 178, 168, 0.75);
}

.quote-form input:focus {
  border-color: rgba(255, 122, 24, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.12);
}

.quote-submit {
  min-height: 48px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.products-hero {
  padding: 28px 0 10px;
}

.products-hero-inner {
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 24, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.12), rgba(255, 255, 255, 0.9)),
    #ffffff;
  box-shadow: var(--shadow);
  padding: 24px 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.products-hero h1 {
  margin-bottom: 10px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(32, 27, 21, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 24, 0.3);
}

.filter-chip.is-active {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #16110d;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(255, 122, 24, 0.24);
}

.catalog-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.products-note {
  margin: 12px 0 0;
  color: #8b4a14;
  font-weight: 700;
  line-height: 1.6;
}

.product-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 24, 0.3);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

.shop-media {
  position: relative;
  aspect-ratio: 1 / 1.02;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.12), rgba(248, 251, 255, 0.96));
}

.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
}

.shop-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(32, 27, 21, 0.06);
  pointer-events: none;
}

.shop-brand {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 122, 24, 0.22);
  color: #b75b0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  flex: 1;
}

.shop-content h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.shop-quality {
  margin: 0;
  color: #566378;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-price {
  margin: 0;
  color: #8b4a14;
  font-size: 0.96rem;
  font-weight: 800;
}

.shop-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-price-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(32, 27, 21, 0.08);
  text-align: left;
  font-size: 0.88rem;
}

.price-table th {
  width: 48%;
  color: var(--text);
  font-weight: 700;
}

.price-table td {
  color: #121827;
  font-weight: 800;
}

.shop-cta {
  min-height: 46px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.07), rgba(255, 255, 255, 0.94)),
    #ffffff;
  overflow: hidden;
}

.catalog-image {
  min-height: 220px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.44), transparent 30%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.18), rgba(255, 255, 255, 0.95));
}

.catalog-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 24, 0.16);
}

.catalog-image::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 122, 24, 0.14);
}

.catalog-iphone {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.18), rgba(255, 255, 255, 0.95));
}

.catalog-samsung {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(255, 255, 255, 0.95));
}

.catalog-battery,
.catalog-tools,
.catalog-accessories,
.catalog-hydrogel {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.12), rgba(255, 255, 255, 0.95));
}

.catalog-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.catalog-content h3 {
  margin: 0;
  font-size: 1.25rem;
}

.catalog-category {
  margin: 0;
  color: #b75b0a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-price {
  color: #8b4a14;
  font-weight: 800;
}

.gallery-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), rgba(255, 255, 255, 0.94)),
    #ffffff;
  overflow: hidden;
}

.gallery-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.gallery-card-head h3 {
  margin: 0;
  font-size: 1.06rem;
}

.gallery-card-head span {
  color: #b75b0a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.gallery-image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 220px;
}

.gallery-shot,
.gallery-placeholder {
  min-height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 30%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(255, 255, 255, 0.95));
}

.gallery-shot {
  position: relative;
}

.gallery-shot.is-main {
  grid-row: span 2;
}

.gallery-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 16px;
  min-height: 180px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  border-radius: 18px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.07), rgba(255, 255, 255, 0.94)),
    #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.trust-card strong {
  font-size: 1.08rem;
}

.trust-card span {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-card {
  border-radius: 18px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.07), rgba(255, 255, 255, 0.94)),
    #ffffff;
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 24, 0.12);
}

.showcase-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.22), transparent 68%);
}

.showcase-large {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.1), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.showcase-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.showcase-top span,
.showcase-spec span {
  color: #b75b0a;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.showcase-top strong {
  font-size: 1.25rem;
  line-height: 1.15;
  max-width: 12ch;
}

.showcase-large img {
  width: min(100%, 360px);
  max-height: 110px;
  object-fit: contain;
  align-self: flex-end;
  filter: drop-shadow(0 16px 34px rgba(255, 122, 24, 0.28));
}

.showcase-spec {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.showcase-spec p {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  max-width: 14ch;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-showcase-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
  overflow: hidden;
}

.video-showcase-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  border-radius: 16px;
  background: #f8fbff;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(35, 55, 84, 0.1);
}

.video-showcase-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.3;
}

.new-arrivals-grid,
.new-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.new-arrival-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.07), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.new-arrival-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 18px 34px rgba(67, 47, 20, 0.12);
}

.new-arrival-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 32%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(248, 251, 255, 0.96));
}

.new-arrival-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.new-arrival-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.06);
  pointer-events: none;
}

.new-arrival-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 122, 24, 0.22);
  color: #b75b0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.new-arrival-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  flex: 1;
}

.new-arrival-content h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.new-arrival-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.new-arrival-note {
  color: #8b4a14 !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.new-arrival-price-grid {
  display: grid;
  gap: 5px;
  margin-top: 2px;
  color: #5f4634;
  font-size: 0.84rem;
  line-height: 1.25;
}

.new-arrival-price-grid span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 5px;
  border-top: 1px solid rgba(139, 74, 20, 0.14);
}

.new-arrival-price-grid b,
.new-arrival-price-grid strong {
  font-weight: 800;
}

.new-arrival-price-grid b {
  color: #8b4a14;
}

.new-arrival-price-grid strong {
  color: #201b15;
  text-align: right;
  white-space: nowrap;
}

.new-arrival-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.new-arrival-actions .btn {
  flex: 1 1 180px;
  justify-content: center;
}

.new-arrival-card-ai {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.new-arrival-card-ai .new-arrival-media {
  min-height: 100%;
  padding: 18px;
}

.new-arrival-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
  min-height: 360px;
}

.new-arrival-collage figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: 0 14px 24px rgba(35, 55, 84, 0.08);
}

.new-arrival-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.new-arrival-collage .new-arrival-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
}

.new-arrival-card-ai .new-arrival-content {
  justify-content: center;
  padding: 22px;
}

.ai-promo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ai-promo-pill-list li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.08);
  border: 1px solid rgba(255, 122, 24, 0.16);
  color: #8b4a14;
  font-size: 0.92rem;
  font-weight: 700;
}

.new-products-grid {
  margin-top: 6px;
}

.home-category-grid {
  margin-top: 6px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.home-category-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.09);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-category-card:hover,
.home-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 16px 30px rgba(64, 45, 18, 0.12);
}

.home-category-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 32%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(248, 251, 255, 0.96));
  padding: 12px;
}

.home-category-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.06);
  pointer-events: none;
}

.home-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.home-category-media-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-category-media-split img {
  min-width: 0;
}

.home-category-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 18px;
}

.home-category-content h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.15;
}

.home-category-content p {
  margin: 0;
  color: #6f655c;
  line-height: 1.55;
}

.home-category-kicker {
  margin: 0;
  color: #b75b0a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

.home-category-cta {
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9d42, #ff7a1a);
  color: #1f1f1f;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.2);
}

.new-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.new-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 16px 30px rgba(64, 45, 18, 0.12);
}

.new-product-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 32%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(248, 251, 255, 0.96));
}

.new-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.new-product-visual img.cut-machine-image {
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.new-product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 32%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(248, 251, 255, 0.96));
}

.new-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
  background: #fff;
}

.new-product-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.06);
  pointer-events: none;
}

.image-pending-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 122, 24, 0.22);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(35, 55, 84, 0.08);
}

.new-product-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
}

.new-product-content h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.new-product-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.new-product-actions {
  display: flex;
  margin-top: auto;
}

.new-product-actions .btn {
  width: 100%;
  justify-content: center;
}

.new-page-hero {
  padding: 28px 0 10px;
}

.new-page-hero-inner {
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 24, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.12), rgba(255, 255, 255, 0.9)),
    #ffffff;
  box-shadow: var(--shadow);
  padding: 24px 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.new-page-hero-inner h1 {
  margin-bottom: 10px;
}

.new-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.micas-category-grid,
.micas-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.micas-category-card,
.micas-overview-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.05), rgba(255, 255, 255, 0.98)),
    #ffffff;
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.micas-category-card:hover,
.micas-category-card:focus-visible,
.micas-overview-card:hover,
.micas-overview-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 18px 34px rgba(67, 47, 20, 0.12);
}

.micas-category-media,
.micas-overview-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 32%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(248, 251, 255, 0.96));
}

.micas-category-media img,
.micas-overview-media img,
.micas-category-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.micas-category-media img.cut-machine-image,
.micas-overview-media img.cut-machine-image {
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.micas-category-media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.micas-category-card:hover .micas-category-media video,
.micas-category-card:focus-visible .micas-category-media video {
  opacity: 1;
}

.micas-category-media::after,
.micas-overview-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.06);
  pointer-events: none;
}

.micas-category-content,
.micas-overview-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 18px;
  flex: 1;
}

.micas-category-content h3,
.micas-overview-content h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.micas-category-content p,
.micas-overview-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.micas-category-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-orange), #ff9a3d);
  color: #1c140f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 8px 18px rgba(255, 122, 24, 0.25);
}

.micas-category-pricing {
  margin: 0;
  color: #8b4a14 !important;
  font-size: 0.79rem !important;
  font-weight: 800;
  line-height: 1.5;
}

.micas-feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 4px;
  line-height: 1.5;
}

.micas-feature-list li {
  font-size: 0.9rem;
}

.micas-hd-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 10px;
  height: 100%;
}

.micas-hd-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
}

.new-page-links .btn {
  min-width: 170px;
}

.ai-product-detail-shell {
  padding: 24px;
}

.ai-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
}

.ai-product-visual,
.ai-product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-product-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #fff;
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
}

.ai-product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ai-product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #fff;
}

.ai-product-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
}

.ai-product-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.18);
  color: #b75b0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-product-title {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.ai-product-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ai-price-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 122, 24, 0.06);
  border: 1px solid rgba(255, 122, 24, 0.14);
}

.ai-price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.ai-price-row span:first-child {
  color: var(--muted);
  font-weight: 700;
}

.ai-price-row strong {
  color: #1f1f1f;
  font-size: 1.08rem;
}

.ai-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ai-feature-list li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.08);
  border: 1px solid rgba(255, 122, 24, 0.18);
  color: #8b4a14;
  font-weight: 700;
}

.ai-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 27, 21, 0.08);
  border-radius: 14px;
}

.ai-spec-table th,
.ai-spec-table td {
  padding: 11px 12px;
  background: #ffffff;
  border-bottom: 1px solid rgba(32, 27, 21, 0.08);
}

.ai-spec-table th {
  width: 46%;
  text-align: left;
  color: var(--text);
  font-weight: 700;
}

.ai-spec-table td {
  color: #121827;
  font-weight: 800;
  text-align: right;
}

.ai-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-detail-actions .btn {
  flex: 1 1 180px;
}

.ai-detail-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ai-s1-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
}

.ai-s1-media-card,
.ai-s1-side-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-s1-carousel {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.06), #ffffff 60%);
  box-shadow: 0 16px 34px rgba(35, 55, 84, 0.08);
}

.ai-s1-carousel-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.ai-s1-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  cursor: zoom-in;
}

.ai-s1-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: rgba(255, 255, 255, 0.95);
  color: #1f1f1f;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(35, 55, 84, 0.12);
}

.ai-s1-carousel-btn:hover {
  transform: translateY(-50%) scale(1.03);
}

.ai-s1-carousel-btn.prev {
  left: 8px;
}

.ai-s1-carousel-btn.next {
  right: 8px;
}

.ai-s1-counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ai-s1-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ai-s1-thumb {
  padding: 0;
  border: 1px solid rgba(32, 27, 21, 0.08);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(35, 55, 84, 0.06);
}

.ai-s1-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.ai-s1-thumb.is-active {
  border-color: rgba(255, 122, 24, 0.45);
  box-shadow: 0 14px 28px rgba(255, 122, 24, 0.16);
}

.ai-s1-panel {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
}

.ai-s1-price-grid {
  display: grid;
  gap: 12px;
}

.ai-s1-price-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 122, 24, 0.06);
  border: 1px solid rgba(255, 122, 24, 0.16);
}

.ai-s1-price-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 700;
}

.ai-s1-price-card strong {
  font-size: 1.34rem;
  color: #1f1f1f;
}

.ai-s1-badge-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-s1-badge-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fbf7f0;
  border: 1px solid rgba(255, 122, 24, 0.14);
  color: #51493f;
  font-weight: 700;
}

.ai-s1-badge-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  color: #b75b0a;
  font-size: 0.84rem;
  font-weight: 900;
}

.ai-s1-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ai-s1-icon-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.07);
}

.ai-s1-icon-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(255, 190, 120, 0.22));
  color: #b75b0a;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.ai-s1-icon-card strong {
  display: block;
  margin-bottom: 4px;
  color: #1f1f1f;
}

.ai-s1-icon-card span {
  color: var(--muted);
  line-height: 1.55;
}

.ai-s1-lens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ai-s1-lens-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.07);
}

.ai-s1-lens-swatch {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 12px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.35);
}

.ai-s1-lens-swatch.transparent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(228, 239, 255, 0.76));
}

.ai-s1-lens-swatch.blue-light {
  background: linear-gradient(135deg, rgba(255, 232, 149, 0.94), rgba(126, 187, 255, 0.9));
}

.ai-s1-lens-swatch.polarized {
  background: linear-gradient(135deg, rgba(24, 31, 49, 0.95), rgba(104, 121, 152, 0.84));
}

.ai-s1-lens-card h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.ai-s1-lens-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ai-s1-scene-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ai-s1-scene-chip {
  padding: 14px 12px;
  border-radius: 999px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #ffffff;
  text-align: center;
  font-weight: 800;
  color: #1f1f1f;
  box-shadow: 0 10px 22px rgba(35, 55, 84, 0.06);
}

.ai-s1-note-strip {
  display: grid;
  gap: 10px;
}

.ai-s1-note-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #fff;
  color: #51493f;
  font-weight: 700;
}

.ai-s1-note-item::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  color: #b75b0a;
  font-size: 0.84rem;
  font-weight: 900;
}

.ai-s1-section-stack {
  display: grid;
  gap: 18px;
}

.ai-mouse-page .ai-product-hero-image,
.ai-mouse-page .ai-product-gallery img {
  cursor: zoom-in;
}

.ai-mouse-page .ai-product-gallery img:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(35, 55, 84, 0.12);
}

.ai-detail-section-title {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.tracking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tracking-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tracking-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.28);
  box-shadow: 0 18px 34px rgba(67, 47, 20, 0.12);
}

.tracking-logo {
  width: 128px;
  height: 66px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.tracking-logo img {
  display: block;
  width: auto;
  max-width: 104px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.tracking-paquetexpress .tracking-logo img {
  max-width: 112px;
}

.tracking-copy h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.1rem;
}

.tracking-copy p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-weight: 700;
}

.tracking-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #241609;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 122, 24, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tracking-card:hover .tracking-arrow {
  transform: translateX(3px);
  box-shadow: 0 14px 28px rgba(255, 122, 24, 0.28);
}

.tracking-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 122, 24, 0.07);
  border: 1px solid rgba(255, 122, 24, 0.16);
  color: var(--color-muted);
  line-height: 1.6;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.65;
}

.section-kicker {
  margin: 0;
  color: #b75b0a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-grid,
.benefit-grid,
.contact-grid {
  display: grid;
  gap: 14px;
}

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

.product-card {
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), rgba(255, 255, 255, 0.94)),
    #ffffff;
  padding: 14px;
  overflow: hidden;
  min-height: 290px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.28);
}

.product-visual {
  height: 150px;
  border-radius: 14px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.14), rgba(255, 255, 255, 0.95));
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 16px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 24, 0.14);
}

.product-visual::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 122, 24, 0.14);
}

.product-visual-2 {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.16), rgba(255, 255, 255, 0.95));
}

.product-visual-3,
.product-visual-4,
.product-visual-5 {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.1), rgba(255, 255, 255, 0.95));
}

.product-card h3,
.benefit-card strong {
  margin: 0;
  font-size: 1.06rem;
}

.product-card p,
.benefit-card span {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-price {
  color: #8b4a14 !important;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.benefit-card {
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #ffffff;
  padding: 18px;
  min-height: 154px;
}

.contact-shell {
  padding-bottom: 18px;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-card {
  border-radius: 16px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #ffffff;
  padding: 18px;
}

.contact-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.07), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-whatsapp-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.contact-whatsapp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 122, 24, 0.08);
  border: 1px solid rgba(255, 122, 24, 0.18);
  color: #1f1f1f;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-whatsapp-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 122, 24, 0.14);
  border-color: rgba(255, 122, 24, 0.3);
}

.contact-data {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-data p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-data span {
  color: var(--text);
  font-weight: 700;
}

.contact-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.contact-note p {
  margin: 0;
  color: #b75b0a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.contact-note strong {
  font-size: 1.3rem;
  line-height: 1.15;
}

.contact-note span {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  padding: 18px 0 28px;
}

.footer-inner {
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.footer-inner small {
  color: var(--muted);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--text);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #16110d;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(255, 122, 24, 0.28);
}

body.home-page .hero-copy,
body.home-page .hero-panel,
body.home-page .section-shell,
body.warranty-page .section-shell,
body.warranty-page .products-hero-inner {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(32, 27, 21, 0.08);
  box-shadow: 0 20px 60px rgba(67, 47, 20, 0.08);
}

body.home-page .hero-panel-card,
body.home-page .trust-card,
body.home-page .product-card,
body.home-page .benefit-card,
body.home-page .contact-card,
body.warranty-page .trust-card,
body.warranty-page .contact-card {
  background: #ffffff;
  border-color: rgba(32, 27, 21, 0.08);
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.07);
}

body.home-page .hero-panel-card,
body.home-page .trust-card,
body.warranty-page .trust-card,
body.warranty-page .contact-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.06), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

body.home-page .hero h1,
body.warranty-page .products-hero h1 {
  color: var(--color-text);
  letter-spacing: -0.03em;
}

body.home-page .hero-text,
body.home-page .section-head p,
body.home-page .product-card p,
body.home-page .benefit-card span,
body.home-page .contact-data p,
body.warranty-page .hero-text,
body.warranty-page .section-head p,
body.warranty-page .trust-card span,
body.warranty-page .contact-data p {
  color: var(--color-muted);
}

body.warranty-page .products-hero {
  padding: 32px 0 16px;
}

body.warranty-page .products-hero-inner {
  align-items: center;
  background:
    radial-gradient(440px 220px at 92% 0%, rgba(255, 122, 24, 0.12), transparent 60%),
    #ffffff;
}

body.warranty-page .products-hero h1 {
  margin: 12px 0 12px;
  max-width: 15ch;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.02;
}

body.warranty-page .trust-card {
  min-height: 178px;
}

body.home-page .product-card {
  min-height: 320px;
}

body.home-page .product-card h3,
body.home-page .trust-card strong,
body.home-page .benefit-card strong,
body.warranty-page .trust-card strong {
  color: var(--color-text);
}

body.home-page .contact-whatsapp-chip,
body.warranty-page .contact-whatsapp-chip {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 122, 24, 0.18);
}

@media (max-width: 1080px) {
  body.catalog-page .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .video-showcase-grid,
  .new-arrivals-grid,
  .home-category-grid,
  .micas-category-grid,
  .micas-overview-grid,
  .new-products-grid,
  .tracking-grid,
  .product-page-grid,
  .shop-grid,
  .product-grid,
  .benefit-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 1081px) and (max-width: 1280px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.catalog-page .contact-map-card iframe {
    height: 300px;
  }

  .wrap {
    width: min(calc(100% - 24px), var(--content));
  }

  .topbar-inner {
    min-height: 70px;
  }

  .topnav {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .mx-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mx-banner-points {
    justify-content: flex-start;
  }

  .hero-copy,
  .hero-panel,
  .section-shell,
  .footer-inner {
    border-radius: 16px;
  }

  .hero-copy,
  .hero-panel,
  .section-shell {
    padding: 20px;
  }

  .logo-placeholder {
    width: 100%;
    justify-content: center;
  }

  .hero-logo {
    width: min(100%, 340px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 14vw, 3.8rem);
  }

  .hero-buttons,
  .hero-badges,
  .contact-row {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .hero-buttons .btn,
  .contact-row .btn {
    flex: 1 1 100%;
  }

  .contact-whatsapp-list {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: flex-start;
  }

  .catalog-filters {
    width: 100%;
  }

  .filter-chip {
    flex: 1 1 calc(50% - 10px);
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-submit {
    min-height: 52px;
    font-size: 1rem;
  }

  .product-grid,
  .showcase-grid,
  .video-showcase-grid,
  .new-arrivals-grid,
  .home-category-grid,
  .new-products-grid,
  .tracking-grid,
  .product-page-grid,
  .shop-grid,
  .gallery-section-grid,
  .benefit-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .new-page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .new-page-links {
    width: 100%;
  }

  .new-page-links .btn {
    flex: 1 1 100%;
  }

  .ai-product-layout {
    grid-template-columns: 1fr;
  }

  .ai-detail-actions .btn {
    flex: 1 1 100%;
  }

  .products-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-image {
    min-height: 180px;
  }

  .showcase-card {
    min-height: 180px;
  }

  .gallery-image-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gallery-shot.is-main {
    grid-row: auto;
    min-height: 220px;
  }

  .ai-product-gallery {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .tracking-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .tracking-logo {
    width: 102px;
    height: 58px;
  }

  .tracking-logo img {
    max-width: 86px;
    max-height: 30px;
  }
}

body.catalog-page,
body.product-detail-page {
  color-scheme: light;
  --bg: var(--color-bg);
  --bg-2: var(--color-card);
  --panel: var(--color-card);
  --panel-strong: #fffaf4;
  --line: rgba(32, 27, 21, 0.1);
  --text: var(--color-text);
  --muted: var(--color-muted);
  background:
    radial-gradient(900px 400px at 100% -10%, rgba(255, 122, 24, 0.12), transparent 40%),
    linear-gradient(180deg, var(--color-bg) 0%, #f5efe6 100%);
}

body.catalog-page .topbar,
body.product-detail-page .topbar {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(32, 27, 21, 0.08);
}

body.catalog-page .topnav,
body.product-detail-page .topnav {
  color: #6a6157;
}

body.catalog-page .topnav a:hover,
body.product-detail-page .topnav a:hover {
  color: var(--accent);
}

body.catalog-page .catalog-main,
body.product-detail-page .catalog-main {
  padding-bottom: 80px;
}

body.catalog-page .catalog-hero {
  padding: 32px 0 16px;
}

body.catalog-page .catalog-hero .wrap {
  width: min(calc(100% - 32px), 1180px);
}

body.catalog-page .catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
}

body.catalog-page .catalog-hero-copy {
  min-width: 0;
}

body.catalog-page .hero-category-card {
  align-self: end;
  border: 1px solid rgba(255, 122, 24, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 122, 24, 0.1), rgba(255, 255, 255, 0.92) 42%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(91, 61, 25, 0.1);
  padding: clamp(20px, 3vw, 28px);
}

body.catalog-page .hero-category-card h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.05;
}

body.catalog-page .hero-category-card p:not(.section-kicker) {
  margin: 0;
  color: #6a6157;
  line-height: 1.6;
}

body.catalog-page .hero-category-filters {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.catalog-page .hero-category-filters .filter-chip:first-child {
  grid-column: 1 / -1;
}

body.catalog-page .hero-category-card .hero-category-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.catalog-page .hero-category-card .hero-category-filters .filter-chip {
  min-width: 0;
  width: 100%;
  justify-content: center;
  text-align: center;
}

body.catalog-page .hero-category-card .hero-category-filters .filter-chip:first-child {
  grid-column: 1 / -1;
}

body.catalog-page .catalog-hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

body.catalog-page .catalog-intro {
  max-width: 780px;
  margin: 0;
  color: #3c352d;
  font-size: 1.05rem;
  line-height: 1.8;
}

body.catalog-page .catalog-warning {
  margin: 10px 0 0;
  color: #8b4a14;
  font-weight: 700;
}

body.catalog-page .catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body.catalog-page .btn-primary,
body.product-detail-page .btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #241609;
}

body.catalog-page .btn-secondary,
body.product-detail-page .btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: #1f1d1a;
  border-color: rgba(255, 122, 24, 0.22);
}

body.catalog-page .section-shell,
body.catalog-page .footer-inner,
body.product-detail-page .section-shell,
body.product-detail-page .footer-inner,
body.product-detail-page .detail-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: 0 20px 60px rgba(67, 47, 20, 0.08);
}

body.catalog-page .catalog-shell {
  padding-bottom: 18px;
}

body.catalog-page .section-head-compact {
  align-items: flex-end;
}

body.catalog-page .section-head-compact p,
body.catalog-page .catalog-section-subtitle,
body.catalog-page .shop-note,
body.catalog-page .catalog-count,
body.catalog-page .footer-inner small,
body.product-detail-page .section-head-compact p,
body.product-detail-page .catalog-section-subtitle,
body.product-detail-page .shop-note,
body.product-detail-page .catalog-count,
body.product-detail-page .footer-inner small,
body.product-detail-page .detail-meta,
body.product-detail-page .detail-description,
body.product-detail-page .detail-note,
body.product-detail-page .detail-price-note,
body.product-detail-page .detail-empty-note {
  color: #6a6157;
}

body.catalog-page .catalog-toolbar {
  margin-top: 8px;
}

body.catalog-page .catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.catalog-page .filter-chip {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid rgba(32, 27, 21, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #3a3228;
  box-shadow: none;
}

body.catalog-page .filter-chip.is-active {
  background: linear-gradient(135deg, rgba(255, 172, 92, 0.22), rgba(255, 122, 24, 0.14));
  color: #1f1d1a;
  border-color: rgba(255, 122, 24, 0.3);
}

body.catalog-page .catalog-sections .wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

body.catalog-page .catalog-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.catalog-page .catalog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

body.catalog-page .catalog-section-head h2 {
  margin: 8px 0 8px;
  font-size: 1.55rem;
  line-height: 1.1;
}

body.catalog-page .catalog-section-subtitle {
  margin: 0;
  max-width: 720px;
  line-height: 1.65;
}

body.catalog-page .catalog-count {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
}

body.catalog-page .shop-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 18px;
}

body.catalog-page .shop-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dbe3ee;
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.09);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

body.catalog-page .shop-card:hover {
  border-color: rgba(255, 122, 24, 0.35);
  box-shadow: 0 16px 30px rgba(64, 45, 18, 0.12);
}

body.catalog-page .shop-card-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.catalog-page .shop-media {
  background: #f8fbff;
  position: relative;
  z-index: 1;
  margin: 24px 24px 0;
  aspect-ratio: 1 / 1;
}

body.catalog-page .shop-media img {
  padding: 0;
  object-fit: contain;
}

body.catalog-page .shop-brand {
  background: rgba(255, 255, 255, 0.94);
  color: #b75b0a;
  border-color: rgba(255, 122, 24, 0.2);
}

body.catalog-page .shop-content {
  position: relative;
  z-index: 1;
  gap: 14px;
  padding: 26px 28px 28px;
}

body.catalog-page .shop-content h3 {
  font-size: 1.35rem;
  line-height: 1.32;
  color: #121827;
}

body.catalog-page .shop-quality {
  color: #566378;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
}

body.catalog-page .shop-note {
  margin: 0;
  color: #6d7890;
  font-size: 0.96rem;
  line-height: 1.6;
}

body.catalog-page .shop-price-wrap {
  gap: 10px;
}

body.catalog-page .shop-price-title {
  color: #6a6157;
}

body.catalog-page .price-table {
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

body.catalog-page .price-table th,
body.catalog-page .price-table td {
  padding: 10px 14px;
  font-size: 0.96rem;
  color: #48566d;
  background: #fbfcfe;
}

body.catalog-page .price-table thead th {
  background: #eef4ff;
  color: #174ea6;
  font-weight: 800;
}

body.catalog-page .price-table tr + tr th,
body.catalog-page .price-table tr + tr td {
  border-top: 1px solid #e5ebf3;
}

body.catalog-page .price-table td {
  color: #121827;
  font-weight: 800;
  text-align: right;
}

body.catalog-page .shop-cta {
  margin-top: 4px;
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  min-height: 54px;
  font-size: 1.02rem;
}

body.catalog-page .shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

body.catalog-page .shop-actions .btn {
  flex: 1 1 140px;
  justify-content: center;
}

body.catalog-page .shop-details {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 122, 24, 0.18);
  color: #1f1d1a;
}

body.catalog-page .contact-shell-light {
  margin-top: 8px;
}

body.catalog-page .contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

body.catalog-page .contact-location-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

body.catalog-page .contact-location-card h2 {
  margin: 0;
  font-size: 1.08rem;
  color: #1f1d1a;
}

body.catalog-page .contact-location-card p {
  margin: 0;
  color: #4d5d75;
  line-height: 1.62;
}

body.catalog-page .contact-location-card .btn {
  justify-content: center;
}

body.catalog-page .contact-mail-link {
  color: #1f1d1a;
  font-weight: 700;
}

body.catalog-page .contact-mail-link:hover {
  color: var(--accent);
}

body.catalog-page .contact-map-link {
  margin-top: 6px;
}

body.catalog-page .contact-map-card {
  padding: 0;
  overflow: hidden;
}

body.catalog-page .contact-map-card iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

body.catalog-page .contact-card-primary,
body.catalog-page .contact-note {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(32, 27, 21, 0.08);
}

body.catalog-page .contact-note p {
  color: var(--accent);
}

body.catalog-page .contact-note span,
body.catalog-page .contact-note strong,
body.catalog-page .contact-data p,
body.catalog-page .contact-row .btn {
  color: #1f1d1a;
}

body.catalog-page .contact-whatsapp-chip {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 122, 24, 0.18);
  color: #1f1d1a;
}

body.catalog-page .floating-cta {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #241609;
}

body.product-detail-page .detail-main {
  padding: 28px 0 14px;
}

body.product-detail-page .detail-shell {
  padding: 22px;
}

body.product-detail-page .detail-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

body.product-detail-page .detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

body.product-detail-page .detail-highlights span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.08);
  border: 1px solid rgba(255, 122, 24, 0.18);
  color: #8b4a14;
  font-size: 0.92rem;
  font-weight: 700;
}

body.product-detail-page .detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.18);
  color: #a15309;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

body.product-detail-page .detail-title {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body.product-detail-page .detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
}

body.product-detail-page .detail-visual,
body.product-detail-page .detail-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.product-detail-page .detail-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.06), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(32, 27, 21, 0.08);
  padding: 16px;
  cursor: zoom-in;
}

body.product-detail-page .detail-carousel {
  position: relative;
}

body.product-detail-page .detail-carousel-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

body.product-detail-page .detail-carousel-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1f1d1a;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(35, 55, 84, 0.16);
  cursor: pointer;
}

body.product-detail-page .detail-carousel-btn:hover {
  background: #ffffff;
}

body.product-detail-page .detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.product-detail-page .detail-gallery img,
body.product-detail-page .detail-videos video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(32, 27, 21, 0.08);
  background: #fff;
}

body.product-detail-page .detail-gallery img {
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

body.product-detail-page .detail-gallery img:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(35, 55, 84, 0.12);
}

body.lk032-page .detail-gallery img {
  object-fit: contain;
  background: #fff;
}

body.lk030-page .detail-main-image,
body.lk030-page .detail-gallery img {
  object-fit: contain;
  background: #fff;
}

body.lk030-page .lk030-colors-display {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(32, 27, 21, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(35, 55, 84, 0.08);
  padding: 10px;
}

body.product-detail-page .detail-videos {
  display: grid;
  gap: 10px;
}

body.product-detail-page .detail-videos video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.product-detail-page .detail-empty-note {
  padding: 16px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 122, 24, 0.28);
  background: rgba(255, 122, 24, 0.06);
  text-align: center;
  font-weight: 700;
}

body.product-detail-page .detail-meta {
  margin: 0;
  font-weight: 800;
  color: #b75b0a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

body.product-detail-page .detail-description {
  margin: 0;
  line-height: 1.7;
}

body.product-detail-page .detail-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(32, 27, 21, 0.08);
}

body.product-detail-page .detail-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f1d1a;
}

body.product-detail-page .detail-price-note {
  margin: 0;
}

body.product-detail-page .detail-price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(32, 27, 21, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

body.product-detail-page .detail-price-table th,
body.product-detail-page .detail-price-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(32, 27, 21, 0.08);
  background: #fff;
}

body.product-detail-page .detail-price-table th {
  text-align: left;
  width: 50%;
  color: #1f1d1a;
}

body.product-detail-page .detail-price-table td {
  text-align: right;
  color: #b75b0a;
  font-weight: 800;
}

body.product-detail-page .detail-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.product-detail-page .detail-buttons .btn {
  flex: 1 1 180px;
  justify-content: center;
}

body.product-detail-page .detail-gallery-wrap,
body.product-detail-page .detail-video-wrap {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(32, 27, 21, 0.08);
}

body.product-detail-page .detail-gallery-wrap h2,
body.product-detail-page .detail-video-wrap h2,
body.product-detail-page .detail-card h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

body.product-detail-page .detail-back {
  margin-top: 6px;
  display: inline-flex;
}

body.product-detail-page .detail-related-section {
  margin-top: 22px;
}

body.product-detail-page .detail-related-section .shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.product-detail-page .detail-related-section .shop-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(32, 27, 21, 0.08);
  box-shadow: 0 12px 28px rgba(35, 55, 84, 0.09);
  position: relative;
}

body.product-detail-page .detail-related-section .shop-card-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.product-detail-page .detail-related-section .shop-media {
  background: #f8fbff;
  position: relative;
  z-index: 1;
  margin: 24px 24px 0;
  aspect-ratio: 1 / 1;
}

body.product-detail-page .detail-related-section .shop-media img {
  padding: 0;
  object-fit: contain;
}

body.product-detail-page .detail-related-section .shop-brand {
  background: rgba(255, 255, 255, 0.94);
  color: #b75b0a;
  border-color: rgba(255, 122, 24, 0.2);
}

body.product-detail-page .detail-related-section .shop-content {
  position: relative;
  z-index: 1;
  gap: 14px;
  padding: 22px 24px 24px;
}

body.product-detail-page .detail-related-section .shop-content h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  color: #121827;
}

body.product-detail-page .detail-related-section .shop-quality {
  color: #566378;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
}

body.product-detail-page .detail-related-section .shop-note {
  color: #6d7890;
}

body.product-detail-page .detail-related-section .price-table {
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

body.product-detail-page .detail-related-section .price-table th,
body.product-detail-page .detail-related-section .price-table td {
  padding: 10px 14px;
  font-size: 0.96rem;
  color: #48566d;
  background: #fbfcfe;
}

body.product-detail-page .detail-related-section .price-table thead th {
  background: #eef4ff;
  color: #174ea6;
  font-weight: 800;
}

body.product-detail-page .detail-related-section .price-table td {
  color: #121827;
  font-weight: 800;
  text-align: right;
}

body.product-detail-page .detail-related-section .shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

body.product-detail-page .detail-related-section .shop-actions .btn {
  flex: 1 1 140px;
  justify-content: center;
}

body.product-detail-page .detail-related-section .shop-cta {
  margin-top: 4px;
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  min-height: 54px;
  font-size: 1.02rem;
}

body.product-detail-page .detail-related-section .shop-details {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 122, 24, 0.18);
  color: #1f1d1a;
}

body.product-detail-page .detail-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 16, 20, 0.82);
}

body.product-detail-page .detail-zoom-modal[hidden] {
  display: none;
}

body.product-detail-page .detail-zoom-frame {
  position: relative;
  width: min(100%, 980px);
  max-height: min(90vh, 980px);
  border-radius: 20px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

body.product-detail-page .detail-zoom-frame img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}

body.product-detail-page .detail-zoom-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #241609;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 122, 24, 0.22);
}

@media (max-width: 1080px) {
  body.catalog-page .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .new-arrival-card-ai {
    grid-template-columns: 1fr;
  }

  .new-arrival-collage {
    min-height: 300px;
  }

  body.product-detail-page .detail-grid {
    grid-template-columns: 1fr;
  }

  body.product-detail-page .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-s1-overview {
    grid-template-columns: 1fr;
  }

  .ai-s1-icon-grid,
  .ai-s1-lens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-s1-scene-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.catalog-page .catalog-hero {
    padding-top: 22px;
    overflow: hidden;
  }

  body.catalog-page .catalog-hero .wrap {
    width: min(calc(100vw - 24px), 1180px);
  }

  body.catalog-page .catalog-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.04;
  }

  body.catalog-page .catalog-intro,
  body.catalog-page .catalog-warning,
  body.catalog-page .hero-category-card p:not(.section-kicker) {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body.catalog-page .catalog-hero-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
  }

  body.catalog-page .catalog-hero-copy,
  body.catalog-page .hero-category-card {
    width: 100%;
    max-width: calc(100vw - 24px);
  }

  body.catalog-page .hero-category-card {
    padding: 18px;
    border-radius: 20px;
  }

  body.catalog-page .hero-category-filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.catalog-page .hero-category-card .hero-category-filters {
    grid-template-columns: 1fr;
  }

  body.catalog-page .hero-category-card .hero-category-filters .filter-chip {
    grid-column: auto;
  }

  body.product-detail-page .new-page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  body.product-detail-page .new-page-links {
    width: 100%;
  }

  body.product-detail-page .new-page-links .btn {
    width: 100%;
    min-width: 0;
  }

  body.product-detail-page .new-page-hero-inner h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  body.product-detail-page .new-page-hero-inner .hero-text {
    font-size: 1rem;
  }

  body.catalog-page .catalog-actions {
    width: 100%;
  }

  body.catalog-page .catalog-actions .btn {
    flex: 1 1 100%;
  }

  body.catalog-page .catalog-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.catalog-page .shop-grid {
    grid-template-columns: 1fr;
  }

  body.catalog-page .filter-chip {
    flex: 1 1 calc(50% - 10px);
  }

  body.product-detail-page .detail-shell {
    padding: 18px;
  }

  body.product-detail-page .detail-top {
    flex-direction: column;
  }

  body.product-detail-page .detail-gallery {
    grid-template-columns: 1fr;
  }

  body.product-detail-page .detail-buttons .btn {
    flex: 1 1 100%;
  }

  body.product-detail-page .detail-carousel-controls {
    padding: 0 6px;
  }

  body.product-detail-page .detail-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  body.product-detail-page .detail-related-section .shop-grid {
    grid-template-columns: 1fr;
  }

  .ai-s1-thumbs,
  .ai-s1-icon-grid,
  .ai-s1-lens-grid,
  .ai-s1-scene-grid {
    grid-template-columns: 1fr;
  }

  .ai-s1-carousel {
    padding: 14px;
  }

  .ai-s1-carousel-btn {
    width: 38px;
    height: 38px;
  }

  .ai-s1-counter {
    right: 12px;
    bottom: 12px;
  }
}

/* Samsung indexing enhancement */
.seo-link-grid,
.app-seo-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.seo-link-grid a,
.app-seo-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 27, 35, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #16202a;
  font-weight: 700;
  text-decoration: none;
}

.seo-link-grid a:hover,
.seo-link-grid a:focus-visible,
.app-seo-links a:hover,
.app-seo-links a:focus-visible {
  border-color: rgba(255, 106, 0, 0.55);
  color: #d95500;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  color: #67717e;
  font-size: 0.92rem;
}

.breadcrumb-nav a {
  color: #d95500;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb-nav a::after {
  content: ">";
  margin-left: 8px;
  color: #9aa3ad;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.faq-grid article,
.detail-seo-card {
  border: 1px solid rgba(20, 27, 35, 0.1);
  border-radius: 8px;
  background: #fff;
}

.faq-grid article {
  padding: 18px;
}

.faq-grid h3,
.detail-seo-card h2 {
  margin-top: 0;
  color: #16202a;
}

.detail-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #43505c;
}
