/* ═══════════════════════════════════════════════════════════════════
   Asianmicro.biz — Ultra Premium Theme Layer (v3.0)
   Loads AFTER theme-premium.css to layer in luxury-brand details.
   Inspired by Aesop, Net-a-Porter, Jo Malone, Prestige Shopify theme.
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   Emoji-icon normalizer
   Different emojis (💵 🤝 👑 🌐 🏆 ⭐) have inconsistent metrics
   which causes vertical-alignment jitter when placed next to text.
   Wrap the icon in <span class="em-icon">…</span> and the parent gets
   perfect baseline-centered alignment regardless of the emoji used.
   ───────────────────────────────────────────────────────── */
.em-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  line-height: 1;
  font-size: 1em;
  vertical-align: middle;
  flex-shrink: 0;
  /* Fallback font-family ensures consistent emoji rendering */
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Android Emoji', sans-serif;
  /* Neutralize vertical drift some emojis have */
  transform: translateY(-0.02em);
}
.em-icon--sm { font-size: 0.85em; }
.em-icon--lg { font-size: 1.2em; width: 1.4em; height: 1.4em; }
.em-icon--xl { font-size: 1.6em; width: 1.8em; height: 1.8em; }

/* When used in a heading, keep the icon tight to the text */
h1 .em-icon, h2 .em-icon, h3 .em-icon, h4 .em-icon, h5 .em-icon {
  margin-right: 0.05em;
}

/* ─────────────────────────────────────────────────────────
   Account dropdown menu (avatar click)
   ───────────────────────────────────────────────────────── */
.account-menu {
  position: relative;
  display: inline-flex;
}
.account-menu__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.account-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--tp-line, #E8E6E1);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 150;
}
/* Show on hover (desktop) — works even without JS */
@media (hover: hover) and (pointer: fine) {
  .account-menu:hover .account-menu__dropdown,
  .account-menu:focus-within .account-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* Also show on click (JS-driven, for mobile/tap) */
.account-menu.is-open .account-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Invisible bridge so mouse can cross the gap without closing */
.account-menu__dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 14px;
}
.account-menu__header {
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.account-menu__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--tp-primary, #8B1A1A);
}
.account-menu__info { min-width: 0; flex: 1; }
.account-menu__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--tp-ink, #8B1A1A);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-menu__email {
  font-size: 0.72rem;
  color: var(--tp-muted, #6B6B6B);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-menu__tier {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--tp-accent-dark, #8C6F30);
  background: var(--tp-accent-soft, #F9F4E8);
  border-radius: 4px;
}
.account-menu__divider {
  height: 1px;
  background: var(--tp-line-soft, #F1F0EC);
  margin: 0.3rem 0;
}
.account-menu__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.86rem;
  color: var(--tp-ink-text, #1F2937);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.account-menu__item:hover {
  background: var(--tp-bg-alt, #F7F5F0);
  color: var(--tp-ink, #8B1A1A);
}
.account-menu__icon {
  font-size: 1rem;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  /* em-icon class handles actual alignment */
}
.account-menu__item--admin {
  color: var(--tp-accent-dark, #8C6F30);
  font-weight: 600;
}
.account-menu__item--logout {
  color: var(--tp-danger, #B91C1C);
}
.account-menu__item--logout:hover {
  background: var(--tp-danger-soft, #FEE2E2);
  color: var(--tp-danger, #B91C1C);
}

@media (max-width: 500px) {
  .account-menu__dropdown {
    right: -0.5rem;
    min-width: 240px;
  }
}

/* ─────────────────────────────────────────────────────────
   Scroll-triggered fade-in (activated via JS Intersection Observer)
   ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }

/* ─────────────────────────────────────────────────────────
   HERO — Cinematic Ken Burns + Parallax
   ───────────────────────────────────────────────────────── */
.hero-slide {
  min-height: clamp(520px, 80vh, 760px);
  overflow: hidden;
}
.hero-slide__bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}
.hero-slide::before {
  background: linear-gradient(105deg,
    rgba(139,26,26, 0.82) 0%,
    rgba(139,26,26, 0.55) 40%,
    rgba(139,26,26, 0.2) 70%,
    rgba(139,26,26, 0.05) 100%);
  z-index: 1;
}
.hero-slide > .container { position: relative; z-index: 2; }

/* Hero typography refinement */
.hero-slide__subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  padding: 0.5rem 0;
  border: none;
  border-top: 1px solid rgba(212,186,122,0.45);
  border-bottom: 1px solid rgba(212,186,122,0.45);
  display: inline-block;
  margin-bottom: 1.6rem;
}
.hero-slide h1 {
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero-slide p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero-slide .btn--lg {
  padding: 1.1rem 2.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  border-width: 1px;
  border-radius: 2px;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.3);
}

/* Hero slider controls refinement */
.hero-slider__dots {
  bottom: 2.2rem;
  gap: 0.6rem;
}
.hero-slider__dot {
  width: 32px;
  height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s var(--tp-ease-out);
}
.hero-slider__dot:hover { background: rgba(255,255,255,0.6); }
.hero-slider__dot.active {
  background: #fff;
  width: 56px;
}
.hero-slider__arrow {
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-slider__arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.hero-slider__arrow--prev { left: 2rem; }
.hero-slider__arrow--next { right: 2rem; }

/* ─────────────────────────────────────────────────────────
   Section Label — refined luxury caps
   ───────────────────────────────────────────────────────── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--tp-accent-dark);
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: var(--tp-accent);
  transform: translateY(-50%);
}
.section-header--center .section-label { padding-left: 0; }
.section-header--center .section-label::before { display: none; }
.section-header--center .section-label {
  position: relative;
  padding: 0.4rem 0;
}
.section-header--center .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--tp-accent);
  margin: 0.8rem auto 0;
}

/* ─────────────────────────────────────────────────────────
   Section spacing — airier
   ───────────────────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ─────────────────────────────────────────────────────────
   Hairline divider (used between sections)
   ───────────────────────────────────────────────────────── */
.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tp-line), transparent);
  margin: 0;
  border: none;
}

/* ─────────────────────────────────────────────────────────
   CATEGORY CARDS — Premium photo-first
   ───────────────────────────────────────────────────────── */
.category-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.category-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--tp-bg-alt);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.5s var(--tp-ease-out), box-shadow 0.5s var(--tp-ease-out);
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(139,26,26, 0.1) 60%, rgba(139,26,26, 0.85) 100%);
  z-index: 1;
  transition: opacity 0.5s var(--tp-ease-out);
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.95);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25);
}
.category-card:hover img {
  transform: scale(1.12);
  filter: brightness(1.05);
}
.category-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.4rem;
  z-index: 2;
  color: #fff;
  background: none;
}
.category-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.category-card__count {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tp-accent-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.category-card__count::after {
  content: '→';
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.4s var(--tp-ease-out);
}
.category-card:hover .category-card__count::after {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────────────────────
   PRODUCT CARD — Image swap + luxury refinement
   ───────────────────────────────────────────────────────── */
.product-card__image,
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--tp-bg-alt);
  border-radius: 3px;
  margin-bottom: 1.2rem;
  display: block;
}
.product-card__image .product-card__img,
.product-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s var(--tp-ease-out), transform 1s var(--tp-ease-out);
}
.product-card__image .product-card__img--hover {
  opacity: 0;
  transform: scale(1.02);
}
.product-card:hover .product-card__image .product-card__img--primary {
  opacity: 0;
  transform: scale(1.04);
}
.product-card:hover .product-card__image .product-card__img--hover {
  opacity: 1;
  transform: scale(1);
}
/* Fallback: no secondary image — just zoom */
.product-card:hover .product-card__image img:only-child {
  opacity: 1;
  transform: scale(1.08);
}

