/* ============ TOKENS ============ */
:root {
  --black: #0b0b0c;
  --charcoal: #161616;
  --charcoal-2: #1f1f21;
  --ivory: #f7f4ee;
  --ivory-dim: #efeae0;
  --gold: #c9a961;
  --gold-bright: #e8c874;
  --gold-dim: #8a7440;
  --gray: #8a8a8e;
  --line: rgba(201, 169, 97, 0.25);
  --bg: var(--ivory);
  --bg-alt: var(--ivory-dim);
  --surface: #ffffff;
  --text: var(--black);
  --text-soft: #55524a;
  --radius: 2px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
[data-theme="dark"] {
  --bg: #0b0b0c;
  --bg-alt: #131314;
  --surface: #17171a;
  --text: #f2efe8;
  --text-soft: #b9b4a8;
  --line: rgba(201, 169, 97, 0.3);
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hidden {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease);
  overflow-x: hidden;
}
main,
section,
header,
footer,
.container {
  min-width: 0;
  max-width: 100%;
}
input,
select,
textarea,
button {
  max-width: 100%;
}
iframe,
video,
svg {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}
.section {
  padding: 120px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}
.section-head p {
  color: var(--text-soft);
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.section-reveal-btn {
  margin-top: 22px;
  justify-content: center;
}

/* signature stitch divider */
.stitch {
  height: 1px;
  background-image: linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 14px
  );
  background-size: 14px 1px;
  background-repeat: repeat-x;
  width: 100%;
  opacity: 0.6;
}
.stitch-v {
  width: 1px;
  height: 40px;
  margin: 0 auto;
  background-image: linear-gradient(
    180deg,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 14px
  );
  background-size: 1px 14px;
}

.page-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.page-header a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.static-info-page {
  min-height: 100vh;
}
.legal-page,
.product-page,
.category-page {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 72px 0 90px;
}
.legal-page h1,
.product-page h1,
.category-page h1 {
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  margin-bottom: 24px;
}
.legal-page p,
.product-page p,
.category-page p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.product-page .product-image {
  width: min(520px, 100%);
  margin: 30px 0;
  border: 1px solid var(--line);
  background: var(--surface);
}
.product-details {
  margin: 28px 0;
}
.product-details h2 {
  font-size: 30px;
  margin-bottom: 14px;
}
.product-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-details li {
  border: 1px solid var(--line);
  padding: 8px 12px;
  color: var(--text-soft);
}
.category-products {
  margin-top: 34px;
}
@media (max-width: 600px) {
  .page-header nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-page,
  .product-page,
  .category-page {
    padding: 50px 0 70px;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--text);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(
    100deg,
    var(--gold-dim),
    var(--gold-bright),
    var(--gold)
  );
  background-size: 220% 100%;
  color: #0b0b0c;
  border-color: transparent;
}
.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(201, 169, 97, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}
.btn-sm {
  padding: 11px 20px;
  font-size: 11px;
}

/* ============ LOADER ============ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.5em;
  text-transform: uppercase;
}
.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(201, 169, 97, 0.25);
  overflow: hidden;
}
.loader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  animation: loaderMove 1.1s ease-in-out infinite;
}
@keyframes loaderMove {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(150%);
  }
  100% {
    transform: translateX(350%);
  }
}

/* ============ SCROLL PROGRESS ============ */
#scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  z-index: 9998;
  width: 0%;
}

/* ============ CURSOR GLOW ============ */
#glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  z-index: 2;
}
@media (max-width: 900px) {
  #glow {
    display: none;
  }
}

/* ============ NAV ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
body.has-announcement header {
  top: 44px;
}
.site-announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #171719;
  color: #f7f4ee;
  border-bottom: 1px solid rgba(201, 169, 97, 0.45);
}
.site-announcement-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 52px;
  text-align: center;
  font-size: 12px;
}
.site-announcement-inner > i,
.site-announcement-inner a {
  color: var(--gold-bright);
}
.site-announcement-inner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}
.site-announcement-inner strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-announcement-inner em {
  font-style: normal;
}
.site-announcement-inner a {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-announcement-inner button {
  position: absolute;
  right: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #cfc8bb;
}
header.scrolled {
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  padding: 14px 0;
}
[data-theme="light"] header.scrolled,
:root:not([data-theme="dark"]) header.scrolled {
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  transition: transform 0.35s var(--ease);
}
.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.035em;
  color: #f7f4ee;
  transition:
    color 0.35s var(--ease),
    font-size 0.35s var(--ease);
}
.logo:hover {
  transform: scale(1.06);
}
header.scrolled .logo-name {
  font-size: 20px;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  color: #f2efe8;
}
@media (min-width: 981px) {
  .logo-name {
    font-size: 30px;
  }
  header.scrolled .logo-name {
    font-size: 27px;
  }
  .nav-links {
    gap: 22px;
  }
  .nav-links a {
    font-size: 13px;
  }
}
header.scrolled .nav-links a {
  color: var(--text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icons button {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.2);
  font-size: 16px;
  color: #f2efe8;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.nav-icons button:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 200, 116, 0.65);
  background: rgba(201, 169, 97, 0.14);
}
.nav-icons .nav-feature-action {
  color: var(--gold-bright);
}
header.scrolled .nav-icons button {
  color: var(--text);
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}
.badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #0b0b0c;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger {
  display: none;
  font-size: 20px;
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
}
@media (max-width: 600px) {
  .container.nav-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .logo-name {
    font-size: 18px;
  }
  header.scrolled .logo-name {
    font-size: 17px;
  }
  .nav-icons {
    gap: 8px;
  }
  .nav-icons button[aria-label="Search"] {
    display: none;
  }
  .nav-icons button {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* mobile menu */
#mobileMenu {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent 38%),
    var(--black);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  padding: 96px 34px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
