:root {
  --ink: #1a1414;
  --charcoal: #2b2323;
  --burgundy: #7a1f3d;
  --wine: #5c1028;
  --cream: #f7f1e8;
  --ivory: #fbf7f1;
  --blush: #f3d6d6;
  --gold: #c9a96e;
  --gold-dark: #a8874a;
  --muted: #7a6f6a;
  --line: #eadfd3;
  --white: #fff;
  --shadow: 0 18px 40px rgba(26, 20, 20, .08);
  --radius: 18px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,.font-serif { font-family: var(--font-serif); font-weight: 600; }

.container-ijk { width: min(1240px, calc(100% - 32px)); margin-inline: auto; }

.topbar {
  background: var(--ink);
  color: #f3e8d8;
  font-size: .82rem;
  padding: .55rem 0;
}
.topbar a { color: var(--gold); }
.navbar-ijk {
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1040;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: .08em;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--burgundy); font-weight: 700;
}
.nav-link-ijk {
  color: var(--charcoal) !important;
  font-weight: 500;
  padding: .6rem .9rem !important;
  position: relative;
}
.nav-link-ijk:after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 6px;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: .25s;
}
.nav-link-ijk:hover:after, .nav-link-ijk.active:after { transform: scaleX(1); }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; position: relative;
}
.icon-btn .badge-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--burgundy); color: #fff;
  border-radius: 50%; min-width: 18px; height: 18px;
  font-size: .65rem; display: grid; place-items: center;
}

.btn-gold, .btn-burgundy, .btn-ghost {
  border-radius: 999px; padding: .8rem 1.4rem; font-weight: 600;
  letter-spacing: .04em; border: 0; display: inline-flex;
  align-items: center; gap: .5rem; transition: .25s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn-burgundy { background: var(--burgundy); color: #fff; }
.btn-burgundy:hover { background: var(--wine); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-gold:disabled, .btn-burgundy:disabled { opacity: .6; pointer-events: none; }

/* ===== Homepage hero showcase (split + arch) ===== */
.hero-showcase {
  position: relative;
  background: #f6efe6;
  overflow: hidden;
  padding: 1.5rem 0 2.4rem;
}
.hero-showcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 70% at 8% 55%, rgba(122, 31, 61, .06), transparent 70%),
    radial-gradient(ellipse 30% 50% at 18% 20%, rgba(201, 169, 110, .12), transparent 65%);
  opacity: .9;
}
.hero-showcase-bg:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 10%;
  width: 280px;
  height: 80%;
  background:
    radial-gradient(circle at 30% 20%, rgba(90,70,50,.08) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 45%, rgba(90,70,50,.07) 0 3px, transparent 4px),
    radial-gradient(circle at 40% 70%, rgba(90,70,50,.06) 0 2px, transparent 3px);
  filter: blur(0.2px);
  opacity: .55;
}
.hero-showcase-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 62vh, 560px);
}
.hero-track {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 62vh, 560px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.5rem 2rem;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-copy {
  max-width: 560px;
  padding: 1rem 0 2.5rem;
}
.hero-eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}
.hero-eyebrow:after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.hero-title {
  margin: 0;
  line-height: .98;
}
.hero-title-main,
.hero-title-accent {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
}
.hero-title-main {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.hero-title-accent {
  margin-top: .15rem;
  color: var(--gold-dark);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}
.hero-sub {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
  margin-top: 1.4rem;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--charcoal);
  font-size: .78rem;
  line-height: 1.25;
  font-weight: 500;
}
.hero-point-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.55);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.55);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}
.btn-hero-primary,
.btn-hero-secondary {
  border-radius: 999px;
  padding: .85rem 1.45rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: .25s ease;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #b89255, #c9a96e);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 24px rgba(168,135,74,.28);
}
.btn-hero-primary:hover {
  transform: translateY(-1px);
  color: #fff;
  filter: brightness(1.05);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid #d8c7b0;
}
.btn-hero-secondary:hover {
  background: #fff;
  border-color: var(--gold);
  color: var(--ink);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: .5rem;
}
.hero-arch {
  width: min(420px, 100%);
  aspect-ratio: 3 / 4.05;
  border-radius: 999px 999px 42px 42px;
  overflow: hidden;
  position: relative;
  background: #efe4d6;
  box-shadow:
    0 0 0 3px #c9a96e,
    0 0 0 8px rgba(201,169,110,.18),
    0 28px 50px rgba(26,20,20,.14);
}
.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 18%;
  display: block;
  transform: scale(1.08);
}
.hero-arch--plain {
  background: linear-gradient(160deg, #efe4d6, #d9c3a4);
}
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid #e5d8c8;
  background: rgba(255,255,255,.88);
  color: #6b625b;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(26,20,20,.08);
  transition: .25s ease;
}
.hero-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.hero-btn-prev { left: .25rem; }
.hero-btn-next { right: .25rem; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: .15rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: .45rem;
}
.hero-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  border: 0;
  background: #d7c9b7;
  padding: 0;
  transition: width .3s ease, background .3s ease;
}
.hero-dot.is-active {
  width: 1.35rem;
  background: var(--gold);
}