.product-card__category {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tp-muted-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-card__title,
.product-card__title a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--tp-ink-text);
  letter-spacing: 0;
}
.product-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--tp-ink);
  margin-top: 0.6rem;
  letter-spacing: -0.01em;
}
.product-card__pv {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--tp-accent-dark);
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* Quick-add hover action */
.product-card__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s var(--tp-ease-out);
  z-index: 3;
}
.product-card:hover .product-card__actions {
  transform: translateY(0);
  opacity: 1;
}
.product-card__actions .btn {
  width: 100%;
  padding: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  background: var(--tp-ink);
  color: #fff;
  border-color: var(--tp-ink);
}
.product-card__actions .btn:hover {
  background: var(--tp-accent);
  border-color: var(--tp-accent);
}

/* ─────────────────────────────────────────────────────────
   FEATURE CARDS — refined
   ───────────────────────────────────────────────────────── */
.feature-card {
  padding: 2.4rem 1.5rem;
  border-radius: 3px;
  border: 1px solid var(--tp-line-soft);
  background: #fff;
}
.feature-card__icon {
  font-size: 2rem;
  width: 72px;
  height: 72px;
  line-height: 72px;
  margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--tp-accent-soft), #fff);
  border: 1px solid var(--tp-accent-soft);
}
.feature-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--tp-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--tp-bg-alt);
  padding: 2.4rem 0;
  border-top: 1px solid var(--tp-line-soft);
  border-bottom: 1px solid var(--tp-line-soft);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--tp-line);
}
.trust-item__icon {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
  color: var(--tp-accent-dark);
}
.trust-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tp-ink);
  margin-bottom: 0.2rem;
}
.trust-item__desc {
  font-size: 0.75rem;
  color: var(--tp-muted);
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--tp-bg-cream);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before,
.testimonials-section::after {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22rem;
  color: var(--tp-accent-soft);
  line-height: 0.5;
  pointer-events: none;
  z-index: 0;
}
.testimonials-section::before {
  top: 20%; left: -2%;
}
.testimonials-section::after {
  bottom: 10%; right: -2%;
  transform: rotate(180deg);
}
.testimonials-section > .container { position: relative; z-index: 1; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--tp-line-soft);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--tp-ease-out);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.08);
}
.testimonial-card__stars {
  color: var(--tp-accent);
  margin-bottom: 1.2rem;
  letter-spacing: 0.15em;
  font-size: 0.92rem;
}
.testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--tp-ink-text);
  font-style: italic;
  margin-bottom: 1.6rem;
  flex: 1;
  font-weight: 400;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tp-line-soft);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tp-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tp-ink);
  margin-bottom: 0.15rem;
}
.testimonial-card__role {
  font-size: 0.72rem;
  color: var(--tp-muted);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────────
   NEWSLETTER
   ───────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--tp-ink);
  background-image:
    radial-gradient(ellipse at top left, rgba(181,149,79,0.2), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(139,26,26,0.4), transparent 50%);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.newsletter-section h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.newsletter-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.4rem;
  line-height: 1.65;
}
.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.3rem 0.3rem 0.3rem 1.4rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--tp-ease);
}
.newsletter-form:focus-within {
  background: rgba(255,255,255,0.12);
  border-color: var(--tp-accent);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0.75rem 0.4rem;
  font-size: 0.9rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  background: var(--tp-accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--tp-ease);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--tp-accent-light);
  color: var(--tp-ink);
}
.newsletter-privacy {
  margin-top: 1.3rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.newsletter-privacy a { color: var(--tp-accent-light); text-decoration: underline; }

/* ─────────────────────────────────────────────────────────
   INSTAGRAM GRID
   ───────────────────────────────────────────────────────── */
.instagram-section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.instagram-section__header {
  text-align: center;
  margin-bottom: 2.4rem;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--tp-muted);
  font-size: 0.88rem;
  margin-top: 0.6rem;
  transition: color 0.25s var(--tp-ease);
}
.instagram-handle:hover { color: var(--tp-accent-dark); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.instagram-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--tp-bg-alt);
  display: block;
}
.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--tp-ease-out);
}
.instagram-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.0), rgba(181,149,79,0.0));
  z-index: 1;
  transition: all 0.4s var(--tp-ease-out);
}
.instagram-tile::after {
  content: '♥';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  color: #fff;
  font-size: 2rem;
  z-index: 2;
  transition: all 0.4s var(--tp-ease-out);
  pointer-events: none;
}
.instagram-tile:hover img { transform: scale(1.1); }
.instagram-tile:hover::before {
  background: linear-gradient(135deg, rgba(139,26,26,0.5), rgba(181,149,79,0.5));
}
.instagram-tile:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ─────────────────────────────────────────────────────────
   FOOTER refinement — premium hairlines
   ───────────────────────────────────────────────────────── */