#mobileMenu.open {
  transform: translateX(0);
}
#mobileMenu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.1;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.14);
  color: #f7f4ee;
}
#mobileMenu .close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 24px;
  color: var(--gold);
}
.mobile-theme-toggle {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid rgba(201, 169, 97, 0.32);
  background: rgba(247, 244, 238, 0.06);
  color: #f7f4ee;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-theme-toggle i {
  color: var(--gold-bright);
  font-size: 17px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(
      ellipse at 30% 20%,
      rgba(201, 169, 97, 0.14),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 80%,
      rgba(201, 169, 97, 0.1),
      transparent 50%
    ),
    linear-gradient(180deg, #0b0b0c 0%, #141416 60%, #0b0b0c 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(
      rgba(201, 169, 97, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(201, 169, 97, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-140px) translateX(30px);
    opacity: 0.9;
  }
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px;
}
.hero-content .eyebrow {
  color: var(--gold-bright);
}
.hero-content h1 {
  font-size: clamp(58px, 11vw, 150px);
  color: #f7f4ee;
  line-height: 0.95;
  letter-spacing: 0.01em;
  animation: heroIn 1.3s var(--ease) both;
}
.hero-content .tagline {
  color: #c9c5b8;
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.06em;
  margin: 22px 0 44px;
  animation: heroIn 1.3s 0.15s var(--ease) both;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroIn 1.3s 0.3s var(--ease) both;
}
.hero-btns .btn-outline {
  border-color: rgba(247, 244, 238, 0.4);
  color: #f7f4ee;
}
.hero-btns .btn-outline:hover {
  background: #f7f4ee;
  color: #0b0b0c;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ ABOUT ============ */
.about {
  background: var(--bg);
}
.about-gate {
  text-align: center;
  max-width: 680px;
}
.about-gate h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  margin-bottom: 24px;
}
.about-gate .btn {
  justify-content: center;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--charcoal), #0b0b0c 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-visual .mono {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  opacity: 1;
}
.about-visual .mono img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(201, 169, 97, 0.48);
  pointer-events: none;
}
.about-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28)),
    radial-gradient(
      circle at 50% 52%,
      transparent 35%,
      rgba(0, 0, 0, 0.18) 100%
    );
  pointer-events: none;
}
.about-copy .eyebrow {
  display: inline-block;
}
.about-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 22px;
  line-height: 1.1;
}
.about-copy p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 36px;
}
.about-stats div {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.about-stats b {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  display: block;
  color: var(--gold);
}
.about-stats span {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .about {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .about-grid {
    gap: 32px;
  }
  .about-visual {
    width: min(100%, 390px);
    margin: 0 auto;
    aspect-ratio: 4/5;
  }
  .about-visual::before {
    inset: 12px;
  }
  .about-copy {
    text-align: left;
  }
  .about-copy h2 {
    font-size: 34px;
    margin-bottom: 16px;
  }
  .about-copy p {
    font-size: 14px;
    line-height: 1.78;
    margin-bottom: 13px;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .about-stats div {
    min-width: 0;
    padding: 0 10px;
    border-left: 1px solid var(--line);
  }
  .about-stats div:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .about-stats b {
    font-size: 28px;
    line-height: 1.1;
  }
  .about-stats span {
    display: block;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }
}
/* ============ CATEGORIES ============ */
.cat-grid {
  display: flex;
  gap: 0;
  overflow: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: var(--charcoal);
}
.cat-grid::-webkit-scrollbar {
  display: none;
}
.cat-card {
  flex: 0 0 100%;
  min-width: 0;
  border: 0;
  background: var(--charcoal);
  aspect-ratio: 16/7;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 62px);
  cursor: pointer;
  font: inherit;
  text-align: left;
  scroll-snap-align: start;
}
.cat-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: filter 0.65s var(--ease);
}
.cat-card i {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 26px;
  font-size: 22px;
  color: var(--gold);
  opacity: 0.7;
  transition: transform 0.5s var(--ease);
}
.cat-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85));
  transition: opacity 0.5s;
}
.cat-card span {
  position: relative;
  z-index: 4;
  color: #f7f4ee;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
}
.cat-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(201, 169, 97, 0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s;
}
.cat-card:hover::after {
  opacity: 1;
}
.cat-card.is-active img {
  animation: category-hero-image 3s var(--ease) both;
}
.cat-card.is-active i {
  animation: category-hero-copy 0.7s 0.24s var(--ease) both;
}
.cat-card:hover img {
  filter: saturate(1.08) brightness(1.04);
}
.cat-card:hover i {
  transform: translateY(-6px) rotate(8deg);
}
@keyframes category-hero-image {
  0% {
    transform: scale(1.02) translateX(-1.5%);
  }
  100% {
    transform: scale(1.13) translateX(1.5%);
  }
}
@keyframes category-hero-copy {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cat-slider-meta {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cat-slide-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cat-slide-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  transition:
    width 0.45s var(--ease),
    background 0.45s var(--ease);
}
.cat-slide-dot.active {
  width: 34px;
  background: var(--gold);
}
@media (max-width: 600px) {
  .cat-card {
    aspect-ratio: 4/5;
    min-height: 390px;
    padding: 28px 24px;
  }
  .cat-card i {
    top: 22px;
    right: 22px;
  }
  .cat-card span {
    font-size: 42px;
  }
  .cat-slider-meta {
    width: calc(100% - 36px);
    margin-top: 14px;
  }
}
.featured-products-wrap {
  padding-top: 64px;
}
.featured-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.featured-products-heading h3 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  margin-top: 7px;
}
.featured-view-all {
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: none;
  color: var(--text);
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-view-all i {
  margin-left: 8px;
  color: var(--gold);
  transition: transform 0.25s;
}
.featured-view-all:hover i {
  transform: translateX(5px);
}
.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.featured-product-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--charcoal);
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}
.featured-product-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #222226, #0b0b0c);
}
.featured-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 32px;
  object-fit: scale-down;
  object-position: center;
  transform: scale(1.08);
  transition:
    transform 0.55s var(--ease),
    filter 0.55s var(--ease);
}
.featured-product-media > i {
  font-size: 76px;
  color: var(--gold);
  opacity: 0.7;
  transition: transform 0.7s var(--ease);
}
.featured-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 25%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.featured-product-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.featured-product-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.featured-product-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.05;
}
.featured-product-copy p {
  font-size: 12px;
  line-height: 1.55;
  color: #d6d1c7;
  margin: 0;
  max-width: 34ch;
}
.featured-product-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}
.featured-product-price {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.featured-product-cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.featured-product-card:hover img {
  transform: scale(1.13);
  filter: saturate(1.08) brightness(0.96);
}
.featured-product-card:hover .featured-product-media > i {
  transform: scale(1.08) rotate(-5deg);
}
.featured-product-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-product-card {
    min-height: 350px;
  }
}
@media (max-width: 600px) {
  .featured-products-wrap {
    padding-top: 42px;
  }
  .featured-products-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .featured-product-grid {
    grid-template-columns: 1fr;
  }
  .featured-product-card {
    min-height: 370px;
  }
}