.hero-trust {
  background: #f1e7da;
  border-top: 1px solid #e5d8c8;
  border-bottom: 1px solid #e5d8c8;
  padding: 1.15rem 0;
}
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .35rem .4rem;
  position: relative;
}
.hero-trust-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: -.5rem;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: #ddcfbd;
}
.hero-trust-item i {
  color: var(--gold-dark);
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
}
.hero-trust-item strong {
  display: block;
  font-size: .92rem;
  color: var(--ink);
  font-weight: 600;
}
.hero-trust-item span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-top: .1rem;
}

.section { padding: 5rem 0; }
.section-compact { padding: 2.2rem 0 2.8rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: .4rem;
}
.section-sub { color: var(--muted); margin-bottom: 2.4rem; }

.cat-card, .product-card, .occasion-card, .why-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: .3s ease; height: 100%;
}
.cat-card:hover, .product-card:hover, .occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(122,31,61,.12);
}
.cat-card img, .product-media img { width: 100%; height: 240px; object-fit: cover; }
.product-media { position: relative; overflow: hidden; }
.product-media img { transition: .5s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-actions {
  position: absolute; inset: auto 12px 12px auto; display: flex; flex-direction: column; gap: .4rem;
  opacity: 0; transform: translateY(8px); transition: .25s;
}
.product-card:hover .product-actions { opacity: 1; transform: none; }
.badge-sale {
  position: absolute; top: 12px; left: 12px;
  background: var(--burgundy); color: #fff; border-radius: 999px;
  padding: .25rem .7rem; font-size: .75rem;
}
.price { font-weight: 700; color: var(--burgundy); }
.price-old { color: var(--muted); text-decoration: line-through; margin-left: .35rem; font-weight: 400; }
.stars { color: var(--gold); letter-spacing: .08em; }

.promo-banner {
  background: linear-gradient(120deg, var(--ink), var(--wine));
  color: #fff; border-radius: 28px; padding: 3.5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.why-card { padding: 1.8rem; text-align: center; }
.why-icon {
  width: 62px; height: 62px; margin: 0 auto 1rem;
  border-radius: 50%; display: grid; place-items: center;
  background: #f8ece6; color: var(--burgundy); font-size: 1.3rem;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery-grid img { height: 220px; width: 100%; object-fit: cover; border-radius: 16px; }

.review-card { background: #fff; border-radius: 22px; padding: 1.8rem; border: 1px solid var(--line); height: 100%; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blush); display: grid; place-items: center; font-weight: 700;
}

.map-wrap { border-radius: 22px; overflow: hidden; min-height: 320px; border: 1px solid var(--line); }
.footer-ijk {
  background: var(--ink); color: #ecdcc8; padding: 3rem 0 1.4rem;
}
.footer-ijk a { color: #f3e8d8; }
.footer-ijk h5 { color: var(--gold); font-family: var(--font-serif); }
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 1050;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 1.6rem; box-shadow: 0 10px 24px rgba(37,211,102,.4);
}

.search-suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); display: none; z-index: 20; max-height: 360px; overflow: auto;
}
.search-suggest.active { display: block; }
.search-item { display: flex; gap: .8rem; padding: .7rem .9rem; align-items: center; }
.search-item.active, .search-item:hover { background: var(--cream); }
.search-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }

.shop-sidebar { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.4rem; }
.product-zoom { overflow: hidden; border-radius: 22px; background: #fff; }
.product-zoom img { width: 100%; height: 520px; object-fit: cover; cursor: zoom-in; }
.thumbs img { width: 78px; height: 78px; object-fit: cover; border-radius: 12px; cursor: pointer; border: 2px solid transparent; }
.thumbs img.active { border-color: var(--gold); }
.qty-box { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; width: 140px; }
.qty-box button, .qty-box input { border: 0; background: #fff; text-align: center; height: 42px; }
.qty-box input { width: 56px; }

.table-like { background: #fff; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }
.auth-wrap {
  min-height: 100vh; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--cream), #fff 50%, var(--blush));
  padding: 2rem 1rem;
}
.auth-card { width: min(460px, 100%); background: #fff; border-radius: 28px; padding: 2.2rem; box-shadow: var(--shadow); }
.form-control, .form-select {
  border-radius: 12px; border-color: var(--line); padding: .75rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(201,169,110,.2);
}
.account-nav a { display: block; padding: .75rem 1rem; border-radius: 12px; }
.account-nav a.active, .account-nav a:hover { background: var(--cream); color: var(--burgundy); }

/* ===== Account / My Orders UI ===== */
.acc-page { background: transparent; }
.acc-card {
  background: #fff;
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 24px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 10px 30px rgba(26,20,20,.04);
}
.acc-page-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.acc-nav { display: flex; flex-direction: column; gap: .35rem; }
.acc-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  text-align: left;
  position: relative;
  transition: background .2s ease, color .2s ease;
}
.acc-nav-link:hover { background: #f6efe6; color: var(--ink); }
.acc-nav-link.is-active {
  background: #f3ebe1;
  color: var(--ink);
  font-weight: 600;
}
.acc-nav-link.is-active:before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: #b39269;
}
.acc-nav-left { display: inline-flex; align-items: center; gap: .75rem; }
.acc-nav-left i { width: 1.1rem; text-align: center; color: #8a7a68; }
.acc-nav-link.is-active .acc-nav-left i { color: #8a6a45; }
.acc-nav-chevron { font-size: .7rem; color: #c2b5a5; }
.acc-nav-logout, .acc-nav-logout .acc-nav-left i { color: #c45c5c !important; }
.acc-nav form { margin: 0; }

.acc-order { padding: 1.6rem 1.7rem 1.8rem; }
.acc-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: #efe4d4;
  color: #5c4a38;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.15rem;
}
.acc-back:hover { background: #e7d8c4; color: var(--ink); }
.acc-order-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--ink);
  margin: 0 0 .65rem;
  font-weight: 600;
}
.acc-order-status {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 1.4rem;
}
.acc-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.2;
}
.acc-badge-sm { padding: .25rem .65rem; font-size: .75rem; }
.acc-badge-success { background: #68b291; color: #fff; }
.acc-badge-info { background: #c4a574; color: #fff; }
.acc-badge-warn { background: #d4a574; color: #fff; }
.acc-badge-danger { background: #c45c5c; color: #fff; }

.acc-order-items { display: flex; flex-direction: column; gap: .85rem; }
.acc-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
}
.acc-order-item-main { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.acc-order-thumb {
  width: 58px; height: 58px;
  object-fit: cover;
  border-radius: 14px;
  background: #f3ebe1;
  flex: 0 0 auto;
}
.acc-order-item-name { font-weight: 600; color: var(--ink); }
.acc-order-item-meta { font-size: .8rem; color: var(--muted); margin-top: .15rem; }
.acc-order-item-price { font-weight: 600; color: var(--ink); white-space: nowrap; }

.acc-order-total {
  margin-top: 1.15rem;
  padding: .95rem 1.15rem;
  border-radius: 14px;
  background: #f4ebe0;
  font-weight: 700;
  color: var(--ink);
}
.acc-order-ship {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .92rem;
}
.acc-order-ship i { color: #b39269; margin-top: .2rem; }

.acc-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 2rem;
  padding-top: .4rem;
}
.acc-timeline-track {
  position: absolute;
  left: 16.5%;
  right: 16.5%;
  top: 22px;
  display: flex;
  gap: 0;
  z-index: 0;
  pointer-events: none;
}
.acc-timeline-line {
  flex: 1;
  height: 3px;
  background: #e8ddd0;
  border-radius: 999px;
}
.acc-timeline-line.is-done { background: #b39269; }
.acc-timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.acc-timeline-node {
  width: 44px; height: 44px;
  margin: 0 auto .7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #e0d3c3;
  color: #b9a894;
  font-size: .95rem;
}
.acc-timeline-step.is-done .acc-timeline-node,
.acc-timeline-step.is-current .acc-timeline-node {
  background: #b39269;
  border-color: #b39269;
  color: #fff;
}
.acc-timeline-label {
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
}
.acc-timeline-meta {
  margin-top: .25rem;
  font-size: .78rem;
  color: var(--muted);
}
.acc-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: #fbf7f1;
  border: 1px solid rgba(201,169,110,.14);
  margin-bottom: .7rem;
  transition: background .2s ease, transform .2s ease;
}
.acc-order-row:hover { background: #f4ebe0; color: inherit; transform: translateY(-1px); }
.acc-order-row-meta { display: block; font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.acc-order-row-right { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 767px) {
  .acc-timeline { grid-template-columns: 1fr; gap: 1.1rem; }
  .acc-timeline-track { display: none; }
  .acc-timeline-step { display: grid; grid-template-columns: 44px 1fr; column-gap: .85rem; text-align: left; align-items: center; }
  .acc-timeline-node { margin: 0; grid-row: 1 / span 2; }
  .acc-order-item { flex-direction: column; align-items: flex-start; }
  .acc-order-item-price { padding-left: 68px; }
}

.reveal { opacity: 0; transform: translateY(24px); animation: reveal .8s ease forwards; }
.reveal-delay-1 { animation-delay: .15s; }
.reveal-delay-2 { animation-delay: .3s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

.skeleton { background: linear-gradient(90deg, #efe6da 25%, #f7f1e8 37%, #efe6da 63%); background-size: 400% 100%; animation: shimmer 1.2s infinite; border-radius: 12px; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

@media (max-width: 991px) {
  .hero-showcase { padding: 1rem 0 1.8rem; }
  .hero-showcase-inner,
  .hero-track { min-height: 0; }
  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hero-slide.is-active { display: grid; }
  .hero-copy { max-width: none; padding: .5rem 0 0; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-points { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-title-main,
  .hero-title-accent { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-arch { width: min(300px, 78vw); aspect-ratio: 3 / 3.7; }
  .hero-btn { display: none; }
  .hero-dots { position: static; transform: none; justify-content: center; margin-top: 1rem; }
  .hero-trust-grid { grid-template-columns: 1fr 1fr; gap: .85rem 1rem; }
  .hero-trust-item:nth-child(2):after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-zoom img { height: 360px; }
  .product-actions { opacity: 1; transform: none; }
}
@media (max-width: 575px) {
  .hero-trust-grid { grid-template-columns: 1fr; }
  .hero-trust-item:after { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