.site-footer {
  background: #022818;
  background-image:
    radial-gradient(ellipse at top, rgba(181,149,79,0.06), transparent 60%);
  border-top: 1px solid rgba(212,186,122,0.15);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.75; }
.footer-col h4 {
  color: rgba(255,255,255,0.95);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 1px;
  background: var(--tp-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem 0;
}

/* ─────────────────────────────────────────────────────────
   SKELETON / Shimmer placeholder
   ───────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg,
    var(--tp-bg-alt) 0%,
    var(--tp-line-soft) 50%,
    var(--tp-bg-alt) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─────────────────────────────────────────────────────────
   PAGE TRANSITIONS
   ───────────────────────────────────────────────────────── */
body {
  animation: pageEnter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Subtle link underline animation */
a:not(.btn):not(.category-card):not(.product-card__image):not(.header-icon):not(.logo) {
  position: relative;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — refine new sections for mobile
   ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .trust-item:nth-child(2)::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .hero-slide { min-height: 460px; }
  .hero-slide h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .trust-strip { padding: 1.8rem 0; }
  .trust-strip__grid { gap: 1.4rem 0.8rem; }
  .trust-item { padding: 0 0.5rem; }
  .trust-item::after { display: none !important; }
  .trust-item__title { font-size: 0.92rem; }
  .trust-item__desc { font-size: 0.7rem; }
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card__quote { font-size: 1rem; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
    padding: 0.5rem;
    background: rgba(255,255,255,0.06);
  }
  .newsletter-form input {
    padding: 0.8rem 1rem;
    text-align: center;
  }
  .newsletter-form button {
    border-radius: 6px;
    padding: 0.85rem;
    width: 100%;
  }
  .hero-slider__arrow { display: none; }
  .section-label { padding-left: 0; }
  .section-label::before { display: none; }
}

@media (max-width: 480px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr 1fr; }
}