/* ============ SHOP ============ */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 340px;
}
.search-box input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border 0.3s;
}
.search-box input:focus {
  border-color: var(--gold);
}
.filter-reset {
  padding: 11px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.filter-reset:hover {
  background: var(--gold);
  color: #0b0b0c;
}
.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 13px;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filters select {
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.04em;
  outline: none;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pcard.featured-focus {
  animation: featured-focus 1.6s var(--ease);
  box-shadow:
    0 0 0 3px var(--gold),
    var(--shadow);
}
@keyframes featured-focus {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.pcard-img {
  aspect-ratio: 1/1.05;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--charcoal-2), #0d0d0e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: inherit;
}
.pcard-img i {
  font-size: 52px;
  color: var(--gold);
  opacity: 0.55;
  transition: transform 0.6s var(--ease);
}
.pcard:hover .pcard-img i {
  transform: scale(1.12) rotate(-4deg);
}
.fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
  z-index: 3;
  transition: all 0.3s;
}
[data-theme="dark"] .fav {
  background: rgba(23, 23, 26, 0.85);
  color: #eee;
}
.fav.active,
.fav:hover {
  color: #c0304c;
}
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #0b0b0c;
  font-size: 10px;
  padding: 5px 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 3;
}
.tag-out {
  left: auto;
  right: 12px;
  background: #c0304c;
  color: #fff;
}
.pcard-photo {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition:
    transform 0.55s var(--ease),
    filter 0.55s var(--ease);
}
.pcard:hover .pcard-photo {
  transform: scale(1.05);
  filter: saturate(1.06);
}
@media (max-width: 600px) {
  .featured-product-media img {
    padding: 24px;
  }
}
.pcard-actions button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.pcard-actions button[disabled]:hover {
  transform: none !important;
  box-shadow: none !important;
}
.pcard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pcard-body h4 {
  font-size: 19px;
  line-height: 1.3;
}
.pcard-title-link {
  display: inline;
  text-align: left;
  font: inherit;
  line-height: inherit;
  transition: color 0.3s var(--ease);
}
.pcard-title-link:hover,
.pcard-title-link:focus-visible {
  color: var(--gold-dim);
}
.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}
.pcard-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dim);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--text);
}
.swatches {
  display: flex;
  gap: 6px;
  margin: 4px 0;
}
.swatch {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
}
.sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.size {
  border: 1px solid var(--line);
  padding: 3px 8px;
  font-size: 11px;
  color: var(--text-soft);
  cursor: pointer;
  transition: 0.3s;
}
.size:hover,
.size.sel {
  border-color: var(--gold);
  color: var(--gold);
}
.product-size-picker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-size-select {
  min-width: 110px;
  max-width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 7px 28px 7px 9px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.pcard-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.pcard-actions button {
  flex: 1;
  font-size: 10.5px;
  padding: 11px 8px;
  letter-spacing: 0.1em;
}
.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ============ CART DRAWER ============ */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
#overlay.show {
  opacity: 1;
  visibility: visible;
}
#cartDrawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: var(--bg);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}
#cartDrawer.open {
  transform: translateX(0);
}
.cart-head {
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-head h3 {
  font-size: 24px;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 28px;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item .ci-thumb {
  width: 70px;
  height: 78px;
  background: var(--charcoal-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.cart-item .ci-info {
  flex: 1;
}
.cart-item h5 {
  font-size: 16px;
  margin-bottom: 4px;
}
.ci-meta {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty button {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.ci-remove {
  margin-left: auto;
  color: var(--text-soft);
  font-size: 13px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-soft);
}
.cart-empty i {
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 16px;
}
.cart-foot {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  margin-bottom: 18px;
}
.cart-checkout-discount {
  margin: 0 0 12px;
}
.cart-discount-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: #1f8a4d;
  font-size: 13px;
  font-weight: 700;
}
.cart-foot .btn {
  width: 100%;
  justify-content: center;
}

/* ============ SERVICES ============ */
#services {
  padding-top: 70px;
  padding-bottom: 70px;
}
#services .section-head {
  margin-bottom: 36px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  max-width: 1040px;
  margin: 0 auto;
}
.serv-card {
  background: var(--bg);
  padding: 26px 24px;
  transition: 0.4s;
}
.serv-card:hover {
  background: var(--surface);
}
.serv-card i {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
}
.serv-card h4 {
  font-size: 18px;
  margin-bottom: 7px;
}
.serv-card p {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ VIDEOS ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.video-card {
  width: 100%;
  border: 0;
  padding: 0;
  aspect-ratio: 16/10;
  position: relative;
  background: linear-gradient(150deg, var(--charcoal), #0b0b0c);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201, 169, 97, 0.18),
    transparent 65%
  );
  opacity: 0.6;
  transition: 0.5s;
}
.video-card:hover::after {
  opacity: 1;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: 0.4s;
  z-index: 1;
}
.video-card:hover .play-btn {
  background: var(--gold);
  color: #0b0b0c;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #f7f4ee;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  z-index: 1;
}
.video-platform {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 20px;
  background: rgba(11,11,12,.72);
  color: #f7f4ee;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.video-platform i {
  color: var(--gold-bright);
  font-size: 12px;
}
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

#videoModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
#videoModal.show {
  opacity: 1;
  visibility: visible;
}
.video-modal-box {
  width: min(820px, 90vw);
  aspect-ratio: 16/9;
  background: var(--charcoal);
  border: 1px solid var(--line);
  position: relative;
  overflow: visible;
}
.video-modal-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050505;
}
.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
}
.video-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  padding: 42px 22px 16px;
  background: linear-gradient(transparent,rgba(0,0,0,.85));
}
.video-external {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  text-align: center;
}
.video-external i {
  color: var(--gold);
  font-size: 36px;
}
.video-external p {
  color: #c9c5b8;
  font-size: 14px;
}
.video-modal-box .video-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: #f7f4ee;
  font-size: 22px;
  cursor: pointer;
}

/* ============ APPOINTMENT ============ */
.appt {
  background: var(--charcoal);
  color: #f2efe8;
  position: relative;
  overflow: hidden;
}
.appt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 20%,
    rgba(201, 169, 97, 0.12),
    transparent 50%
  );
}
.appt .section-head h2 {
  color: #f7f4ee;
}
.appt .section-head p {
  color: #b9b4a8;
}
.appt-form {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.fgroup {
  position: relative;
}
.fgroup.full {
  grid-column: 1/-1;
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
  padding: 14px 0 10px;
  color: #f2efe8;
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  outline: none;
  transition: border 0.3s;
}
.fgroup textarea {
  resize: vertical;
  min-height: 60px;
}
.fgroup label {
  position: absolute;
  left: 0;
  top: 14px;
  color: #8a8781;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  border-color: var(--gold);
}
.fgroup input:focus ~ label,
.fgroup input:not(:placeholder-shown) ~ label,
.fgroup textarea:focus ~ label,
.fgroup textarea:not(:placeholder-shown) ~ label,
.fgroup select ~ label {
  top: -14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.fgroup select {
  color: #f2efe8;
}
.appt-form .btn {
  margin-top: 36px;
}
.appointment-cta {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 30px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  background: rgba(255, 255, 255, 0.035);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.appointment-cta > i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(201, 169, 97, 0.35);
  font-size: 20px;
}
.appointment-cta h3 {
  color: #f7f4ee;
  font-size: 24px;
  margin-bottom: 4px;
}
.appointment-cta p {
  color: #b9b4a8;
  font-size: 13px;
  line-height: 1.6;
}
.appointment-overlay {
  padding: 20px;
}
.appointment-box {
  width: min(820px, 94vw);
  max-height: 94vh;
  overflow-y: auto;
  background: var(--charcoal);
  border-color: rgba(201, 169, 97, 0.35);
  color: #f2efe8;
}
.appointment-box .auth-close {
  color: #d8d2c5;
}
.appointment-modal-heading {
  margin-bottom: 30px;
  padding-right: 36px;
}
.appointment-modal-heading h3 {
  color: #f7f4ee;
  font-size: 34px;
}
.appointment-modal-heading p {
  color: #b9b4a8;
  font-size: 13px;
}
.appointment-box .fgroup select option {
  color: #171719;
  background: #f7f4ee;
}

/* ============ REVIEWS ============ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.rcard {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  transition: 0.4s;
}
.rcard:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.rcard .stars {
  margin-bottom: 14px;
}
.rcard p {
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}
.rcard-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  color: #0b0b0c;
  font-size: 17px;
  font-weight: 600;
}
.rcard-who b {
  font-size: 14px;
  display: block;
}
.rcard-who span {
  font-size: 11px;
  color: var(--text-soft);
}
.review-grid:empty::after {
  content: "Accepted customer reviews will appear here.";
  grid-column: 1/-1;
  padding: 30px;
  border: 1px dashed var(--line);
  color: var(--text-soft);
  text-align: center;
}
.review-page-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.review-page-section .section-head p {
  margin-top: 10px;
  color: var(--text-soft);
}
.review-submit-form {
  margin: 46px auto 0;
  max-width: 920px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(320px, 1.2fr);
  gap: 34px;
}
.review-overlay {
  padding: 20px;
}
.review-modal-box {
  width: min(1080px, 95vw);
  max-height: 94vh;
  overflow-y: auto;
  padding: 38px;
}
.review-modal-heading {
  padding-right: 38px;
  margin-bottom: 26px;
}
.review-modal-heading h3 {
  font-size: 36px;
  margin: 4px 0 6px;
}
.review-modal-heading p {
  color: var(--text-soft);
  font-size: 13px;
}
.review-modal-box .review-submit-form {
  margin-top: 34px;
}
.review-submit-form h3 {
  font-size: 30px;
  margin: 4px 0 8px;
}
.review-submit-form p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}
.review-form-fields {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 16px;
}
.review-form-fields label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-form-fields .full {
  grid-column: 1/-1;
}
.review-form-fields input,
.review-form-fields select,
.review-form-fields textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: 14px "Manrope", sans-serif;
  outline: none;
}
.review-form-fields input:focus,
.review-form-fields select:focus,
.review-form-fields textarea:focus {
  border-color: var(--gold);
}
.review-star-picker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.review-star-picker button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(201, 169, 97, 0.35);
  font-size: 21px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.review-star-picker button:hover,
.review-star-picker button.active {
  color: var(--gold);
}
.review-star-picker button:hover {
  transform: translateY(-2px);
}
.review-form-fields textarea {
  min-height: 105px;
  resize: vertical;
}
.review-form-fields .btn {
  grid-column: 1/-1;
  justify-self: start;
}
@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-submit-form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .appointment-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .appointment-cta > i,
  .appointment-cta .btn {
    margin: 0 auto;
  }
  .appointment-box {
    padding: 34px 22px;
  }
  .appointment-box .form-grid,
  .review-form-fields {
    grid-template-columns: 1fr;
  }
  .review-submit-form {
    padding: 24px 18px;
  }
  .review-modal-box {
    width: 96vw;
    padding: 32px 16px 20px;
  }
}

/* ============ STATS ============ */
.stats {
  background: var(--black);
  color: #f2efe8;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 30px;
  border-left: 1px solid rgba(201, 169, 97, 0.2);
}
.stat-item:first-child {
  border-left: none;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: var(--gold-bright);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b9b4a8;
  margin-top: 8px;
}
@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-left: none;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
  }
}

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-item i {
  font-size: 24px;
  color: var(--gold);
  margin-top: 4px;
}
.why-item h4 {
  font-size: 19px;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ GALLERY ============ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 8px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: linear-gradient(150deg, var(--charcoal-2), #0b0b0c);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-item:nth-child(3n + 1) {
  grid-row: span 2;
}
.gal-item i {
  color: var(--gold);
  font-size: 26px;
  opacity: 0.5;
  transition: transform 0.5s var(--ease);
}
.gal-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: filter 0.6s var(--ease);
}
.gal-item > span {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 14px 12px;
  color: #fff;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.76));
}
.gal-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #f7f4ee;
  opacity: 0;
  transition: 0.4s;
  font-size: 18px;
}
.gal-item:hover::after {
  opacity: 1;
}
.gal-item:hover i {
  transform: scale(1.2);
}
.gal-item:hover img {
  filter: brightness(0.9);
}
@media (max-width: 900px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
#lightbox.show {
  opacity: 1;
  visibility: visible;
}
.lb-box {
  width: min(920px, 90vw);
  max-height: 85vh;
  background: linear-gradient(150deg, var(--charcoal-2), #0b0b0c);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.lb-box i {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.5;
}
.lb-box figure {
  margin: 0;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-box img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}
.lb-box figcaption {
  width: 100%;
  padding: 12px 18px;
  color: #f7f4ee;
  background: #111;
  font-size: 13px;
  text-align: center;
}
.lb-close {
  position: fixed;
  top: 30px;
  right: 36px;
  color: #f7f4ee;
  font-size: 24px;
  cursor: pointer;
}

/* ============ FAQ ============ */
#faq {
  padding-top: 70px;
  padding-bottom: 70px;
}
#faq .section-head {
  margin-bottom: 30px;
}
.faq-list {
  max-width: 620px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 15px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  text-align: left;
}
.faq-q span {
  min-width: 0;
}
.faq-q i {
  color: var(--gold);
  transition: transform 0.4s var(--ease);
  font-size: 12px;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 4px 16px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
}
.ccard {
  background: var(--bg);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.ccard i {
  font-size: 20px;
  color: var(--gold);
  width: 24px;
}
.ccard b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 3px;
}
.ccard span {
  font-size: 16px;
}
.map-embed {
  border: 1px solid var(--line);
  min-height: 280px;
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: #c9c5b8;
  padding: 80px 0 30px;
}
.footer-section-head {
  margin-bottom: 22px;
}
.footer-section-head .eyebrow {
  margin-bottom: 8px;
}
.footer-section-head h3 {
  color: #f7f4ee;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}
.footer-why,
.footer-reviews,
.footer-contact {
  border-bottom: 1px solid rgba(201, 169, 97, 0.22);
  margin-bottom: 46px;
  padding-bottom: 46px;
}
.footer-reviews .review-grid {
  gap: 14px;
  margin-top: 22px;
}
.footer-reviews .rcard {
  background: #101012;
  border-color: rgba(201, 169, 97, 0.22);
  padding: 20px;
}
.footer-reviews .rcard:hover {
  border-color: rgba(201, 169, 97, 0.48);
}
.footer-reviews .rcard p {
  color: #a7a195;
  font-size: 13px;
  line-height: 1.6;
}
.footer-reviews .rcard-who b {
  color: #f7f4ee;
}
.footer-reviews .rcard-who span {
  color: #8a8781;
}
.footer-reviews .review-grid:empty::after {
  border-color: rgba(201, 169, 97, 0.26);
  color: #8a8781;
}
.footer-reviews .review-page-actions {
  justify-content: flex-start;
  margin-top: 24px;
}
.footer-reviews > .section-reveal-btn {
  margin-top: 4px;
}
.footer-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.footer-why-grid > div {
  border: 1px solid rgba(201, 169, 97, 0.22);
  padding: 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.035);
}
.footer-why-grid i {
  color: var(--gold);
  font-size: 18px;
}
.footer-why-grid strong {
  color: #f7f4ee;
  font-size: 14px;
}
.footer-why-grid span {
  color: #8a8781;
  font-size: 12px;
  line-height: 1.55;
}
.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
}
.footer-contact .contact-cards {
  background: rgba(201, 169, 97, 0.22);
}
.footer-contact .ccard {
  background: #101012;
  color: #f7f4ee;
  padding: 20px 22px;
}
.footer-contact .ccard span,
.footer-contact .ccard a {
  color: #d9d3c6;
}
.footer-contact .map-embed {
  height: clamp(190px, 22vw, 240px);
  min-height: 0;
  border-color: rgba(201, 169, 97, 0.3);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.foot-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #f7f4ee;
  margin-bottom: 14px;
}
footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #8a8781;
}
footer h5 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7f4ee;
  margin-bottom: 20px;
}
footer ul li {
  margin-bottom: 12px;
  font-size: 14px;
}
footer ul a:hover {
  color: var(--gold);
}
.footer-quick-links,
.footer-product-links {
  min-width: 0;
}
.quick-links-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.quick-links-list li {
  margin: 0;
  font-size: 13px;
}
.quick-links-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 169, 97, 0.24);
  background: rgba(255, 255, 255, 0.035);
  color: #d8d1c2;
  white-space: nowrap;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.quick-links-list a:hover {
  background: rgba(201, 169, 97, 0.16);
  border-color: rgba(201, 169, 97, 0.5);
}
.product-links-list {
  gap: 12px;
}
.product-links-list a {
  min-height: 44px;
  padding: 9px 14px 9px 10px;
  border-color: rgba(232, 200, 116, 0.3);
  background:
    linear-gradient(135deg, rgba(201, 169, 97, 0.13), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  color: #f2efe8;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.product-links-list a i {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold-bright);
  font-size: 12px;
  flex: 0 0 auto;
}
.product-links-list a:hover {
  color: #fff7df;
  background:
    linear-gradient(135deg, rgba(201, 169, 97, 0.24), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.social-row a:hover {
  background: var(--gold);
  color: #0b0b0c;
}
.news-form {
  display: flex;
  margin-top: 14px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.35);
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 0;
  color: #f2efe8;
  outline: none;
  font-size: 13px;
}
.news-form button {
  color: var(--gold);
  font-size: 14px;
}
.foot-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  padding-top: 26px;
  text-align: center;
  font-size: 13px;
  color: #6f6c65;
}
.foot-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: -26px;
  margin-bottom: 28px;
  color: #8f887d;
  font-size: 12px;
}
.foot-policy-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-why-grid,
  .footer-reviews .review-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact .map-embed {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .footer-why-grid,
  .footer-reviews .review-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-why,
  .footer-reviews,
  .footer-contact {
    margin-bottom: 34px;
    padding-bottom: 34px;
  }
}

/* ============ FLOATING BUTTONS ============ */
.float-btn {
  position: fixed;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease);
}
.float-btn:hover {
  transform: scale(1.08);
}
#waFloat {
  bottom: 28px;
  left: 28px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
}
#chatFloat {
  bottom: 98px;
  right: 28px;
  background: var(--black);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  font-size: 20px;
}
.chat-unread-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 20px;
  background: #c0304c;
  color: #fff;
  border: 2px solid var(--surface);
  font-size: 9px;
  line-height: 16px;
  font-weight: 800;
}
#refreshBtn {
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
}
#refreshBtn i {
  color: var(--gold);
  font-size: 14px;
}
#refreshBtn span {
  display: none;
}
#refreshBtn.refreshing {
  pointer-events: none;
  opacity: 0.8;
}
#refreshBtn.refreshing i {
  animation: refreshSpin 0.55s linear infinite;
}
@keyframes refreshSpin {
  to {
    transform: rotate(360deg);
  }
}
#topBtn {
  bottom: 168px;
  right: 28px;
  background: var(--gold);
  color: #0b0b0c;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
#topBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#themeToggle {
  font-size: 15px;
}
@media (max-width: 430px) {
  .nav-icons .nav-feature-action:not(.nav-wishlist-action) {
    display: none;
  }
}
@media (max-width: 600px) {
  .float-btn {
    width: 50px;
    height: 50px;
  }
  #waFloat {
    bottom: 18px;
    left: 18px;
  }
  #chatFloat {
    bottom: 82px;
    right: 18px;
  }
  #refreshBtn {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
  #topBtn {
    bottom: 146px;
    right: 18px;
  }
}

/* ============ REAL-TIME CUSTOMER SUPPORT CHAT ============ */
.chat-overlay {
  z-index: 1750;
}
.support-chat-box {
  width: min(430px, calc(100vw - 24px));
  height: min(680px, calc(var(--support-chat-viewport-height, 100dvh) - 32px));
  max-height: calc(var(--support-chat-viewport-height, 100dvh) - 32px);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
}
.support-chat-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--black);
  color: #f7f4ee;
  border-bottom: 1px solid rgba(201,169,97,.3);
}
.support-chat-head span,
.support-chat-head small {
  display: block;
}
.support-chat-head span {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
}
.support-chat-head small {
  margin-top: 3px;
  color: #aaa69d;
  font-size: 10px;
}
.support-chat-head button {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(201,169,97,.35);
  border-radius: 50%;
  color: var(--gold);
}
.support-chat-start {
  flex: 1;
  overflow-y: auto;
  padding: 34px 28px;
}
.support-chat-start > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 22px;
}
.support-chat-start h3,
.support-chat-start > p {
  text-align: center;
}
.support-chat-start > p {
  margin: 6px 0 24px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}
.support-chat-conversation {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.support-chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  background: var(--bg-alt);
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.support-chat-messages::-webkit-scrollbar {
  width: 7px;
}
.support-chat-messages::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--gold);
}
.support-chat-welcome {
  max-width: 90%;
  margin: 0 auto 18px;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.support-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 9px 0;
}
.support-message.customer {
  align-items: flex-end;
}
.support-message p {
  max-width: 82%;
  padding: 11px 13px;
  border-radius: 12px 12px 12px 3px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.support-message.customer p {
  border-color: var(--black);
  border-radius: 12px 12px 3px 12px;
  background: var(--black);
  color: #f7f4ee;
}
.support-message-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 82%;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
  white-space: normal;
}
.support-message-meta span {
  color: var(--gold-dim);
  font-weight: 700;
}
.support-message-meta span::after {
  content: "·";
  margin-left: 5px;
  color: var(--text-soft);
}
.support-message.customer .support-message-meta {
  justify-content: flex-end;
  text-align: right;
}
.support-chat-date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 12px;
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}
.support-chat-date::before,
.support-chat-date::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.support-chat-compose {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) 46px;
  gap: 10px;
  padding: 14px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.support-chat-turn-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold-dim);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.support-chat-compose.waiting-turn .support-chat-turn-status {
  color: var(--text-soft);
}
.support-chat-compose textarea {
  width: 100%;
  min-width: 0;
  resize: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  min-height: 52px;
  background: var(--surface);
  color: var(--text);
  caret-color: var(--gold-dim);
  font: 500 16px/1.5 "Manrope", sans-serif;
  outline: none;
}
.support-chat-compose textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,169,97,.16);
}
.support-chat-compose button {
  align-self: stretch;
  border-radius: 6px;
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
}
.support-chat-compose textarea:disabled,
.support-chat-compose button:disabled {
  cursor: not-allowed;
  opacity: .55;
}
.support-chat-compose textarea:disabled {
  background: #eeeae1;
}
.support-chat-new {
  flex: 0 0 auto;
  padding: 9px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--gold-dim);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media(max-width:600px){
  .support-chat-box {
    width: 100%;
    height: calc(var(--support-chat-viewport-height, 100dvh) - 24px);
    max-height: calc(var(--support-chat-viewport-height, 100dvh) - 24px);
    margin: 0;
  }
  .support-chat-messages {
    padding: 16px 12px;
    scrollbar-gutter: auto;
  }
  .support-message p,
  .support-message-meta {
    max-width: 88%;
  }
  .support-chat-start {
    padding: 28px 20px;
  }
  .support-chat-compose textarea {
    font-size: 16px;
  }
}

/* ============ MOTIVATIONAL POPUP ============ */
#motivPopup {
  position: fixed;
  bottom: 82px;
  left: 28px;
  width: min(240px, calc(100vw - 56px));
  background:
    linear-gradient(145deg, rgba(201, 169, 97, 0.1), transparent 42%),
    var(--surface);
  border: 1px solid var(--gold);
  padding: 5px;
  z-index: 950;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s var(--ease);
}
#motivPopup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.motiv-frame {
  position: relative;
  border: 1px solid rgba(201, 169, 97, 0.5);
  padding: 9px 10px 10px;
}
.motiv-frame::before,
.motiv-frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.motiv-frame::before {
  top: 5px;
  left: 5px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.motiv-frame::after {
  right: 5px;
  bottom: 5px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.motiv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.motiv-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.motiv-brand img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.motiv-close {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease;
}
.motiv-close:hover {
  color: var(--gold);
  background: rgba(201, 169, 97, 0.1);
}
.motiv-label {
  display: none;
  margin: 0;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
#motivText {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 6px;
  padding-right: 34px;
}
.motiv-download {
  position: absolute;
  right: 9px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 0;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 97, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}
.motiv-download span {
  display: none;
}
.motiv-download:hover {
  color: #0b0b0c;
  background: var(--gold);
}
.motiv-download:disabled {
  opacity: 0.6;
  cursor: wait;
}
@media (max-width: 600px) {
  #motivPopup {
    left: 16px;
    right: 16px;
    width: min(240px, calc(100vw - 32px));
    bottom: 78px;
  }
}

/* toast */
#toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: #f2efe8;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.03em;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  border: 1px solid var(--gold);
}
#toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 760px) {
  .section {
    padding: 80px 0;
  }
  h1 {
    font-size: 60px;
  }
}
::selection {
  background: var(--gold);
  color: #0b0b0c;
}

/* ============ CLASSES REPLACING FORMER INLINE STYLES ============ */
.section-tight-bottom {
  padding-bottom: 120px;
}
.section-alt-bg {
  background: var(--bg-alt);
}
.panel-close {
  cursor: pointer;
  font-size: 18px;
}
.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: var(--bg);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}
.side-drawer.open {
  transform: translateX(0);
}
.product-quick-view {
  width: min(520px, 94vw);
}
.product-quick-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 30px;
}
.product-quick-media {
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, var(--charcoal-2), #0d0d0e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.product-quick-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-quick-media i {
  font-size: 68px;
  color: var(--gold);
  opacity: 0.7;
}
.product-quick-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-quick-copy .eyebrow {
  margin-bottom: 0;
}
.product-quick-copy h4 {
  font-size: clamp(30px, 7vw, 42px);
  line-height: 1;
}
.product-quick-copy p {
  color: var(--text-soft);
  line-height: 1.7;
}
.product-quick-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--text);
}
.product-quick-swatches {
  display: flex;
  gap: 8px;
}
.product-quick-size {
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.product-quick-status {
  color: #2f7d46;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-quick-status.out {
  color: #c0304c;
}
.product-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.product-quick-actions button:last-child {
  grid-column: 1 / -1;
}
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.96);
  z-index: 1500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.search-inner {
  width: min(600px, 88vw);
  position: relative;
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold);
  color: #f7f4ee;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  padding: 12px 0;
  outline: none;
}
.search-results {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-result-row {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  color: #f2efe8;
  display: flex;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.search-result-row .price {
  color: var(--gold);
}
.search-empty {
  color: #8a8781;
}
.shop-empty {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-soft);
  padding: 40px 0;
}
.search-close {
  position: absolute;
  top: 0;
  right: -40px;
  color: #f7f4ee;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .search-close {
    top: -40px;
    right: 0;
  }
}
.video-modal-title {
  font-size: 26px;
  color: #f7f4ee;
}

/* ============ ACCOUNT (SIGNUP / LOGIN / MY ACCOUNT) ============ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.7);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.auth-overlay.show {
  opacity: 1;
  visibility: visible;
}
body.modal-open {
  overflow: hidden;
}
.auth-box {
  width: min(420px, 90vw);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow);
}
.auth-box h3 {
  font-size: 28px;
  margin-bottom: 6px;
}
.auth-box p.auth-sub {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 24px;
}
.auth-close {
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  color: var(--text-soft);
  font-size: 18px;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.auth-field span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.auth-field input {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  outline: none;
}
.auth-field textarea {
  border: 1px solid var(--line);
  padding: 10px;
  background: transparent;
  resize: vertical;
  color: var(--text);
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  outline: none;
}
.auth-field input:focus,
.auth-field textarea:focus {
  border-color: var(--gold);
}
.auth-error {
  color: #c0304c;
  font-size: 13px;
  min-height: 16px;
  margin-bottom: 10px;
}
.auth-success {
  color: #1f8a4d;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.auth-box .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.policy-overlay {
  padding: 18px;
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.policy-box.auth-box {
  width: min(720px, calc(100vw - 28px));
  max-height: min(760px, calc(100dvh - 36px));
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.policy-box .eyebrow {
  margin-bottom: 10px;
}
.policy-box h3 {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  margin-bottom: 18px;
}
.policy-body {
  overflow-y: auto;
  padding-right: 8px;
  color: var(--text-soft);
  line-height: 1.75;
}
.policy-body p + p {
  margin-top: 14px;
}
.policy-back-btn {
  flex: 0 0 auto;
  margin-top: 24px;
}
.auth-switch {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  color: var(--text-soft);
}
.auth-switch a {
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
}

.account-drawer .account-head {
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
}
.account-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  flex: 1;
}
.account-profile-card,
.account-panel,
.account-actions {
  border: 1px solid var(--line);
  background: var(--surface);
}
.account-profile-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
}
.account-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  color: #0b0b0c;
  font-size: 26px;
  font-weight: 600;
}
.account-kicker {
  display: block;
  color: var(--gold-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.account-profile-card h4,
.account-section-head h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 1.05;
}
.account-profile-card h4 {
  font-size: 28px;
}
.account-profile-card p {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.account-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.account-row {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  border-bottom: 0;
  background: var(--surface);
}
.account-row span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.account-row b {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.account-panel {
  padding: 18px;
}
.account-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.account-section-head h4 {
  font-size: 26px;
}
.account-section-head > i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.account-signed-out {
  padding: 40px 30px;
  text-align: center;
  color: var(--text-soft);
}
.account-signed-out i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 16px;
}
.account-signed-out .btn {
  width: 100%;
  margin-top: 18px;
  justify-content: center;
}
.account-tracking-form {
  gap: 10px;
  margin-top: 0;
}
.account-tracking-form .tracking-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}
.account-tracking-form .tracking-search input {
  min-width: 0;
}
.account-tracking-form .tracking-search .btn {
  padding-left: 16px;
  padding-right: 16px;
}
.account-tracking-result {
  min-height: 170px;
  padding: 18px;
  margin-top: 14px;
  background: #101012;
  color: #f2efe8;
}
.account-tracking-result .tracking-head {
  gap: 12px;
}
.account-tracking-result .tracking-current {
  padding: 13px 0;
}
.account-tracking-result .tracking-head strong,
.account-tracking-result .tracking-current b,
.account-tracking-result .tracking-step b,
.account-tracking-result .tracking-summary-grid b {
  color: #f7f4ee;
}
.account-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
}

/* ============ APPOINTMENT — CONTACT METHOD CHOICE ============ */
.contact-method {
  grid-column: 1/-1;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 6px;
}
.contact-method span.cm-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8781;
}
.cm-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #f2efe8;
  font-size: 14px;
}
.cm-option input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.cm-option i {
  color: var(--gold);
}

/* ============ ORDER CHECKOUT & STATUS TRACKING ============ */
.checkout-box {
  max-height: 92vh;
  overflow-y: auto;
}
.checkout-discount {
  margin: 4px 0 18px;
}
.checkout-discount > label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.discount-entry {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color 0.25s;
}
.discount-entry:focus-within {
  border-color: var(--gold);
}
.discount-entry > i {
  padding-left: 14px;
  color: var(--gold);
}
.discount-entry input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.discount-entry button {
  align-self: stretch;
  padding: 0 16px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.discount-entry button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.discount-feedback {
  min-height: 19px;
  padding-top: 6px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}
.discount-feedback.success {
  color: #1f8a4d;
}
.discount-feedback.error {
  color: #c0304c;
}
.checkout-price-summary {
  margin: 0 0 18px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.checkout-send-method {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 2px 0 18px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.checkout-send-method > span {
  width: 100%;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-send-method label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
}
.checkout-send-method input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}
.checkout-send-method i {
  color: var(--gold);
}
.checkout-send-hint {
  margin: -7px 0 18px;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.6;
}
.checkout-price-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 13px;
}
.checkout-price-summary strong {
  color: var(--text);
}
.checkout-price-summary .checkout-discount-row,
.checkout-price-summary .checkout-discount-row strong {
  color: #1f8a4d;
}
.checkout-price-summary .checkout-grand-total {
  margin-top: 3px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
.tracking-section {
  background: var(--charcoal);
  color: #f2efe8;
}
.tracking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}
.tracking-copy h2 {
  font-size: 48px;
  margin: 10px 0 16px;
}
.tracking-copy > p {
  color: #aaa69d;
  line-height: 1.8;
  max-width: 520px;
}
.tracking-form {
  margin-top: 34px;
}
.tracking-form > label {
  display: block;
  color: #aaa69d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.tracking-search {
  display: flex;
  border-bottom: 1px solid rgba(201, 169, 97, 0.45);
}
.tracking-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #f7f4ee;
  padding: 13px 4px;
  outline: none;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tracking-search .btn {
  flex-shrink: 0;
}
.tracking-error {
  color: #e89494;
  font-size: 13px;
  min-height: 20px;
  margin-top: 10px;
}
.tracking-result {
  background: #151517;
  border: 1px solid rgba(201, 169, 97, 0.24);
  min-height: 330px;
  padding: 30px;
}
.tracking-placeholder {
  min-height: 268px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #77736c;
  text-align: center;
  gap: 16px;
}
.tracking-placeholder i {
  font-size: 42px;
  color: var(--gold);
  opacity: 0.65;
}
.tracking-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}
.tracking-head small {
  display: block;
  color: #77736c;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 4px;
}
.tracking-head strong {
  font-family: "Cormorant Garamond", serif;
  color: #f7f4ee;
  font-size: 23px;
}
.tracking-status {
  align-self: flex-start;
  background: var(--gold);
  color: #0b0b0c;
  padding: 6px 11px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tracking-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0 4px;
  background: rgba(201, 169, 97, 0.18);
}
.tracking-summary-grid > div {
  min-width: 0;
  padding: 13px;
  background: rgba(255, 255, 255, 0.035);
}
.tracking-summary-grid small {
  display: block;
  color: #77736c;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 5px;
}
.tracking-summary-grid b {
  display: block;
  color: #f7f4ee;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.tracking-current {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 24px 0;
}
.tracking-current > i {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.tracking-current small {
  display: block;
  color: #77736c;
  margin-bottom: 4px;
}
.tracking-current b {
  display: block;
  color: #f7f4ee;
  line-height: 1.4;
}
.tracking-current time {
  display: block;
  color: #918d85;
  font-size: 12px;
  margin-top: 5px;
}
.tracking-timeline {
  position: relative;
  margin-top: 4px;
  padding-left: 17px;
}
.tracking-step {
  position: relative;
  padding: 0 0 22px 25px;
  border-left: 1px solid rgba(201, 169, 97, 0.25);
}
.tracking-step:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.tracking-step::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  left: -5px;
  top: 5px;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}
.tracking-step b {
  display: block;
  color: #f2efe8;
  font-size: 13px;
}
.tracking-step span {
  display: block;
  color: #aaa69d;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 3px;
}
.tracking-step time {
  display: block;
  color: #68655f;
  font-size: 11px;
  margin-top: 5px;
}
.tracking-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  margin-top: 24px;
  padding-top: 22px;
}
.tracking-actions span {
  font-size: 11px;
  color: #77736c;
}
.account-order {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  cursor: pointer;
  transition: 0.25s;
  background: var(--bg);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.account-order:hover {
  border-color: var(--gold);
  background: var(--surface);
  transform: translateY(-2px);
}
.account-order.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.12), var(--surface));
  box-shadow: 0 12px 32px -24px rgba(0, 0, 0, 0.45);
}
.account-order.selected .account-order-view {
  color: var(--gold-dim);
}
.account-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.account-order-id {
  min-width: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  overflow-wrap: anywhere;
}
.account-order-status {
  flex: 0 0 auto;
  background: var(--gold);
  color: #0b0b0c;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.account-order-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  color: var(--text-soft);
  font-size: 11px;
}
.account-order-meta span,
.account-order-view {
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-order-meta i {
  width: 14px;
  color: var(--gold-dim);
}
.account-order-view {
  align-self: flex-start;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.account-orders-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-order-loading {
  display: block;
  padding: 16px;
  border: 1px dashed var(--line);
  background: var(--bg);
  font-size: 12px;
  color: var(--text-soft);
  text-align: center;
}
@media (max-width: 850px) {
  .tracking-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .tracking-copy h2 {
    font-size: 40px;
  }
}
@media (max-width: 520px) {
  .account-body {
    padding-top: 18px;
    gap: 14px;
  }
  .account-profile-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .account-info-grid {
    grid-template-columns: 1fr;
  }
  .account-panel {
    padding: 15px;
  }
  .account-section-head h4 {
    font-size: 24px;
  }
  .account-order-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-order-status {
    max-width: 100%;
  }
  .tracking-search {
    display: block;
    border: 0;
  }
  .tracking-search input {
    width: 100%;
    border-bottom: 1px solid rgba(201, 169, 97, 0.45);
  }
  .tracking-search .btn {
    width: 100%;
    margin-top: 12px;
  }
  .tracking-result {
    padding: 22px;
  }
  .tracking-head {
    display: block;
  }
  .tracking-status {
    display: inline-block;
    margin-top: 12px;
  }
  .tracking-actions .btn {
    width: 100%;
  }
}

/* ============ SMALL-SCREEN FIT & INPUT AUTO-ZOOM PREVENTION ============ */
@media (max-width: 760px) {
  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .hero-content {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-content h1 {
    font-size: clamp(42px, 15vw, 60px);
    overflow-wrap: anywhere;
  }
  .hero-content .tagline {
    margin: 18px 0 30px;
  }
  .side-drawer,
  #cartDrawer,
  .account-drawer {
    width: 100%;
    max-width: 100%;
  }
  .cart-head,
  .cart-foot,
  .account-drawer .account-head,
  .account-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .cart-items {
    padding-left: 18px;
    padding-right: 18px;
  }
  .auth-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: max(16px, env(safe-area-inset-top)) 12px max(16px, env(safe-area-inset-bottom));
  }
  .auth-box,
  .checkout-box {
    width: 100%;
    max-width: 520px;
    max-height: none;
    margin: auto 0;
    padding: 30px 20px 24px;
  }
  .appointment-box,
  .review-modal-box {
    width: calc(100% - 24px);
    max-width: 100%;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }
  .video-modal-box {
    width: calc(100% - 24px);
    max-width: 100%;
  }
  .tracking-layout,
  .tracking-result,
  .tracking-head,
  .tracking-summary-grid,
  .tracking-current,
  .tracking-actions {
    min-width: 0;
    max-width: 100%;
  }
  .tracking-summary-grid {
    grid-template-columns: 1fr;
  }
  .tracking-head strong,
  .tracking-summary-grid b,
  .tracking-current b,
  .account-row b,
  .account-order {
    overflow-wrap: anywhere;
  }
  #toast {
    width: calc(100% - 24px);
    max-width: 520px;
    padding: 12px 14px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .container.nav-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .logo-name {
    font-size: 16px;
  }
  .nav-icons {
    gap: 9px;
  }
  .hero-content h1 {
    font-size: clamp(38px, 14vw, 52px);
  }
  .hero-btns {
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-stats div,
  .about-stats div:first-child {
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .about-stats div:first-child {
    border-top: 0;
  }
  .pcard-actions {
    flex-direction: column;
  }
  #refreshBtn span {
    display: none;
  }
  #refreshBtn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
  }
}

/* Keep chat dimensions after the generic auth-modal rules above. */
.support-chat-box.auth-box {
  width: min(430px, calc(100vw - 24px));
  height: min(680px, calc(var(--support-chat-viewport-height, 100dvh) - 32px));
  max-width: 430px;
  max-height: calc(var(--support-chat-viewport-height, 100dvh) - 32px);
  padding: 0;
  overflow: hidden;
}
.chat-overlay.auth-overlay {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
}
@media(max-width:600px){
  .chat-overlay.auth-overlay {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 8px;
  }
  .support-chat-box.auth-box {
    width: 100%;
    max-width: 100%;
    height: calc(var(--support-chat-viewport-height, 100dvh) - 16px);
    max-height: calc(var(--support-chat-viewport-height, 100dvh) - 16px);
    margin: 0;
    padding: 0;
  }
}
