:root {
  --gold: #c9a96e;
  --gold-dark: #b8924f;
  --text: #333;
  --border: #e8e8e8;
  --gray: #999;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Lato', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

/* ── ANN BAR ── */
.ann-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: #666;
}

.ann-bar .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}

.ann-bar a {
  color: var(--gold);
  font-weight: 600;
}

.ann-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ann-drop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #4f5d54;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(18, 63, 49, 0.08);
  background: rgba(255, 255, 255, 0.88);
  transition: color .2s, transform .2s, border-color .2s, box-shadow .2s, background .2s;
}

.ann-drop:hover {
  color: #0f3a2d;
  transform: translateY(-1px);
  border-color: rgba(201, 169, 110, 0.42);
  box-shadow: 0 10px 22px rgba(18, 63, 49, 0.08);
}

.ann-drop:first-child {
  margin-left: 0;
}

.ann-drop i {
  font-size: 11px;
  color: #b8924f;
}

.ann-drop-primary {
  color: #fff;
  border-color: rgba(18, 63, 49, 0.1);
  background: linear-gradient(135deg, #024530 0%, #056b4c 62%, #b8924f 160%);
  box-shadow: 0 12px 24px rgba(2, 69, 48, 0.16);
}

.ann-drop-primary i {
  color: rgba(255, 255, 255, 0.86);
}

.ann-drop-primary:hover {
  color: #fff;
  border-color: rgba(18, 63, 49, 0.1);
}

.ann-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.18);
  color: #8b6234;
  font-style: normal;
  letter-spacing: 0;
  font-size: 10px;
}

.ann-drop-primary .ann-count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ── HEADER ── */
.site-header {
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.site-header .d-flex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hdr-item {
  display: flex;
  flex-direction: column;
}

.hdr-item:first-child {
  padding-right: 30px;
  border-right: 1px solid var(--border);
}

.category-showcase-section {
  padding: 36px 0 28px;
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 169, 110, 0.12), transparent 22%),
    radial-gradient(circle at 88% 32%, rgba(23, 55, 44, 0.07), transparent 18%),
    linear-gradient(180deg, #f9f6ef 0%, #ffffff 44%, #ffffff 100%);
}

.category-showcase-section .container {
  width: min(1540px, calc(100vw - 24px));
  max-width: min(1540px, calc(100vw - 24px));
}

.category-showcase-heading {
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: center;
}

.category-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7445;
}

.category-showcase-kicker::before,
.category-showcase-kicker::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(154, 116, 69, 0), rgba(154, 116, 69, 0.72));
}

.category-showcase-kicker::after {
  background: linear-gradient(90deg, rgba(154, 116, 69, 0.72), rgba(154, 116, 69, 0));
}

.category-showcase-title-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.category-showcase-title-row span {
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 55, 44, 0), rgba(23, 55, 44, 0.16), rgba(201, 169, 110, 0.4));
}

.category-showcase-title-row span:last-child {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.4), rgba(23, 55, 44, 0.16), rgba(23, 55, 44, 0));
}

.category-showcase-title-row h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 1;
  color: #17372c;
  font-weight: 600;
  white-space: nowrap;
}

.category-showcase-heading p {
  max-width: 700px;
  margin: 14px auto 0;
  color: #66756d;
  font-size: 14px;
  line-height: 1.75;
}

.category-showcase-shell {
  position: relative;
  width: 100%;
  padding: 0 74px;
}

.category-showcase-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.category-showcase-viewport::before,
.category-showcase-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 76px;
  z-index: 3;
  pointer-events: none;
}

.category-showcase-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0));
}

.category-showcase-viewport::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 100%);
}

.category-showcase-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 0 16px;
}

.category-showcase-track::-webkit-scrollbar {
  display: none;
}

.category-showcase-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 2.72);
  min-width: 0;
  display: grid;
  grid-template-rows: 282px minmax(0, 1fr);
  overflow: hidden;
  min-height: 446px;
  border-radius: 28px;
  text-decoration: none;
  color: #17372c;
  isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
  border: 1px solid rgba(18, 43, 35, 0.1);
  box-shadow:
    0 24px 56px rgba(18, 43, 35, 0.1),
    0 8px 20px rgba(201, 169, 110, 0.06);
  transform: translateY(0);
  scroll-snap-align: start;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms ease, border-color 360ms ease;
}

.category-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 76%;
  background: linear-gradient(180deg, rgba(8, 23, 18, 0) 0%, rgba(8, 23, 18, 0.12) 72%, rgba(8, 23, 18, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}

.category-showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 241, 231, 0), rgba(247, 241, 231, 0.84));
  opacity: 0.86;
  z-index: 3;
  pointer-events: none;
}

.category-showcase-media {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(180deg, #f4efe5 0%, #e9ece7 100%);
}

.category-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 360ms ease;
  filter: saturate(1.05) contrast(1.03);
}

.category-showcase-aura {
  position: absolute;
  inset: auto auto 126px -8px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 62%),
    radial-gradient(circle, rgba(201, 169, 110, 0.28), rgba(201, 169, 110, 0) 72%);
  filter: blur(18px);
  z-index: 3;
  pointer-events: none;
  transition: transform 420ms ease, opacity 420ms ease;
  opacity: 0.84;
}

.category-showcase-copy {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 8px;
  min-height: 0;
  align-content: start;
  padding: 16px 24px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #ffffff 42%, #f8f6f0 100%);
}

.category-showcase-copy::before {
  content: "";
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.85), rgba(23, 55, 44, 0.18));
}

.category-showcase-name {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 0.94;
  font-weight: 600;
  color: #16372c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.88em;
}

.category-showcase-sub {
  color: #5e6f66;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

.category-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 2px;
  padding-top: 4px;
  color: #17372c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-showcase-cta i {
  transition: transform 260ms ease;
}

.category-showcase-card:hover,
.category-showcase-card:focus-visible {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(18, 43, 35, 0.14),
    0 10px 26px rgba(201, 169, 110, 0.14);
  border-color: rgba(201, 169, 110, 0.36);
}

.category-showcase-card:hover .category-showcase-media img,
.category-showcase-card:focus-visible .category-showcase-media img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.08);
}

.category-showcase-card:hover .category-showcase-aura,
.category-showcase-card:focus-visible .category-showcase-aura {
  transform: translate3d(12px, -8px, 0) scale(1.08);
  opacity: 1;
}

.category-showcase-card:hover .category-showcase-cta i,
.category-showcase-card:focus-visible .category-showcase-cta i {
  transform: translateX(4px);
}

.category-showcase-card:focus-visible {
  outline: 2px solid rgba(201, 169, 110, 0.72);
  outline-offset: 4px;
}

.category-showcase-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 108px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(18, 43, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  color: #17372c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 18px 32px rgba(18, 43, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-50%);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.category-showcase-nav:disabled {
  opacity: 0.46;
  cursor: default;
  box-shadow:
    0 10px 18px rgba(18, 43, 35, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.category-showcase-nav:hover,
.category-showcase-nav:focus-visible {
  background: linear-gradient(135deg, #fffaf1 0%, #ead4ab 46%, #c89d58 100%);
  color: #17372c;
  border-color: rgba(200, 157, 88, 0.58);
  transform: translateY(calc(-50% - 2px));
  box-shadow:
    0 22px 38px rgba(132, 96, 44, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.category-showcase-nav:disabled:hover,
.category-showcase-nav:disabled:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: #17372c;
  border-color: rgba(18, 43, 35, 0.1);
  transform: translateY(-50%);
}

.category-showcase-nav:focus-visible {
  outline: 2px solid rgba(177, 136, 97, 0.56);
  outline-offset: 3px;
}

.category-showcase-nav-prev {
  left: 0;
}

.category-showcase-nav-next {
  right: 0;
}

.category-showcase-nav-label {
  white-space: nowrap;
}

.category-showcase-nav-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.category-showcase-nav-icon::before,
.category-showcase-nav-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform-origin: center;
}

.category-showcase-nav-prev .category-showcase-nav-icon::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.category-showcase-nav-prev .category-showcase-nav-icon::after {
  width: 10px;
  height: 1.5px;
  border: 0;
  background: currentColor;
  transform: translate(-10%, -50%);
}

.category-showcase-nav-next .category-showcase-nav-icon::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.category-showcase-nav-next .category-showcase-nav-icon::after {
  width: 10px;
  height: 1.5px;
  border: 0;
  background: currentColor;
  transform: translate(-90%, -50%);
}

.hdr-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.hdr-val {
  font-size: 12px;
  color: #fff;
  font-family: var(--sans);
  font-weight: 400;
}

.hdr-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  line-height: 1;
  display: flex;
  align-items: center;
}

.logo-o {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.hdr-crown {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  color: #1a1a1a;
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sq-box {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  transition: all .2s;
}

.sq-box:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.cart-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 44px;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  transition: all .2s;
}

.cart-box:hover {
  border-color: var(--gold);
}

.cart-box span {
  font-size: 12px;
  font-weight: 700;
  padding-left: 12px;
}

.cart-box .small-arr {
  font-size: 8px;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.cart-box i.fa-shopping-cart {
  font-size: 14px;
}

.cart-circle {
  background: #b18861;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-right: 8px;
}

/* ═══════════════════════════════════════════
   NAV — MEGA DROPDOWN  (Premium Rebuild)
═══════════════════════════════════════════ */

/* ── Nav bar ── */
nav.mnav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 16px rgba(2, 69, 48, 0.05);
}

nav.mnav .d-flex-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-height: 54px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Each top-level item ── */
.mnav-item {
  position: static;
  display: flex;
  align-items: stretch;
}

.mnav-item>a {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a2a2a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  position: relative;
  white-space: nowrap;
  transition: color 0.22s ease;
}

/* Sliding underline — enter from left, exit to right */
.mnav-item>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #024530, #b18861);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

/* On mouse-out — exit to right, not snap */
.mnav-item>a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #024530, #b18861);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.22s ease;
}

.mnav-item>a:hover,
.mnav-item>a.active {
  color: #024530;
}

.mnav-item>a.active {
  color: #b18861;
}

.mnav-item:hover>a::after {
  transform: scaleX(1);
}

.mnav-item>a i {
  font-size: 7px;
  opacity: 0.6;
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.26s ease;
}

.mnav-item:hover>a i {
  transform: rotate(180deg);
  opacity: 1;
}

/* ══════════════════════════════════════
   MEGA DROPDOWN
══════════════════════════════════════ */
.mega-drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  background: #fff;

  /* Entry — spring easing, slides up from -12px */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 0.18s linear,
    transform 0.18s linear,
    visibility 0.18s;
}

.mnav-item:hover .mega-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  /* In — spring bounce */
  transition:
    opacity 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}

/* Top accent bar */
.mega-drop::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #024530 0%, #157a50 40%, #b18861 80%, #d4a96a 100%);
}

/* Drop shadow below bar */
.mega-drop::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 40px rgba(2, 69, 48, 0.12);
}

/* ── Layout inside the drop ── */
.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 230px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch;
  gap: 0;
}

.mega-drop-sm .mega-inner {
  grid-template-columns: repeat(3, 1fr) 230px;
}

/* ── Columns ── */
.mega-col {
  padding: 28px 28px 30px 0;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-col+.mega-col {
  padding-left: 28px;
}

.mega-col:last-of-type {
  border-right: none;
}

/* Column heading */
.mega-col-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #024530;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}

.mega-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #024530, #b18861);
  border-radius: 1px;
}

/* Links — stagger in on :hover of the drop */
.mega-col a {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding: 6px 0;
  line-height: 1.35;
  font-weight: 400;
  position: relative;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
  border-bottom: 1px solid transparent;
}

/* Arrow indicator */
.mega-col a::before {
  content: '→';
  font-size: 11px;
  color: #b18861;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition:
    opacity 0.18s ease,
    width 0.2s ease;
}

.mega-col a:hover {
  color: #024530;
  gap: 6px;
}

.mega-col a:hover::before {
  opacity: 1;
  width: 14px;
}

/* Staggered fade-in for links when drop opens */
@keyframes megaLinkIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mnav-item:hover .mega-col a {
  animation: megaLinkIn 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger each link */
.mnav-item:hover .mega-col a:nth-child(2) {
  animation-delay: 0.04s;
}

.mnav-item:hover .mega-col a:nth-child(3) {
  animation-delay: 0.08s;
}

.mnav-item:hover .mega-col a:nth-child(4) {
  animation-delay: 0.11s;
}

.mnav-item:hover .mega-col a:nth-child(5) {
  animation-delay: 0.14s;
}

.mnav-item:hover .mega-col a:nth-child(6) {
  animation-delay: 0.17s;
}

.mnav-item:hover .mega-col a:nth-child(7) {
  animation-delay: 0.20s;
}

.mnav-item:hover .mega-col a:nth-child(8) {
  animation-delay: 0.22s;
}

/* ── Featured panel (right column) ── */
.mega-feature {
  margin: 0;
  padding: 20px 0 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: transparent;
}

.mega-feature-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(2, 69, 48, 0.1);
  box-shadow: 0 4px 20px rgba(2, 69, 48, 0.09);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.36s ease;
}

.mnav-item:hover .mega-feature-card {
  animation: megaLinkIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}

.mega-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(2, 69, 48, 0.15);
}

.mega-feature-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mega-feature-card:hover .mega-feature-img {
  transform: scale(1.06);
}

.mega-feature-body {
  padding: 14px 16px 18px;
  background: linear-gradient(135deg, #012e20 0%, #024530 50%, #8c6a2f 130%);
  position: relative;
  overflow: hidden;
}

/* Shimmer overlay */
.mega-feature-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.07) 50%,
      rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.mega-feature-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.mega-feature-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.55;
}

/* Badge (optional text tag) */
.mega-feature-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b18861;
  border: 1px solid rgba(177, 136, 97, 0.45);
  border-radius: 999px;
  padding: 3px 10px;
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 700px;
  padding: 100px 0;
  background: #fbfbf8;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: url('https://htmldemo.net/monsta/monsta/assets/img/slider/slider1.jpg') center right / cover no-repeat;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 520px;
}

.hero-offer {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  margin-bottom: 18px;
  font-family: var(--sans);
}

.hero-title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #222;
  margin-bottom: 24px;
}

.hero-price {
  font-size: 14px;
  color: #333;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.hero-amt {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: #b18861;
  letter-spacing: 0.5px;
}

.btn-shop {
  display: inline-block;
  background: #b18861;
  color: #fff;
  padding: 14px 34px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.btn-shop:hover {
  background: #926f4f;
}

.hero-dots {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b18861;
  cursor: pointer;
}

.hero-dot.off {
  background: #e0e0e0;
}



/* ── PROMO BAR ── */
.promo-bar {
  text-align: center;
  padding: 40px 15px;
  font-size: 12px;
  color: #555;
  border-bottom: none;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.promo-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  border-top: 1px solid var(--border);
}

.promo-bar a {
  color: #b18861;
  font-weight: 400;
  text-decoration: none;
}

/* ══════════════════════════════════════
   PRODUCTS SECTION — CORE
══════════════════════════════════════ */
.products-section {
  padding: 46px 4% 62px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.bestselling-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 18px 52px;
  width: 100%;
  border-top: none;
}

/* Tab buttons */
.tab-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.tab-btn {
  padding: 13px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  color: #111;
  transition: all .2s;
  font-family: var(--serif);
  margin-left: -1px;
}

.tab-btn:first-child {
  margin-left: 0;
}

.tab-btn.active {
  border-color: #b18861;
  color: #b18861;
  z-index: 2;
  position: relative;
}

.tab-btn:hover {
  color: #b18861;
}

/* Grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.prod-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 246, 239, 0.96) 0%, rgba(255, 253, 248, 0.96) 60%, rgba(245, 240, 228, 0.96) 100%);
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow:
    0 2px 8px rgba(18, 43, 35, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}

/* Left accent bar */
.prod-prices::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2.5px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, #e8c87a, #c89d58 50%, #a07438);
}

.prod-prices .old {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.prod-prices .new {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  background: linear-gradient(135deg, #17372c 0%, #284d3f 60%, #8a6a30 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prod-card {
  --prod-card-pad: 22px;
  --prod-media-height: 228px;
  --prod-media-gap: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 calc((100% - 90px) / 4.15);
  min-width: 0;
  min-height: 544px;
  padding: var(--prod-card-pad) var(--prod-card-pad) 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 46%, rgba(249, 246, 239, 0.96) 100%);
  border: 1px solid rgba(18, 43, 35, 0.08);
  box-shadow:
    0 14px 34px rgba(18, 43, 35, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.34s ease,
    border-color 0.34s ease;
  scroll-snap-align: start;
  z-index: 1;
}

.prod-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 246, 239, 0.98) 100%);
  border: 1px solid rgba(201, 169, 110, 0.28);
  box-shadow:
    0 26px 58px rgba(18, 43, 35, 0.14),
    0 10px 24px rgba(201, 169, 110, 0.14);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.34s ease, visibility 0.34s ease, transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(12px);
  pointer-events: none;
}

.prod-card:hover {
  z-index: 16;
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.26);
  box-shadow:
    0 24px 52px rgba(18, 43, 35, 0.1),
    0 8px 18px rgba(201, 169, 110, 0.08);
}

.prod-card:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.prod-card .prod-cat,
.prod-card .prod-name,
.prod-card .prod-prices {
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.prod-cat {
  min-height: 2.9em;
  margin-bottom: 8px;
  color: #8d8f8b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.prod-name {
  min-height: 2.4em;
  margin-bottom: 10px;
  color: #1f312a;
  font-family: var(--serif);
  font-size: 1.95rem;
  line-height: 1.08;
  font-weight: 600;
}

.prod-name a {
  transition: color 0.24s ease;
}

.prod-card:hover .prod-name a {
  color: #9a7445;
}

.prod-card .prod-prices {
  transform: translateY(0);
}

/* ── Premium card footer decor ── */
.prod-footer-decor {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

/* Ornament row: line ◆ line — full width */
.prod-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.prod-orn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.65));
}

.prod-ornament .prod-orn-line:last-child {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.65), transparent);
}

.prod-orn-gem {
  display: block;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, #e8c87a 0%, #c89d58 55%, #a07438 100%);
  transform: rotate(45deg);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.85),
    0 0 8px rgba(201, 169, 110, 0.45);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Star row — centered with full width context */
.prod-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 1;
}

.prod-stars::before {
  content: '★ ★ ★ ★ ★';
  font-size: 9px;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #b8893e, #e8c87a 50%, #b8893e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Craftsmanship badge — full width flex row */
.prod-craft-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.prod-craft-row-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3));
}

.prod-craft-row .prod-craft-row-line:last-child {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.3), transparent);
}

.prod-craft-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.55);
  flex-shrink: 0;
  margin: 0 5px;
}

.prod-craft-badge {
  display: inline-block;
  font-family: var(--serif);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8a7055;
  padding: 4px 12px;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
}

.prod-craft-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.55) 50%, rgba(201, 169, 110, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.prod-card:hover .prod-cat,
.prod-card:hover .prod-name,
.prod-card:hover .prod-prices,
.prod-card:hover .prod-footer-decor {
  opacity: 0;
  transform: translateY(12px);
}

.prod-img-box {
  position: relative;
  width: 100%;
  height: var(--prod-media-height);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--prod-media-gap);
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72) 38%, rgba(239, 241, 236, 0.82) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.prod-stock-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(33, 47, 41, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(23, 36, 31, 0.18);
}

.prod-img-box .img-default,
.prod-img-box .img-hover {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  transition: opacity 0.38s ease-in-out, transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), filter 0.34s ease;
}

.prod-img-box .img-default {
  opacity: 1;
  transform: scale(1);
}

.prod-img-box video {
  background: transparent;
}

.prod-img-box .img-hover {
  opacity: 0;
  transform: scale(1.08);
}

.prod-card:hover .img-default {
  opacity: 0;
  transform: scale(0.92);
}

.prod-card:hover .img-hover {
  opacity: 1;
  transform: scale(1.02);
  filter: saturate(1.08);
}

.qv-popup {
  position: absolute;
  top: calc(var(--prod-card-pad) + var(--prod-media-height) + 10px);
  bottom: 18px;
  left: var(--prod-card-pad);
  right: var(--prod-card-pad);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 10;
}

.prod-card:hover .qv-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.qv-popup-img {
  display: none !important;
}

.qv-popup-body {
  width: 100%;
  height: 100%;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 249, 243, 0.99) 55%, rgba(245, 241, 231, 0.99) 100%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow:
    0 20px 44px rgba(18, 43, 35, 0.13),
    0 6px 16px rgba(201, 169, 110, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(2px);
}

/* ── Header ornament: —— Rings —— */
.qv-popup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
}

.qv-orn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5));
}

.qv-popup-header .qv-orn-line:last-child {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.5), transparent);
}

.qv-type-tag {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a7445;
  background: linear-gradient(135deg, rgba(255, 252, 245, 0.95), rgba(245, 237, 218, 0.95));
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 169, 110, 0.12);
}

/* ── Middle content ── */
.qv-popup-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
  justify-content: center;
  gap: 6px;
}

.qv-popup-cat,
.qv-popup-name,
.qv-stars,
.qv-desc {
  display: block;
}

.qv-popup-cat {
  font-size: 10px;
  color: #8d8f8b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.5;
  margin-bottom: 4px;
}

.qv-popup-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.12;
  color: #1f312a;
  margin-bottom: 6px;
  width: 100%;
}

.qv-popup-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.qv-popup-name a:hover {
  color: #9a7445;
}

.qv-add-btn.is-out-of-stock {
  background: #eef2ef;
  color: #5c6b63;
  border-color: #dce4df;
}

.qv-stars {
  font-size: 10px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #c89d58, #e8c87a 50%, #c89d58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.qv-desc {
  width: 100%;
  font-size: 11.5px;
  color: #65746d;
  line-height: 1.6;
  padding: 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Actions row ── */
.qv-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 169, 110, 0.14);
  margin-top: 10px;
}

/* Unified icon buttons: heart + share */
.qv-icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(18, 43, 35, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #5d6a64;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(18, 43, 35, 0.07);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease,
    border-color 0.22s ease, box-shadow 0.22s ease;
}

.qv-icon-btn:hover,
.qv-icon-btn.is-active {
  border-color: rgba(200, 157, 88, 0.44);
  background: linear-gradient(135deg, #fffaf1 0%, #ead4ab 46%, #c89d58 100%);
  color: #17372c;
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 8px 18px rgba(132, 96, 44, 0.22);
}

/* Share button: subtle teal tint on hover to distinguish from heart */
.qv-share-btn:hover {
  background: linear-gradient(135deg, #f0f9f5 0%, #c5e0d4 46%, #6aab8e 100%);
  color: #17372c;
  border-color: rgba(18, 100, 65, 0.3);
  box-shadow: 0 8px 18px rgba(18, 43, 35, 0.18);
}

.qv-add-btn {
  flex: 1;
  min-height: 40px;
  background: linear-gradient(135deg, #17372c 0%, #284d3f 60%, #9a7445 140%);
  color: #fff;
  padding: 0 16px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(18, 43, 35, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.qv-add-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 43, 35, 0.28);
}

/* Legacy qv-btn-bar / qv-heart / qv-list-btn removed — now using .qv-icon-btn */


.product-rail-shell {
  position: relative;
  width: 100%;
  padding: 0 74px;
}

.product-rail-viewport {
  position: relative;
  overflow: hidden;
  padding: 10px 0 18px;
  background: transparent;
}

.product-rail-viewport::before,
.product-rail-viewport::after {
  display: none;
}

.product-rail-nav {
  position: absolute;
  top: 50%;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 108px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(18, 43, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  color: #17372c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 18px 32px rgba(18, 43, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-50%);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.product-rail-nav:hover,
.product-rail-nav:focus-visible {
  background: linear-gradient(135deg, #fffaf1 0%, #ead4ab 46%, #c89d58 100%);
  color: #17372c;
  border-color: rgba(200, 157, 88, 0.58);
  transform: translateY(calc(-50% - 2px));
  box-shadow:
    0 22px 38px rgba(132, 96, 44, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-rail-nav:focus-visible {
  outline: 2px solid rgba(177, 136, 97, 0.56);
  outline-offset: 3px;
}

.product-rail-nav:disabled {
  opacity: 0.46;
  cursor: default;
  box-shadow:
    0 10px 18px rgba(18, 43, 35, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.product-rail-nav:disabled:hover,
.product-rail-nav:disabled:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: #17372c;
  border-color: rgba(18, 43, 35, 0.1);
  transform: translateY(-50%);
}

.product-rail-nav-prev {
  left: 0;
}

.product-rail-nav-next {
  right: 0;
}

.product-rail-nav-label {
  white-space: nowrap;
}

.product-rail-nav-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.product-rail-nav-icon::before,
.product-rail-nav-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform-origin: center;
}

.product-rail-nav-prev .product-rail-nav-icon::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.product-rail-nav-prev .product-rail-nav-icon::after {
  width: 10px;
  height: 1.5px;
  border: 0;
  background: currentColor;
  transform: translate(-10%, -50%);
}

.product-rail-nav-next .product-rail-nav-icon::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-rail-nav-next .product-rail-nav-icon::after {
  width: 10px;
  height: 1.5px;
  border: 0;
  background: currentColor;
  transform: translate(-90%, -50%);
}

/* Tab pane show/hide */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* ── PREMIUM CTA BANNER ── */
.premium-cta-banner {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
  background-image: url('../uploads/premium_cta_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax effect */
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 32, 25, 0.9) 0%, rgba(13, 32, 25, 0.6) 50%, rgba(13, 32, 25, 0.4) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center; /* Centered instead of left-aligned */
  padding: 0 5%;
}

.cta-content-box {
  background: transparent; /* Removed the beige glass box */
  backdrop-filter: none;
  padding: 40px 20px;
  max-width: 600px;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  border: none;
}

.cta-kicker {
  color: #c9a96e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Added text shadow for readability */
}

.cta-title {
  font-family: var(--serif);
  font-size: 3.5rem; /* Made it bigger again for dramatic effect */
  color: #ffffff; /* Changed to white for dark background */
  margin: 0 0 10px 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.cta-diamond-divider {
  color: #c9a96e;
  font-size: 1.2rem;
  margin: 15px 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9); /* Changed to white */
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  font-weight: 300;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c9a96e;
  color: #fff;
  padding: 14px 35px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-cta-gold:hover {
  background: #112920;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(17, 41, 32, 0.3);
}

@media (max-width: 767px) {
  .cta-content-box {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
  
  .cta-container {
    justify-content: center;
  }
}

/* ── BESTSELLING ── */
.news-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 15px 40px;
  width: 100%;
  border-top: none;
}

/* ══════════════════════════════════════════
   PREMIUM SECTION HEADER BAR  (.sec-hdr-premium)
   Used by: Bestselling, News, Shop By Diamond Shape, etc.
══════════════════════════════════════════ */
.sec-hdr-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.sec-hdr-premium .shop-style-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b18861;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sec-hdr-premium .shop-style-kicker::before,
.sec-hdr-premium .shop-style-kicker::after {
  content: '';
  height: 1px;
  width: 40px;
  background: #c9a96e;
  opacity: 0.5;
}

.sec-hdr-title-row {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  gap: 30px;
}

.sec-hdr-title-row span.sec-line {
  flex: 1;
  height: 1px;
  background: #edf0ed;
}

.sec-hdr-title-row h2 {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: #004531;
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}

/* Hide legacy elements if they are still used in the HTML */
.sec-hdr-premium .sec-hdr-left,
.sec-hdr-premium .sec-hdr-arrows {
  display: none;
}

.best-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 18px;
  scrollbar-width: none;
  padding: 2px 18px 12px 18px;
  align-items: stretch;
}

.best-grid::-webkit-scrollbar {
  display: none;
}

.news-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 18px;
  scrollbar-width: none;
  padding: 2px 18px 12px 18px;
  align-items: stretch;
}

.news-grid::-webkit-scrollbar {
  display: none;
}

.news-card {
  display: block;
  flex: 0 0 calc((100% - 48px) / 3);
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(2, 69, 48, 0.12);
}

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 16px 18px 20px;
}

.news-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.news-meta {
  font-size: 10px;
  color: #aaa;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.news-meta a {
  color: #b18861;
  text-decoration: none;
}

.news-excerpt {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.news-read {
  font-size: 11px;
  color: #b18861;
  text-decoration: none;
}

.news-read:hover {
  color: #926f4f;
}

.news-article-page {
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f5f0 0%, #f2ede4 22%, #f8f7f2 60%, #ffffff 100%);
}

.news-index-main {
  padding-bottom: 90px;
}

.news-index-hero {
  padding: 78px 0 34px;
}

.news-index-hero .news-article-wrap {
  text-align: center;
}

.news-index-hero h1 {
  margin: 14px 0 16px;
  color: #16362b;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.news-index-hero p {
  width: min(720px, 100%);
  margin: 0 auto;
  color: #5d6e67;
  font-size: 1.02rem;
  line-height: 1.85;
}

.news-index-section {
  padding: 10px 0 0;
}

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

.news-index-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 22px;
  color: #7a7a7a;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-index-empty {
  margin-top: 18px;
}

.news-article-wrap {
  width: min(1680px, calc(100vw - 32px));
  margin: 0 auto;
}

.news-article-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: flex-end;
  padding: 96px 0 40px;
  overflow: hidden;
  background: #12322a;
}

.news-article-hero-media,
.news-article-hero-media img,
.news-article-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.news-article-hero-media img {
  object-fit: cover;
  transform: scale(1.04);
}

.news-article-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 21, 18, 0.86) 0%, rgba(7, 21, 18, 0.58) 52%, rgba(7, 21, 18, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 21, 18, 0.08) 0%, rgba(7, 21, 18, 0.72) 100%);
}

.news-article-hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(10, 31, 26, 0.66), rgba(10, 31, 26, 0.36));
  backdrop-filter: blur(12px);
  color: #f6f1e7;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.news-article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.news-article-breadcrumb:hover {
  color: #fff;
}

.news-article-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.18);
  color: #f7e9c9;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
}

.news-article-hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.news-article-summary {
  max-width: 46rem;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(246, 241, 231, 0.86);
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.news-article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-article-body-section {
  padding: 34px 0 72px;
}

.news-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.news-article-story-card,
.news-article-rail-card,
.news-article-missing-shell {
  border-radius: 28px;
  border: 1px solid rgba(37, 58, 50, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(252, 249, 243, 0.98));
  box-shadow: 0 28px 60px rgba(17, 47, 38, 0.08);
}

.news-article-story-card {
  padding: clamp(28px, 4vw, 48px);
}

.news-article-lead {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.6;
  color: #16362b;
  margin-bottom: 28px;
}

.news-article-prose {
  display: grid;
  gap: 22px;
}

.news-article-prose p {
  font-size: 1.03rem;
  line-height: 1.92;
  color: #41534b;
}

.news-article-prose>*+* {
  margin-top: 20px;
}

.news-article-prose h2,
.news-article-prose h3,
.news-article-prose h4 {
  font-family: var(--serif);
  color: #143428;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.news-article-prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.news-article-prose h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.news-article-prose h4 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.news-article-prose a {
  color: #8e6933;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.news-article-prose strong,
.news-article-prose b {
  color: #18362b;
}

.news-article-prose blockquote {
  margin: 8px 0;
  padding: 18px 24px;
  border-left: 4px solid rgba(183, 140, 74, 0.72);
  border-radius: 0 18px 18px 0;
  background: rgba(183, 140, 74, 0.08);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.6;
  color: #25453a;
}

.news-article-prose ul,
.news-article-prose ol {
  padding-left: 24px;
  color: #41534b;
}

.news-article-prose li+li {
  margin-top: 10px;
}

.news-article-prose hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 140, 74, 0.7), transparent);
  margin: 28px 0;
}

.news-article-rail {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 24px;
}

.news-article-rail-card {
  padding: 24px;
}

.news-article-rail-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #8f6a40;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.news-article-detail-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.news-article-detail-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(37, 58, 50, 0.08);
}

.news-article-detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-article-detail-list span {
  color: #6f7f78;
  font-size: 0.92rem;
}

.news-article-detail-list strong {
  color: #18362b;
  font-size: 0.98rem;
  text-align: right;
}

.news-article-related-list {
  display: grid;
  gap: 14px;
}

.news-article-related-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: 20px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.news-article-related-card:hover {
  transform: translateY(-2px);
  background: rgba(201, 169, 110, 0.08);
  box-shadow: 0 16px 34px rgba(17, 47, 38, 0.08);
}

.news-article-related-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
}

.news-article-related-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.2;
  color: #153328;
}

.news-article-related-date {
  display: inline-block;
  margin-bottom: 8px;
  color: #8c6e4a;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-article-missing {
  padding: 64px 16px 90px;
}

.news-article-missing-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 42px;
  text-align: center;
}

.news-article-missing-shell h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  color: #16362b;
  margin-bottom: 14px;
}

.news-article-missing-shell p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5d6e67;
}

.news-article-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #024530 0%, #0a6a4b 70%, #b8924f 145%);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(2, 69, 48, 0.18);
}

.news-article-back:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* ── SHOP PAGE ── */
.shop-page {
  background:
    linear-gradient(180deg, #f7f9fb 0%, #f4f7fa 34%, #f2f5f8 100%);
}

.shop-hero {
  padding: 42px 0 28px;
  background:
    linear-gradient(120deg, rgba(2, 69, 48, 0.98), rgba(7, 92, 66, 0.95) 44%, rgba(177, 136, 97, 0.96));
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.10), transparent 24%);
  pointer-events: none;
}

.shop-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
}

.shop-hero-copy,
.shop-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.shop-hero-copy {
  padding: 34px 34px 30px;
  color: #fff;
}

.shop-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 14px;
}

.shop-hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.94;
  margin-bottom: 18px;
}

.shop-hero-copy>p,
.shop-hero-card p,
.shop-results-copy {
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  line-height: 1.8;
}

.shop-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.shop-hero-metrics article {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.shop-hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 30px;
  color: #fff;
}

.shop-hero-metrics span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.shop-hero-card {
  padding: 28px;
  color: #fff;
  align-self: center;
}

.shop-hero-badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.shop-hero-card h2,
.shop-results-bar h2,
.shop-empty-state h3,
.shop-panel-head h3 {
  font-family: var(--serif);
}

.shop-hero-card h2 {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}

.shop-hero-card .btn-outline {
  margin-top: 22px;
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.shop-hero-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.shop-toolbar {
  padding: 16px 0 0;
}

.shop-featured-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(2, 69, 48, 0.10);
  color: #024530;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(2, 69, 48, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.shop-chip:hover,
.shop-chip.is-active {
  background: linear-gradient(115deg, #024530 0%, #1a6642 52%, #b18861 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 69, 48, 0.16);
}

.shop-shell {
  padding: 26px 0 64px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 18px;
}

.shop-panel,
.shop-results-bar,
.shop-empty-state {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(2, 69, 48, 0.10);
  border: 1px solid rgba(2, 69, 48, 0.08);
}

.shop-panel {
  padding: 24px;
}

.shop-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.shop-panel-head .sec-hdr-icon {
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(115deg, #024530 0%, #1a6642 52%, #b18861 100%);
  border: none;
}

.shop-panel-head h3 {
  font-size: 30px;
  color: #111;
  margin-bottom: 2px;
}

.shop-panel-head p {
  color: #666;
  font-size: 13px;
}

.shop-filter-form {
  display: grid;
  gap: 16px;
}

.shop-field {
  display: grid;
  gap: 8px;
}

.shop-field span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #024530;
}

.shop-field input,
.shop-field select {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(2, 69, 48, 0.12);
  background: #fbfaf7;
  padding: 0 14px;
  color: #222;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.shop-field input:focus,
.shop-field select:focus {
  border-color: rgba(177, 136, 97, 0.64);
  box-shadow: 0 0 0 4px rgba(177, 136, 97, 0.12);
}

.shop-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.shop-filter-actions .btn-shop,
.shop-filter-actions .btn-outline,
.shop-empty-state .btn-shop {
  height: 46px;
  padding: 0 24px;
}

.shop-results {
  min-width: 0;
}

.shop-results-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 18px;
}

.shop-results-bar .shop-kicker {
  color: #b18861;
  margin-bottom: 8px;
}

.shop-results-bar h2 {
  font-size: 42px;
  color: #111;
}

.shop-results-copy {
  max-width: 380px;
  color: #666;
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.shop-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #024530;
  background: rgba(177, 136, 97, 0.12);
  border: 1px solid rgba(177, 136, 97, 0.24);
}

.shop-filter-pill strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-filter-pill span {
  font-size: 13px;
}

.shop-filter-pill i {
  font-size: 11px;
}

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

.shop-empty-state {
  padding: 42px 30px;
  text-align: center;
}

.shop-empty-state h3 {
  font-size: 34px;
  color: #111;
  margin-bottom: 12px;
}

.shop-empty-state p {
  max-width: 460px;
  margin: 0 auto 24px;
  color: #666;
  line-height: 1.8;
}

/* ── CELEBS ── */
.celebs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 15px 40px;
  width: 100%;
  border-top: none;
}

.celebs-carousel {
  overflow: hidden;
}

.celebs-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.celeb-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 6);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 0.72 / 1;
  background: #d8d8d8;
}

.celeb-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42) 12%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

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

/* ── REVIEWS ── */
.reviews-section {
  width: 100%;
  padding: 34px 0 56px;
  background: transparent;
  overflow: hidden;
}

.reviews-section .container {
  position: relative;
}

.reviews-section .sec-hdr-premium {
  margin-bottom: 26px;
}

.reviews-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 248px);
  gap: 32px;
  align-items: end;
  padding: 0 28px;
  margin-bottom: 30px;
}

.reviews-intro {
  max-width: 760px;
  padding-top: 22px;
  border-top: 1px solid #e8eeea;
}

.reviews-intro p {
  margin: 0;
  color: #5a6963;
  font-size: 1.05rem;
  line-height: 1.78;
}

.reviews-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.reviews-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(18, 43, 35, 0.09);
  background: #fff;
  color: #41584f;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.reviews-assurance i {
  color: #147a57;
}

.reviews-metric-group {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.reviews-metric {
  width: 100%;
  max-width: 228px;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #0e503b 0%, #176146 68%, #9d7a47 136%);
  box-shadow: 0 20px 36px rgba(9, 65, 46, 0.14);
  color: #fff;
  display: grid;
  gap: 3px;
  position: relative;
  overflow: hidden;
}

.reviews-metric::after {
  content: "";
  position: absolute;
  inset: auto -18px -28px auto;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.reviews-metric strong {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.88;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.reviews-metric span,
.reviews-metric small {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  position: relative;
  z-index: 1;
}

.reviews-metric span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.reviews-metric small {
  font-size: 0.92rem;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
  padding: 0;
}

.reviews-viewport {
  overflow: hidden;
  padding: 4px 0 10px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  min-height: 316px;
  padding: 24px 22px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
  border: 1px solid rgba(18, 43, 35, 0.08);
  box-shadow: 0 14px 30px rgba(18, 43, 35, 0.06);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(18, 43, 35, 0.10);
  border-color: rgba(177, 136, 97, 0.28);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 14px;
  color: #d3d9de;
  font-size: 0.88rem;
}

.review-stars .is-filled {
  color: #109163;
}

.review-stars em {
  margin-left: 10px;
  font-style: normal;
  font-size: 0.8rem;
  color: #70827a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-stars em i {
  color: #0f7d59;
}

.review-card h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.22;
  color: #182a24;
  font-family: var(--serif);
  font-weight: 600;
}

.review-card p {
  margin: 0;
  color: #5f6c67;
  line-height: 1.8;
  font-size: 1rem;
  flex: 1 1 auto;
}

.review-meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 43, 35, 0.08);
  display: grid;
  gap: 3px;
}

.review-meta strong {
  color: #17382d;
  font-size: 0.92rem;
  font-weight: 700;
}

.review-meta span {
  color: #7a877f;
  font-size: 0.8rem;
}

.reviews-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(18, 43, 35, 0.12);
  background: #fff;
  color: #17372c;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 43, 35, 0.06);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
  transform: translateY(-2px);
  background: #17372c;
  color: #fff;
  border-color: #17372c;
}

@media (max-width: 1180px) {
  .review-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 860px) {
  .reviews-section {
    padding: 28px 0 42px;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .reviews-metric-group {
    justify-content: flex-start;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }

  .review-card {
    flex-basis: 86%;
    min-height: 0;
  }
}

@media (max-width: 1180px) {

  .shop-hero-grid,
  .shop-layout,
  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

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

@media (max-width: 860px) {

  .shop-hero-copy,
  .shop-hero-card,
  .shop-panel,
  .shop-results-bar,
  .shop-empty-state {
    padding: 22px;
    border-radius: 18px;
  }

  .shop-hero-metrics,
  .shop-results-bar,
  .shop-filter-actions {
    grid-template-columns: 1fr;
  }

  .shop-results-bar {
    display: grid;
    align-items: start;
  }

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

@media (max-width: 560px) {
  .shop-hero-copy h1 {
    font-size: 40px;
  }

  .shop-hero-card h2,
  .shop-results-bar h2,
  .shop-empty-state h3,
  .shop-panel-head h3 {
    font-size: 28px;
  }

  .shop-hero-metrics,
  .shop-product-grid {
    grid-template-columns: 1fr;
  }
}

.celeb-name {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  z-index: 1;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 40px 15px 100px;
  text-align: center;
}

.newsletter-box {
  max-width: 650px;
  margin: 0 auto;
}

.nl-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.nl-sub {
  font-size: 11px;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: var(--sans);
}

.nl-form {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
}

.nl-form input {
  flex: 1;
  padding: 0 20px;
  border: 1px solid #eaeaea;
  border-right: none;
  font-size: 11px;
  color: #666;
  height: 50px;
  outline: none;
  background: #fff;
}

.nl-form input::placeholder {
  color: #999;
}

.nl-form button {
  height: 50px;
  padding: 0 45px;
  background: #b18861;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s;
}

.nl-form button:hover {
  background: #926f4f;
}

/* ── FOOTER ── */
/* ── FOOTER ── */
.footer-premium {
  position: relative;
  background-color: #011d16;
  /* Fallback */
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(1, 29, 22, 0.98) 0%, rgba(1, 29, 22, 0.9) 40%, rgba(1, 29, 22, 0.3) 100%);
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: #c89d58;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.logo-diamond {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6em;
  margin: 0 2px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  max-width: 280px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-contact .contact-item i {
  color: #c89d58;
  font-size: 16px;
  margin-top: 2px;
  width: 16px;
  text-align: center;
}

.footer-follow-title {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #c89d58;
  letter-spacing: 1.5px;
  margin-top: 35px;
  margin-bottom: 15px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
  transition: all .3s;
}

.soc-btn:hover {
  border-color: #c89d58;
  color: #c89d58;
}

.foot-col h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #c89d58;
  margin-bottom: 6px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-ornament {
  color: #c89d58;
  font-size: 10px;
  opacity: 0.6;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-col ul li {
  margin-bottom: 18px;
}

.foot-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 400;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-col ul li a i {
  color: #c89d58;
  font-size: 10px;
}

.foot-col ul li a:hover {
  color: #c89d58;
}

.top-prod {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-prod:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tp-img-box {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.tp-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tp-cat {
  font-size: 10px;
  color: #c89d58;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

.tp-name {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 6px;
}

.tp-price {
  font-size: 13px;
}

.tp-price .old {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-right: 6px;
}

.tp-price .new {
  color: #c89d58;
  font-weight: 500;
}

.footer-features-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(1, 29, 22, 0.85);
  border: 1px solid rgba(200, 157, 88, 0.25);
  border-radius: 12px;
  padding: 30px 40px;
  margin-top: 60px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 25px;
}

.feature-item:first-child {
  padding-left: 0;
}

.feature-item:last-child {
  border-right: none;
  padding-right: 0;
}

.feature-item i {
  font-size: 28px;
  color: #c89d58;
}

.feature-item strong {
  display: block;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.feature-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.foot-btm-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.foot-btm-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: .2s;
}

.foot-btm-links a:hover {
  color: #c89d58;
}

.footer-cookie-settings {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  cursor: pointer;
  transition: .2s;
}

.footer-cookie-settings:hover {
  color: #c89d58;
}

.foot-btm-links .sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
}

.foot-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}

.foot-copy .brand-name,
.foot-copy .author-name {
  color: #c89d58;
  text-decoration: none;
  font-weight: 500;
}

.pay-row {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.pay-row img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  filter: grayscale(10%) contrast(120%);
}

.cookie-settings-launcher {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 550;
}

.cookie-settings-launcher[hidden],
.cookie-banner[hidden],
.cookie-modal-shell[hidden] {
  display: none !important;
}

.cookie-settings-pill,
.cookie-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.cookie-settings-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15, 32, 26, 0.92);
  color: #fff;
  box-shadow: 0 18px 40px rgba(8, 25, 19, 0.22);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cookie-settings-pill:hover {
  transform: translateY(-1px);
  background: #17372c;
  box-shadow: 0 22px 44px rgba(8, 25, 19, 0.28);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 540;
  display: flex;
  justify-content: center;
}

.cookie-banner-card,
.cookie-modal {
  width: min(100%, 1120px);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.98) 0%, rgba(250, 244, 234, 0.98) 100%);
  border: 1px solid rgba(177, 136, 97, 0.22);
  box-shadow: 0 28px 70px rgba(17, 41, 32, 0.22);
  backdrop-filter: blur(16px);
}

.cookie-banner-card {
  padding: 24px 26px;
  border-radius: 28px;
  display: grid;
  gap: 14px;
}

.cookie-banner-kicker {
  margin: 0;
  color: #9b7642;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cookie-banner-card h2,
.cookie-modal h2 {
  margin: 0;
  color: #17372c;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.04;
}

.cookie-banner-copy,
.cookie-modal-copy {
  margin: 0;
  color: #52625a;
  line-height: 1.72;
  font-size: 14px;
}

.cookie-banner-copy a,
.cookie-modal-copy a,
.legal-card a,
.legal-hero a {
  color: #17372c;
  font-weight: 700;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.cookie-btn-primary {
  background: #17372c;
  color: #fff;
  box-shadow: 0 16px 30px rgba(23, 55, 44, 0.22);
}

.cookie-btn-primary:hover {
  background: #112920;
}

.cookie-btn-secondary,
.cookie-btn-tertiary {
  border: 1px solid rgba(23, 55, 44, 0.14);
}

.cookie-btn-secondary {
  background: #fff;
  color: #17372c;
}

.cookie-btn-secondary:hover {
  border-color: rgba(200, 157, 88, 0.45);
  box-shadow: 0 12px 28px rgba(177, 136, 97, 0.14);
}

.cookie-btn-tertiary {
  background: transparent;
  color: #7c6849;
}

.cookie-btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.6);
}

.cookie-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 560;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 19, 0.44);
}

.cookie-modal {
  position: relative;
  margin: min(7vh, 60px) auto;
  padding: 34px 30px 28px;
  border-radius: 30px;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(23, 55, 44, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: #17372c;
  cursor: pointer;
}

.cookie-category-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 26px;
}

.cookie-category-card {
  border-radius: 24px;
  border: 1px solid rgba(23, 55, 44, 0.08);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px 20px;
}

.cookie-category-card.is-locked {
  background: rgba(245, 239, 230, 0.78);
}

.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-category-head h3 {
  margin: 0 0 6px;
  color: #17372c;
  font-size: 1rem;
}

.cookie-category-head p {
  margin: 0;
  color: #586860;
  font-size: 14px;
  line-height: 1.68;
}

.cookie-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 55, 44, 0.08);
  color: #17372c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-status-chip.is-on {
  background: rgba(23, 55, 44, 0.9);
  color: #fff;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle-ui {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #d6dcd7;
  transition: background .2s ease;
}

.cookie-toggle-ui::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(17, 41, 32, 0.18);
  transition: transform .2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-ui {
  background: #17372c;
}

.cookie-toggle input:checked + .cookie-toggle-ui::after {
  transform: translateX(26px);
}

.cookie-toggle-label {
  color: #17372c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cookie-modal-open {
  overflow: hidden;
}

.legal-page {
  background: linear-gradient(180deg, #faf7f1 0%, #ffffff 26%, #fbfaf7 100%);
  min-height: 100vh;
}

.legal-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.legal-hero,
.legal-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 41, 32, 0.08);
  box-shadow: 0 20px 46px rgba(17, 41, 32, 0.06);
  border-radius: 30px;
}

.legal-hero {
  padding: 34px 34px 30px;
  margin-bottom: 22px;
}

.legal-kicker {
  margin: 0 0 10px;
  color: #9b7642;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 12px;
  color: #17372c;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1;
}

.legal-hero p,
.legal-intro,
.legal-card p,
.legal-card li {
  color: #54645c;
  line-height: 1.8;
  font-size: 15px;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.legal-meta span,
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5efe6;
  color: #17372c;
  font-size: 12px;
  font-weight: 700;
}

.legal-grid {
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: 28px 30px;
}

.legal-card h2 {
  margin: 0 0 10px;
  color: #17372c;
  font-family: var(--serif);
  font-size: 2rem;
}

.legal-card h3 {
  margin: 18px 0 8px;
  color: #17372c;
  font-size: 1.02rem;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 20px;
  border-style: hidden;
  box-shadow: 0 0 0 1px rgba(17, 41, 32, 0.08);
}

.legal-card th,
.legal-card td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(17, 41, 32, 0.08);
  font-size: 14px;
  line-height: 1.7;
}

.legal-card th {
  background: #f8f2e7;
  color: #17372c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-card tr:last-child td {
  border-bottom: 0;
}

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s, background .3s;
  z-index: 400;
}

.scroll-top.show {
  opacity: 1;
}

.scroll-top:hover {
  background: #b18861;
}

/* --- SHOP BY STYLE MODULE --- */
.shop-style-section {
  padding: 72px 0 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 46%, #ffffff 100%);
  border-top: 1px solid rgba(17, 45, 36, 0.06);
  border-bottom: 1px solid rgba(17, 45, 36, 0.06);
}

.shop-style-container {
  max-width: min(1520px, calc(100vw - 36px));
  padding: 0 18px;
}

.shop-style-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.shop-style-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #9b7642;
  text-transform: uppercase;
}

.shop-style-kicker::before,
.shop-style-kicker::after {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(155, 118, 66, 0), rgba(155, 118, 66, 0.78));
}

.shop-style-kicker::after {
  background: linear-gradient(90deg, rgba(155, 118, 66, 0.78), rgba(155, 118, 66, 0));
}

.shop-style-title-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}

.shop-style-title-row span {
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 43, 35, 0), rgba(18, 43, 35, 0.18), rgba(177, 136, 97, 0.4));
}

.shop-style-title-row span:last-child {
  background: linear-gradient(90deg, rgba(177, 136, 97, 0.4), rgba(18, 43, 35, 0.18), rgba(18, 43, 35, 0));
}

.shop-style-title-row h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
  color: #17372c;
}

.shop-style-shell {
  position: relative;
  width: 100%;
  padding: 0 84px;
}

.shop-style-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 43, 35, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.96));
  box-shadow:
    0 22px 52px rgba(18, 43, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.shop-style-viewport::before,
.shop-style-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 2;
  pointer-events: none;
}

.shop-style-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0));
}

.shop-style-viewport::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 100%);
}

.shop-style-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 28px 38px 24px;
}

.shop-style-track::-webkit-scrollbar {
  display: none;
}

.shop-style-card {
  flex: 0 0 calc((100% - 120px) / 6);
  min-width: 0;
  min-height: 232px;
  scroll-snap-align: start;
  color: #222;
  text-align: center;
  text-decoration: none;
  display: grid;
  grid-template-rows: 162px auto;
  gap: 14px;
  padding: 10px 2px 14px;
  border-radius: 18px;
  position: relative;
  isolation: isolate;
  transition: transform 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.shop-style-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201, 169, 110, 0);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 243, 235, 0.92));
  opacity: 0;
  transition: opacity 280ms ease, border-color 280ms ease;
  z-index: -1;
}

.shop-style-card:hover,
.shop-style-card:focus-visible {
  color: #0f3227;
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(18, 43, 35, 0.08);
}

.shop-style-card:hover::before,
.shop-style-card:focus-visible::before {
  opacity: 1;
  border-color: rgba(201, 169, 110, 0.36);
}

.shop-style-card:focus-visible {
  outline: 2px solid rgba(177, 136, 97, 0.52);
  outline-offset: 4px;
}

.shop-style-image {
  height: 162px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 242, 0.76));
  border: 1px solid rgba(18, 43, 35, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 26px rgba(18, 43, 35, 0.05);
  overflow: hidden;
}

.shop-style-image img {
  width: min(100%, 174px);
  height: 144px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.06) drop-shadow(0 12px 18px rgba(22, 35, 30, 0.12));
  transition: transform 320ms ease, filter 320ms ease;
}

.shop-style-card:hover .shop-style-image img,
.shop-style-card:focus-visible .shop-style-image img {
  transform: translateY(-4px) scale(1.08);
  filter: saturate(1.14) contrast(1.1) drop-shadow(0 16px 22px rgba(22, 35, 30, 0.16));
}

.shop-style-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.shop-style-name {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.15;
  color: inherit;
}

.shop-style-tagline {
  font-size: 11px;
  line-height: 1.35;
  color: #7c6a55;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-style-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 108px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(18, 43, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  color: #17372c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 18px 32px rgba(18, 43, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-50%);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.shop-style-nav:hover,
.shop-style-nav:focus-visible {
  background: linear-gradient(135deg, #fffaf1 0%, #ead4ab 46%, #c89d58 100%);
  color: #17372c;
  border-color: rgba(200, 157, 88, 0.58);
  transform: translateY(calc(-50% - 2px));
  box-shadow:
    0 22px 38px rgba(132, 96, 44, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.shop-style-nav:focus-visible {
  outline: 2px solid rgba(177, 136, 97, 0.56);
  outline-offset: 3px;
}

.shop-style-nav-prev {
  left: 12px;
}

.shop-style-nav-next {
  right: 12px;
}

.shop-style-nav-label {
  white-space: nowrap;
}

.shop-style-nav-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}

.shop-style-nav-icon::before,
.shop-style-nav-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform-origin: center;
}

.shop-style-nav-prev .shop-style-nav-icon::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.shop-style-nav-prev .shop-style-nav-icon::after {
  width: 10px;
  height: 1.5px;
  border: 0;
  background: currentColor;
  transform: translate(-10%, -50%);
}

.shop-style-nav-next .shop-style-nav-icon::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.shop-style-nav-next .shop-style-nav-icon::after {
  width: 10px;
  height: 1.5px;
  border: 0;
  background: currentColor;
  transform: translate(-90%, -50%);
}

@media (max-width: 1024px) {
  .shop-style-container {
    max-width: calc(100vw - 28px);
    padding: 0 14px;
  }

  .shop-style-track {
    padding: 24px 28px 22px;
  }

  .shop-style-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

@media (max-width: 768px) {
  .shop-style-section {
    padding: 54px 0 18px;
  }

  .shop-style-heading {
    margin-bottom: 24px;
  }

  .shop-style-title-row {
    gap: 12px;
  }

  .shop-style-title-row h2 {
    font-size: 34px;
  }

  .shop-style-shell {
    width: 100%;
    padding: 0 58px;
  }

  .shop-style-viewport {
    border-radius: 16px;
  }

  .shop-style-track {
    gap: 14px;
    padding: 20px 18px 16px;
  }

  .shop-style-card {
    flex-basis: calc((100% - 14px) / 2);
    min-height: 196px;
    grid-template-rows: 128px auto;
  }

  .shop-style-image {
    height: 128px;
  }

  .shop-style-image img {
    width: min(100%, 140px);
    height: 116px;
  }

  .shop-style-name {
    font-size: 18px;
  }

  .shop-style-tagline {
    font-size: 10px;
  }

  .shop-style-nav {
    min-width: 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    gap: 0;
    box-shadow: 0 10px 24px rgba(18, 43, 35, 0.12);
  }

  .shop-style-nav:hover,
  .shop-style-nav:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }

  .shop-style-nav-prev {
    left: 8px;
  }

  .shop-style-nav-next {
    right: 8px;
  }

  .shop-style-nav-label {
    display: none;
  }
}

@media (max-width: 420px) {
  .shop-style-shell {
    padding: 0 46px;
  }

  .shop-style-title-row {
    grid-template-columns: 1fr;
  }

  .shop-style-title-row span {
    display: none;
  }

  .shop-style-card {
    flex-basis: 76%;
  }

  .shop-style-nav {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .shop-style-kicker::before,
  .shop-style-kicker::after {
    width: 20px;
  }
}

.shop-style-section+.diamond-shape-section {
  margin-top: 0 !important;
  padding-top: 54px;
}

/* --- DIAMOND SHAPE MODULE --- */
.diamond-shape-section {
  padding-top: 78px;
}

.diamond-shape-section .section-heading {
  margin-bottom: 26px;
}

.diamond-shape-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(26, 43, 35, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 239, 227, 0.45));
}

.diamond-shape-preview {
  position: relative;
  --shape-accent: #b6a174;
  border-radius: 34px;
  border: 1px solid rgba(26, 43, 35, 0.16);
  overflow: hidden;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 242, 0.9));
  box-shadow: 0 24px 46px rgba(0, 43, 33, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 500px;
  transition: opacity 260ms ease, transform 260ms ease;
}

.diamond-shape-preview::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -16%;
  width: 52%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--shape-accent) 58%, transparent) 0%, transparent 70%);
  filter: blur(6px);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.diamond-shape-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.0), color-mix(in srgb, var(--shape-accent) 24%, transparent), rgba(255, 255, 255, 0.0));
  opacity: 0;
}

.diamond-shape-preview.is-flashing::after {
  animation: shapeFlash 620ms ease;
}

.diamond-shape-preview.is-changing {
  opacity: 0.55;
  transform: translateY(6px);
}

.diamond-shape-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 2;
  background: radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.9), rgba(231, 220, 208, 0.32));
}

.diamond-shape-stage {
  width: min(88%, 430px);
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  border: 1px solid rgba(26, 43, 35, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 240, 229, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 22px 34px rgba(26, 43, 35, 0.14);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
}

.diamond-shape-media::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto auto;
  width: 42%;
  height: 56%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 68%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}

.diamond-shape-media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transform: scale(1.16);
  transition: transform 0.55s ease, filter 0.4s ease;
  filter: saturate(1.16) contrast(1.12) drop-shadow(0 18px 24px rgba(24, 16, 14, 0.2));
}

.diamond-shape-preview.is-lifestyle .diamond-shape-stage {
  width: min(78%, 390px);
  aspect-ratio: 4 / 5;
  padding: 0;
}

.diamond-shape-preview.is-lifestyle .diamond-shape-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(1.04) contrast(1.06) drop-shadow(0 18px 26px rgba(24, 16, 14, 0.16));
}

.diamond-sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 72%);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.55));
  pointer-events: none;
  z-index: 3;
  animation: shapeSparkle 3.4s ease-in-out infinite;
}

.diamond-sparkle::before,
.diamond-sparkle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.88);
  transform: translate(-50%, -50%);
}

.diamond-sparkle::before {
  width: 1px;
  height: 18px;
}

.diamond-sparkle::after {
  width: 18px;
  height: 1px;
}

.diamond-sparkle-a {
  left: 20%;
  top: 18%;
  animation-delay: 0.15s;
}

.diamond-sparkle-b {
  left: 74%;
  top: 26%;
  width: 12px;
  height: 12px;
  animation-delay: 1.1s;
}

.diamond-sparkle-c {
  left: 58%;
  top: 68%;
  width: 10px;
  height: 10px;
  animation-delay: 2s;
}

.diamond-shape-preview:hover .diamond-shape-media img {
  transform: scale(1.2);
  filter: saturate(1.2) contrast(1.16) drop-shadow(0 22px 28px rgba(24, 16, 14, 0.22));
}

.diamond-shape-preview.is-lifestyle:hover .diamond-shape-media img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08) drop-shadow(0 18px 28px rgba(24, 16, 14, 0.18));
}

.diamond-shape-copy {
  padding: 36px 32px;
  display: grid;
  align-content: center;
  gap: 12px;
  position: relative;
  z-index: 3;
}

.diamond-shape-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  transition: letter-spacing 0.26s ease, color 0.26s ease, text-shadow 0.26s ease, font-style 0.26s ease;
}

.diamond-shape-copy p {
  margin: 0;
  line-height: 1.7;
  color: #5f6d63;
}

.diamond-shape-preview.shape-tone-classic .diamond-shape-copy h3 {
  letter-spacing: 0.012em;
}

.diamond-shape-preview.shape-tone-graceful .diamond-shape-copy h3 {
  letter-spacing: 0.024em;
  font-style: italic;
}

.diamond-shape-preview.shape-tone-romantic .diamond-shape-copy h3 {
  font-style: italic;
  color: #374d44;
  text-shadow: 0 10px 24px rgba(178, 157, 109, 0.22);
}

.diamond-shape-preview.shape-tone-modern .diamond-shape-copy h3 {
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.diamond-shape-preview.shape-tone-refined .diamond-shape-copy h3 {
  letter-spacing: 0.018em;
  color: #32483e;
}

.diamond-shape-preview.shape-tone-poetic .diamond-shape-copy h3 {
  font-style: italic;
  letter-spacing: 0.02em;
}

.diamond-shape-preview.shape-tone-regal .diamond-shape-copy h3 {
  letter-spacing: 0.028em;
  text-transform: uppercase;
}

.diamond-shape-preview.shape-tone-bold .diamond-shape-copy h3 {
  letter-spacing: 0.034em;
  text-transform: uppercase;
  color: #32483e;
}

.diamond-shape-preview.shape-tone-deco .diamond-shape-copy h3 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(1.95rem, 3.4vw, 2.9rem);
}

@media (min-width: 1024px) {
  .diamond-shape-layout {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .diamond-shape-preview {
    min-height: 440px;
  }

  .diamond-shape-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .diamond-shape-section {
    padding-top: 66px;
  }

  .diamond-shape-layout {
    padding: 10px;
    border-radius: 22px;
  }

  .diamond-shape-preview {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .diamond-shape-media {
    min-height: 300px;
  }

  .diamond-shape-stage {
    width: min(84%, 360px);
    border-radius: 24px;
    padding: 18px;
  }

  .diamond-shape-preview.is-lifestyle .diamond-shape-stage {
    width: min(88%, 340px);
    padding: 0;
  }

  .diamond-shape-copy {
    padding: 18px;
  }

  .diamond-shape-copy h3 {
    font-size: 2.4rem;
  }

  .diamond-shape-controls {
    grid-template-columns: 1fr 1fr;
    border-radius: 22px;
    padding: 12px;
  }

  .diamond-sparkle {
    width: 11px;
    height: 11px;
  }

  .shape-chip {
    min-height: 74px;
    border-radius: 14px;
    gap: 8px;
    padding: 8px 10px;
  }

  .shape-chip-gem {
    width: 38px;
    height: 38px;
  }

  .shape-chip-text {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .diamond-shape-preview.shape-tone-modern .diamond-shape-copy h3,
  .diamond-shape-preview.shape-tone-bold .diamond-shape-copy h3,
  .diamond-shape-preview.shape-tone-deco .diamond-shape-copy h3,
  .diamond-shape-preview.shape-tone-regal .diamond-shape-copy h3 {
    letter-spacing: 0.02em;
    font-size: clamp(1.9rem, 8.2vw, 2.5rem);
  }
}


/* Diamond Shape Missing Styles */
.sec-hdr-diamond {
  max-width: 760px;
  margin-bottom: 28px;
  text-align: left;
}

.sec-hdr-diamond h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 0.95;
  color: var(--gold-dark, #b8924f);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin: 10px 0 0;
  text-shadow: 0 4px 12px rgba(178, 157, 109, 0.12);
}

.sec-hdr-diamond .eyebrow {
  display: inline-flex;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark, #b8924f);
}

.btn-shop-diamond {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
  background: linear-gradient(135deg, #024530 0%, #036648 68%, #b8924f 140%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(2, 69, 48, 0.22);
  text-decoration: none;
  font-size: 14px;
}

.btn-shop-diamond:hover {
  background: linear-gradient(135deg, #013324 0%, #024530 68%, #c9a96e 138%);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(2, 69, 48, 0.18);
  color: #fff;
}

.diamond-shape-controls {
  border-radius: 26px;
  border: 1px solid rgba(26, 43, 35, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 240, 229, 0.9));
  box-shadow: 0 16px 34px rgba(26, 43, 35, 0.12);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.shape-chip {
  appearance: none;
  min-height: 74px;
  border-radius: 14px;
  border: 1px solid rgba(26, 43, 35, 0.18);
  background: rgba(255, 255, 255, 0.76);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  padding: 8px 10px;
  color: #33493f;
  font: inherit;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.shape-chip::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--shape-accent, #b6a174) 70%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.shape-chip::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg, transparent 0deg 45deg, color-mix(in srgb, var(--shape-accent, #b6a174) 85%, #fff 15%) 60deg 130deg, transparent 148deg 230deg, color-mix(in srgb, var(--shape-accent, #b6a174) 88%, #fff 12%) 248deg 312deg, transparent 326deg 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transform: scale(0.92) rotate(0deg);
  transition: opacity 0.32s ease, transform 0.36s ease;
  pointer-events: none;
}

.shape-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26, 43, 35, 0.14);
  border-color: rgba(26, 43, 35, 0.3);
}

.shape-chip:focus-visible {
  outline: 2px solid rgba(177, 136, 97, 0.55);
  outline-offset: 3px;
}

.shape-chip.is-active {
  background: #024530;
  color: #fff;
  border-color: #024530;
  box-shadow: 0 14px 24px rgba(0, 53, 40, 0.26);
}

.shape-chip.is-active::before {
  transform: scaleX(1);
}

.shape-chip.is-active::after {
  opacity: 0.92;
  transform: scale(1) rotate(0deg);
  animation: shapeRingSpin 4.4s linear infinite;
}

.shape-chip-text {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}

.shape-chip-gem {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(26, 43, 35, 0.22);
  border-radius: 16px;
  display: grid;
  place-items: center;
  transition: transform 0.4s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.shape-chip:hover .shape-chip-gem,
.shape-chip.is-active .shape-chip-gem {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
  border-color: color-mix(in srgb, var(--shape-accent, #b6a174) 62%, rgba(26, 43, 35, 0.35));
}

.shape-chip-gem img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  transform-origin: center;
  filter: saturate(1.18) contrast(1.12) drop-shadow(0 6px 12px rgba(41, 34, 28, 0.24));
}

.shape-chip.is-spinning .shape-chip-gem {
  animation: shapeGemSpinIn 940ms cubic-bezier(0.25, 0.8, 0.2, 1);
}

.shape-chip.is-spinning .shape-chip-gem img {
  animation: shapeGemSpark 940ms ease;
}

@media (max-width: 768px) {
  .diamond-shape-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .shape-chip {
    min-height: 78px;
    padding: 8px 6px;
    gap: 6px;
    border-radius: 12px;
  }

  .shape-chip-gem {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .shape-chip-text {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    line-height: 1.15;
  }
}

@media (max-width: 420px) {
  .diamond-shape-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .shape-chip {
    min-height: 84px;
    padding: 10px 8px;
  }

  .shape-chip-gem {
    width: 36px;
    height: 36px;
  }

  .shape-chip-text {
    font-size: 0.62rem;
  }
}

@keyframes shapeFlash {
  0% {
    opacity: 0;
    transform: translateX(-26%);
  }

  45% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateX(28%);
  }
}

@keyframes shapeSparkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.72) rotate(0deg);
  }

  45% {
    opacity: 1;
    transform: scale(1.08) rotate(15deg);
  }

  70% {
    opacity: 0.44;
    transform: scale(0.88) rotate(-8deg);
  }
}

@keyframes shapeRingSpin {
  from {
    transform: scale(1) rotate(0deg);
  }

  to {
    transform: scale(1) rotate(360deg);
  }
}

@keyframes shapeGemSpinIn {
  0% {
    transform: perspective(620px) rotateY(0deg) scale(1);
  }

  45% {
    transform: perspective(620px) rotateY(180deg) scale(1.12);
  }

  100% {
    transform: perspective(620px) rotateY(360deg) scale(1.06);
  }
}

@keyframes shapeGemSpark {
  0% {
    filter: saturate(1.12) contrast(1.08) drop-shadow(0 4px 10px rgba(41, 34, 28, 0.22));
  }

  45% {
    filter: saturate(1.32) contrast(1.16) brightness(1.08) drop-shadow(0 0 16px color-mix(in srgb, var(--shape-accent, #b6a174) 65%, #fff));
  }

  100% {
    filter: saturate(1.15) contrast(1.09) drop-shadow(0 4px 10px rgba(41, 34, 28, 0.22));
  }
}

/* ── STOREFRONT EXPERIENCE ── */
.cart-box {
  text-decoration: none;
}

.prod-img-link {
  position: absolute;
  inset: 0;
  display: block;
}

.prod-name a,
.qv-popup-name a {
  color: inherit;
  text-decoration: none;
}

.qv-btn-bar,
.qv-add-btn {
  text-decoration: none;
}

.qv-btn-bar,
.qv-add-btn,
.qv-btn-bar:hover,
.qv-add-btn:hover {
  color: #fff;
}

.qv-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qv-wishlist-form {
  margin: 0;
}

.reveal-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.store-flash {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(26, 43, 35, 0.12);
  box-shadow: 0 14px 32px rgba(2, 69, 48, 0.08);
}

.store-flash.success {
  background: rgba(2, 69, 48, 0.08);
  color: #024530;
}

.store-flash.error {
  background: rgba(177, 54, 54, 0.08);
  color: #8c3131;
}

.product-stock-flash[hidden] {
  display: none;
}

.store-btn-primary,
.store-btn-secondary,
.store-link-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.store-btn-primary,
.store-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.store-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #024530 0%, #036648 62%, #b18861 138%);
  box-shadow: 0 18px 34px rgba(2, 69, 48, 0.18);
}

.store-btn-secondary {
  color: #024530;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 69, 48, 0.12);
  box-shadow: 0 14px 28px rgba(2, 69, 48, 0.08);
}

.store-btn-primary:hover,
.store-btn-secondary:hover,
.store-link-btn:hover {
  transform: translateY(-2px);
}

.store-btn-primary:disabled,
.store-btn-secondary:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.58;
  box-shadow: none;
}

.store-link-btn {
  background: transparent;
  color: #8c3131;
  font-size: 12px;
  font-weight: 700;
}

.store-link-inline {
  color: #024530;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.store-field {
  display: grid;
  gap: 8px;
}

.store-field span {
  color: #024530;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-field input,
.store-field textarea,
.store-field select {
  width: 100%;
  border: 1px solid rgba(26, 43, 35, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.store-field textarea {
  min-height: 120px;
  resize: vertical;
}

.store-field input:focus,
.store-field textarea:focus,
.store-field select:focus {
  border-color: rgba(177, 136, 97, 0.72);
  box-shadow: 0 0 0 4px rgba(177, 136, 97, 0.14);
}

.store-field small {
  color: #6a766e;
  font-size: 12px;
  line-height: 1.7;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(2, 69, 48, 0.08);
  color: #024530;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill-accent {
  background: rgba(177, 136, 97, 0.16);
  color: #8b6234;
}

.store-qty {
  display: inline-grid;
  grid-template-columns: 42px 70px 42px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(26, 43, 35, 0.14);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.store-qty button,
.store-qty input {
  border: none;
  background: transparent;
  text-align: center;
  font: inherit;
}

.store-qty button {
  cursor: pointer;
  font-size: 18px;
  color: #024530;
}

.store-qty input {
  font-weight: 700;
  outline: none;
}

.auth-page,
.account-page,
.cart-page,
.checkout-page,
.product-page {
  background:
    radial-gradient(circle at top left, rgba(177, 136, 97, 0.10), transparent 18%),
    linear-gradient(180deg, #fdfaf5 0%, #ffffff 38%, #fbfaf7 100%);
}

.auth-shell,
.account-shell,
.cart-shell,
.checkout-shell,
.product-shell {
  padding: 44px 0 72px;
}

.auth-layout,
.cart-layout,
.checkout-layout,
.product-layout,
.account-grid {
  display: grid;
  gap: 26px;
}

.account-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 26px;
}

.auth-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
}

.auth-panel,
.account-panel,
.cart-lines-panel,
.summary-card,
.checkout-card,
.product-gallery,
.product-copy,
.commerce-empty,
.order-card,
.account-empty {
  border-radius: 30px;
  border: 1px solid rgba(26, 43, 35, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(2, 69, 48, 0.10);
}

.auth-panel {
  padding: 34px;
}

.auth-panel-brand {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(2, 69, 48, 0.98), rgba(4, 89, 63, 0.94) 55%, rgba(177, 136, 97, 0.94));
  position: relative;
  overflow: hidden;
}

.auth-panel-brand::before {
  content: '';
  position: absolute;
  inset: auto -8% -12% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
  pointer-events: none;
}

.auth-panel-brand-alt {
  background:
    linear-gradient(135deg, rgba(177, 136, 97, 0.94), rgba(2, 69, 48, 0.96) 58%, rgba(6, 96, 69, 0.94));
}

.auth-kicker {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

.auth-panel-brand .auth-kicker,
.commerce-hero .auth-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.checkout-card .auth-kicker,
.summary-card .auth-kicker,
.account-panel .auth-kicker,
.account-hero .auth-kicker {
  color: #9d7a3e;
}

.auth-panel-brand h1,
.commerce-hero h1,
.product-copy h1,
.account-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 0.92;
  margin-bottom: 18px;
}

.auth-panel-brand p,
.commerce-hero p,
.auth-form-head p {
  line-height: 1.8;
}

.auth-brand-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.auth-brand-cards article {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-brand-cards strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.auth-brand-cards span {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.auth-panel-form {
  padding: 34px;
}

.account-inline-form {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 43, 35, 0.08);
}

.store-field-readonly input {
  background: rgba(242, 242, 238, 0.96);
  color: #6a766e;
}

.auth-form-head h2,
.account-panel h2,
.summary-card h2,
.checkout-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  line-height: 0.96;
  color: #122018;
  margin-bottom: 10px;
}

.auth-form-head p {
  color: #5e695f;
  margin-bottom: 24px;
}

.auth-form {
  display: grid;
  gap: 18px;
}

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

.auth-form-grid .store-btn-primary {
  grid-column: 1 / -1;
}

.auth-form-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #5f6c63;
}

.auth-form-foot a {
  color: #024530;
  text-decoration: none;
  font-weight: 700;
}

.commerce-hero,
.account-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 30px 32px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #024530 0%, #045d43 56%, #b18861 140%);
  box-shadow: 0 26px 56px rgba(2, 69, 48, 0.18);
}

.account-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cart-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.cart-lines-panel,
.checkout-card,
.product-gallery,
.product-copy,
.account-panel {
  padding: 28px;
}

.cart-line-list,
.account-orders,
.checkout-mini-lines {
  display: grid;
  gap: 16px;
}

.cart-line-card,
.checkout-mini-line,
.order-line-item {
  display: grid;
  gap: 16px;
  align-items: center;
}

.cart-line-card {
  grid-template-columns: 110px minmax(0, 1fr) auto;
  padding: 16px;
  border-radius: 24px;
  background: #fbfaf7;
  border: 1px solid rgba(26, 43, 35, 0.08);
}

.cart-line-media {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.cart-line-media img,
.cart-line-media video,
.checkout-mini-line img,
.checkout-mini-line video,
.checkout-mini-media,
.order-line-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-line-media img,
.cart-line-media video {
  height: 118px;
}

.cart-line-type,
.product-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a6a35;
}

.cart-line-copy h2,
.product-copy h1 {
  margin: 8px 0 10px;
}

.cart-line-copy h2 a {
  color: #122018;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.cart-line-copy p {
  color: #5d6a60;
}

.cart-line-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.summary-panel {
  position: sticky;
  top: 24px;
}

.summary-card {
  padding: 28px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 43, 35, 0.08);
}

.summary-row-total {
  border-bottom: none;
  padding-top: 18px;
}

.summary-row-total strong {
  font-size: 1.3rem;
  color: #024530;
}

.coupon-form {
  display: grid;
  gap: 14px;
  margin: 20px 0 22px;
}

.summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(177, 136, 97, 0.14);
  color: #024530;
  font-weight: 700;
}

.commerce-empty,
.account-empty {
  padding: 46px 30px;
  text-align: center;
}

.commerce-empty h2,
.account-empty h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.commerce-empty p,
.account-empty p {
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.8;
  color: #5d6a60;
}

.commerce-related {
  margin-top: 44px;
}

.checkout-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 22px;
}

.checkout-card-head,
.account-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

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

.store-field-wide {
  grid-column: 1 / -1;
}

.option-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.option-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(26, 43, 35, 0.14);
  background: #fbfaf7;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.option-card:hover,
.option-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(177, 136, 97, 0.66);
  box-shadow: 0 14px 28px rgba(2, 69, 48, 0.08);
}

.checkout-address-picker {
  margin-bottom: 18px;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card span {
  color: #122018;
  font-weight: 800;
}

.option-card small {
  color: #5f6c63;
  line-height: 1.7;
}

.option-card-compact {
  min-height: 70px;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.option-card-detail,
.option-card-delivery {
  align-content: start;
  min-height: 102px;
}

.option-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.option-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(177, 136, 97, 0.14);
  color: #8a6a35;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.option-card-price {
  color: #024530;
  font-size: 1.02rem;
  font-weight: 800;
}

.option-card-luxury {
  min-height: 132px;
  padding: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(199, 179, 138, 0.16), transparent 32%),
    linear-gradient(180deg, #fffefb 0%, #f7f1e8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.option-card-luxury .option-card-title-row span {
  font-size: 1rem;
  line-height: 1.3;
}

.option-card-luxury small {
  font-size: 0.85rem;
  line-height: 1.7;
}

.option-card-luxury.is-selected,
.option-card-luxury:hover {
  box-shadow:
    0 16px 32px rgba(8, 45, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.option-card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-card-grid-shapes {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.option-card-grid-delivery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-shell>.container {
  width: min(1540px, calc(100vw - 24px));
  max-width: min(1540px, calc(100vw - 24px));
}

.product-layout {
  grid-template-columns: minmax(620px, 1.14fr) minmax(520px, 0.86fr);
  gap: 22px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  position: sticky;
  top: 18px;
  align-self: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-gallery-frame {
  grid-column: 2;
  grid-row: 1;
  position: relative;
}

.product-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(177, 136, 97, 0.22), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #cfb391 0%, #b18758 100%);
  box-shadow: 0 26px 52px rgba(120, 87, 46, 0.18);
}

.product-gallery-stage img,
.product-gallery-stage video,
.product-gallery-media {
  width: min(88%, 690px);
  max-height: 620px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-gallery-stage video {
  background: transparent;
}

.product-gallery-stage img.is-swapping,
.product-gallery-stage video.is-swapping,
.product-gallery-media.is-swapping {
  opacity: 0.55;
  transform: scale(0.98);
}

.product-thumb-row {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
  z-index: 2;
}

.product-thumb {
  width: 84px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(177, 136, 97, 0.18);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-thumb img,
.product-thumb video,
.product-thumb-media {
  width: 100%;
  height: 92px;
  object-fit: contain;
  display: block;
}

.product-thumb:hover,
.product-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 26px rgba(87, 56, 22, 0.16);
}

.product-copy {
  padding: 24px;
}

.product-copy-panel {
  padding: 26px 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(220, 197, 154, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 248, 242, 0.98) 100%);
  border: 1px solid rgba(214, 199, 170, 0.42);
  box-shadow: 0 28px 56px rgba(26, 43, 35, 0.07);
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.product-eyebrow {
  color: #9f6d32;
  letter-spacing: 0.18em;
}

.product-wishlist-form-inline {
  margin: 0;
}

.wishlist-toggle-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5e655f;
  font: inherit;
  cursor: pointer;
}

.wishlist-toggle-inline i {
  color: #b9803c;
}

.wishlist-toggle-inline.is-active {
  color: #8c3131;
}

.wishlist-toggle-inline.is-active i,
.wishlist-toggle-btn.is-active i,
.qv-icon-btn.is-active i {
  font-weight: 900;
}

.product-price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 12px 0 16px;
}

.product-price-line .old {
  color: #8e908d;
  text-decoration: line-through;
}

.product-price-line strong {
  font-size: 2rem;
  color: #024530;
}

.product-description {
  color: #5d6a60;
  line-height: 1.75;
  max-width: 56ch;
}

.product-highlights {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}

.product-highlight-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2b4237;
}

.product-highlight-chip i {
  color: #b18861;
  font-size: 0.92rem;
}

.product-highlight-chip span {
  color: #244236;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.product-form {
  display: grid;
  gap: 16px;
}

.product-wishlist-form {
  margin: 16px 0 4px;
}

.wishlist-toggle-btn {
  gap: 10px;
}

.wishlist-toggle-btn.is-active {
  border-color: rgba(177, 136, 97, 0.72);
  color: #8c3131;
}

.product-option-block {
  display: grid;
  gap: 8px;
}

.product-option-block>span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #024530;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-option-block>span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(177, 136, 97, 0.95), rgba(177, 136, 97, 0.16));
}

.product-option-block+.product-option-block {
  padding-top: 0;
}

.option-card-grid-colors,
.option-card-grid-sizes {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.option-card-shape {
  min-height: 172px;
  padding: 18px 16px 20px;
  justify-items: center;
  text-align: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(201, 178, 130, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, #f7f1e6 100%);
}

.option-card-shape-media {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(177, 136, 97, 0.18);
  box-shadow: 0 18px 34px rgba(21, 52, 41, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.option-card-shape-media img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(2, 69, 48, 0.12));
}

.option-card-shape-copy {
  display: grid;
  gap: 5px;
}

.option-card-shape-copy strong {
  color: #122018;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.option-card-shape-copy small {
  color: #6b756d;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.option-card-shape.is-selected .option-card-shape-media,
.option-card-shape:hover .option-card-shape-media {
  transform: translateY(-2px);
  border-color: rgba(177, 136, 97, 0.44);
  box-shadow:
    0 0 0 5px rgba(216, 197, 163, 0.3),
    0 18px 34px rgba(21, 52, 41, 0.1);
}

.option-card-grid-jewellery {
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 18px 14px;
}

.option-card-jewel,
.option-card-stone {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  justify-items: center;
  text-align: center;
}

.option-card-jewel:hover,
.option-card-jewel.is-selected,
.option-card-stone:hover,
.option-card-stone.is-selected {
  transform: none;
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.option-card-jewel-orb,
.option-card-stone-orb {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.option-card-jewel-orb {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(26, 43, 35, 0.1);
}

.option-card-jewel-orb em {
  color: #2a342d;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.option-card-jewel-meta {
  display: block;
  color: #122018;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.option-card-jewel.tone-white .option-card-jewel-orb {
  background: linear-gradient(180deg, #f6f7fb 0%, #e7e9ee 100%);
}

.option-card-jewel.tone-yellow .option-card-jewel-orb {
  background: linear-gradient(180deg, #f3e6a5 0%, #e1c96d 100%);
}

.option-card-jewel.tone-rose .option-card-jewel-orb {
  background: linear-gradient(180deg, #f5c29c 0%, #e7a171 100%);
}

.option-card-jewel input:checked+.option-card-jewel-orb,
.option-card-jewel:hover .option-card-jewel-orb {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(246, 214, 214, 0.92);
  border-color: rgba(228, 149, 149, 0.75);
}

.option-card-grid-stone-weights {
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 16px 14px;
}

.option-card-stone-orb {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(138, 145, 141, 0.62);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92) 0 18%, transparent 19%),
    radial-gradient(circle at 68% 64%, rgba(255, 255, 255, 0.56) 0 12%, transparent 13%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.92) 0 30%, rgba(230, 235, 240, 0.9) 31% 58%, rgba(194, 204, 214, 0.96) 59% 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.94);
}

.option-card-stone.tone-accent .option-card-stone-orb {
  border-color: rgba(228, 149, 149, 0.8);
}

.option-card-stone input:checked+.option-card-stone-orb,
.option-card-stone:hover .option-card-stone-orb {
  transform: scale(1.04);
  box-shadow:
    0 0 0 4px rgba(246, 214, 214, 0.9),
    inset 0 0 0 3px rgba(255, 255, 255, 0.94);
  border-color: rgba(228, 149, 149, 0.8);
}

.option-card-stone-meta {
  display: grid;
  gap: 2px;
}

.option-card-stone-meta strong {
  color: #122018;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.option-card-stone-meta small {
  color: #56645b;
  font-size: 0.76rem;
  line-height: 1.2;
}

.option-card-metal,
.option-card-band {
  padding-left: 18px;
}

.option-card-band {
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  padding-left: 18px;
  align-items: center;
}

.option-card-band .option-card-title-row,
.option-card-band small {
  grid-column: 2;
}

.option-card-metal {
  overflow: hidden;
  min-height: 118px;
  align-content: center;
  padding: 22px 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 243, 236, 0.96) 100%);
  border: 1px solid rgba(204, 190, 164, 0.48);
}

.option-card-metal::after {
  content: "";
  position: absolute;
  inset: auto -28px -34px auto;
  width: 170px;
  height: 170px;
  border-radius: 46px;
  opacity: 1;
  pointer-events: none;
  transform: rotate(22deg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(222, 225, 229, 0.9) 22%, rgba(247, 242, 235, 0.98) 46%, rgba(203, 206, 212, 0.88) 70%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 14px 26px rgba(26, 43, 35, 0.06);
}

.option-card-metal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 28%);
}

.option-card-metal.is-selected,
.option-card-metal:hover {
  border-color: rgba(177, 136, 97, 0.52);
  box-shadow:
    0 18px 34px rgba(26, 43, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.option-card-metal .option-card-title-row,
.option-card-metal small {
  position: relative;
  z-index: 1;
}

.option-card-metal .option-card-title-row {
  max-width: 68%;
}

.option-card-metal .option-card-title-row span {
  font-size: 1.08rem;
}

.option-card-metal small {
  max-width: 62%;
  color: #68746d;
}

.option-card-metal .option-card-badge {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(201, 186, 160, 0.5);
  color: #8a6a35;
}

.option-card-size-pill {
  min-height: 88px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e7 100%);
}

.option-card-size-copy {
  display: grid;
  gap: 5px;
}

.option-card-size-copy strong {
  color: #122018;
  font-size: 1.04rem;
  font-weight: 800;
}

.option-card-size-copy small {
  color: #7a847d;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.option-card-band-thumb {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(214, 199, 170, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.option-card-band-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.option-card-delivery {
  padding-left: 64px;
}

.option-card-delivery-mark {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0 12%, transparent 13%),
    linear-gradient(180deg, #e4d0a5 0%, #b88a44 100%);
  box-shadow: 0 10px 20px rgba(184, 138, 68, 0.24);
}

.option-card-delivery .option-card-price {
  margin-top: auto;
}

.product-purchase-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn-primary-wide {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  letter-spacing: 0.1em;
  background: #112920;
  color: #fff;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-security-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 24px;
}

.product-security-strip div {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  color: #57635d;
}

.product-security-strip i {
  color: #b18861;
  font-size: 1rem;
}

.product-security-strip span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 43, 35, 0.08);
}

.product-meta-strip span,
.account-details span {
  display: block;
  color: #8e918d;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-meta-strip strong,
.account-details strong {
  color: #1a261f;
}

.product-meta-strip-luxury {
  margin-top: 18px;
  padding: 18px 0 0;
}

@media (max-width: 1200px) {
  .product-gallery-stage {
    min-height: 660px;
  }

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

@media (max-width: 980px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .product-gallery-stage {
    min-height: 540px;
  }
}

@media (max-width: 720px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery-frame,
  .product-thumb-row {
    grid-column: auto;
    grid-row: auto;
  }

  .product-thumb-row {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-thumb {
    flex: 0 0 82px;
  }

  .product-gallery-stage {
    min-height: 420px;
    border-radius: 28px;
  }

  .product-gallery-stage img,
  .product-gallery-stage video,
  .product-gallery-media {
    max-height: 360px;
  }

  .product-copy-panel {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .product-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-highlights,
  .product-security-strip,
  .product-meta-strip {
    grid-template-columns: 1fr;
  }

  .option-card-grid-two,
  .option-card-grid-delivery,
  .option-card-grid-shapes {
    grid-template-columns: 1fr;
  }
}

.account-grid {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
}

.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.account-stat-grid article {
  padding: 18px 14px;
  border-radius: 20px;
  background: #fbfaf7;
  text-align: center;
}

.account-stat-grid strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  color: #024530;
}

.account-stat-grid span {
  color: #6a766e;
  font-size: 12px;
}

.account-details {
  display: grid;
  gap: 16px;
}

.profile-layout,
.order-detail-layout,
.wishlist-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 360px;
  gap: 26px;
}

.profile-side-stack,
.order-side-stack,
.wishlist-side-stack {
  display: grid;
  gap: 26px;
  align-content: start;
}

.profile-form-grid {
  align-items: start;
}

.profile-security-head {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 43, 35, 0.08);
}

.profile-security-head h3,
.invoice-section-head h2,
.invoice-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  line-height: 0.94;
  color: #122018;
}

.profile-security-head p,
.profile-note-card p,
.order-request-card p,
.invoice-muted-copy,
.invoice-note-block p {
  color: #5d6a60;
  line-height: 1.8;
}

.compact-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-detail-list {
  gap: 14px;
}

.address-card-grid,
.wishlist-grid {
  display: grid;
  gap: 16px;
}

.address-card,
.wishlist-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(26, 43, 35, 0.10);
  background: #fbfaf7;
}

.address-card-top,
.address-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.address-card-top strong {
  color: #122018;
  font-size: 1rem;
}

.address-card-top span {
  color: #8e7751;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.address-card p {
  margin-top: 8px;
  color: #5e695f;
  line-height: 1.7;
}

.address-card-actions {
  margin-top: 14px;
}

.wishlist-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.wishlist-media {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.wishlist-media img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
}

.wishlist-copy span {
  display: block;
  color: #8e7751;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.wishlist-copy h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 0.98;
}

.wishlist-copy h3 a {
  color: #122018;
  text-decoration: none;
}

.wishlist-copy strong {
  color: #024530;
}

.wishlist-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
}

.wishlist-preview-list {
  display: grid;
  gap: 14px;
}

.wishlist-preview-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(26, 43, 35, 0.08);
  background: #fbfaf7;
}

.wishlist-preview-media {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.wishlist-preview-media img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  display: block;
}

.wishlist-preview-copy {
  display: grid;
  gap: 6px;
}

.wishlist-preview-copy strong {
  color: #122018;
}

.wishlist-preview-copy span {
  color: #6a766e;
  font-size: 13px;
}

.account-summary-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.account-form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.account-empty-compact {
  padding: 32px 24px;
}

.qv-heart.is-active {
  color: #9f6e37;
  border-color: rgba(200, 157, 88, 0.4);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.96) 0%, rgba(234, 212, 171, 0.76) 100%);
}

.order-card {
  padding: 22px;
}

.order-card-top,
.order-card-meta,
.order-card-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.order-card-top strong {
  font-size: 1.2rem;
  color: #122018;
}

.order-card-top span {
  color: #66736a;
}

.order-card-summary {
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid rgba(26, 43, 35, 0.08);
  border-bottom: 1px solid rgba(26, 43, 35, 0.08);
}

.order-card-summary div span {
  display: block;
  margin-bottom: 6px;
  color: #8d938d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.order-line-list {
  display: grid;
  gap: 12px;
}

.order-line-item,
.checkout-mini-line {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  padding: 12px 0;
}

.order-line-item img,
.checkout-mini-line img,
.checkout-mini-line video,
.checkout-mini-media {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.order-line-item span,
.checkout-mini-line span {
  display: block;
  margin-top: 4px;
  color: #6b776e;
  font-size: 13px;
}

.order-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.invoice-panel,
.invoice-summary-card,
.invoice-address-card,
.invoice-meta-card {
  position: relative;
  overflow: hidden;
}

.invoice-panel::before,
.invoice-summary-card::before {
  content: '';
  position: absolute;
  inset: auto auto -80px -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 136, 97, 0.14), transparent 72%);
  pointer-events: none;
}

.invoice-head,
.invoice-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.invoice-head {
  margin-bottom: 22px;
}

.invoice-head-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.invoice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.invoice-info-card,
.invoice-note-block {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(26, 43, 35, 0.09);
  background: #fbfaf7;
}

.invoice-info-card span {
  display: block;
  color: #8d938d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.invoice-info-card strong,
.invoice-address-block strong {
  display: block;
  color: #122018;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.invoice-info-card small {
  color: #607066;
  line-height: 1.7;
}

.invoice-section-head {
  margin: 0 0 18px;
}

.invoice-section-head+.invoice-empty-state {
  margin-bottom: 28px;
}

.invoice-line-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.invoice-line-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(26, 43, 35, 0.08);
  background: #fbfaf7;
}

.invoice-line-media {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.invoice-line-media img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: contain;
}

.invoice-line-copy strong {
  display: block;
  color: #122018;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.invoice-line-copy span,
.invoice-line-copy small {
  display: block;
  color: #607066;
  line-height: 1.7;
}

.invoice-line-total {
  color: #024530;
  font-size: 1.1rem;
}

.order-request-form {
  margin-top: 18px;
}

.compact-note-block {
  margin-top: 16px;
  padding: 16px;
}

.invoice-address-block {
  display: grid;
  gap: 8px;
}

.invoice-address-block p {
  color: #5d6a60;
  line-height: 1.7;
  margin: 0;
}

@media print {

  .ann-bar,
  .site-header,
  .nav-wrap,
  .footer-main,
  .copyright-bar,
  .account-hero-actions,
  .store-btn-secondary,
  .store-btn-primary {
    display: none !important;
  }

  .account-page,
  .order-detail-page {
    background: #fff !important;
  }

  .account-shell {
    padding: 0 !important;
  }

  .account-panel,
  .invoice-panel,
  .invoice-summary-card,
  .invoice-address-card,
  .invoice-meta-card {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.16) !important;
    background: #fff !important;
  }
}

@media (max-width: 1180px) {

  .auth-layout,
  .cart-layout,
  .checkout-layout,
  .product-layout,
  .account-grid,
  .account-secondary-grid,
  .profile-layout,
  .order-detail-layout,
  .wishlist-page-layout {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }

  .product-gallery {
    position: static;
    top: auto;
  }
}

@media (max-width: 860px) {

  .commerce-hero,
  .account-hero {
    display: grid;
    align-items: start;
    padding: 24px;
  }

  .ann-bar .d-flex,
  .ann-right {
    display: grid;
    gap: 10px;
  }

  .auth-form-grid,
  .checkout-grid,
  .option-card-grid,
  .product-meta-strip,
  .account-stat-grid,
  .invoice-grid {
    grid-template-columns: 1fr;
  }

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

  .wishlist-card,
  .invoice-line-card,
  .wishlist-preview-card {
    grid-template-columns: 1fr;
  }

  .cart-line-actions {
    justify-items: start;
  }

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

@media (max-width: 640px) {

  .auth-shell,
  .account-shell,
  .cart-shell,
  .checkout-shell,
  .product-shell {
    padding: 24px 0 56px;
  }

  .auth-panel,
  .account-panel,
  .cart-lines-panel,
  .summary-card,
  .checkout-card,
  .product-gallery,
  .product-copy,
  .order-card,
  .invoice-panel,
  .invoice-summary-card,
  .invoice-address-card,
  .invoice-meta-card,
  .commerce-empty,
  .account-empty {
    padding: 22px;
    border-radius: 24px;
  }

  .auth-panel-brand h1,
  .commerce-hero h1,
  .product-copy h1,
  .account-hero h1 {
    font-size: 2.7rem;
  }

  .auth-form-head h2,
  .account-panel h2,
  .summary-card h2,
  .checkout-card h2,
  .commerce-empty h2,
  .account-empty h3 {
    font-size: 2.3rem;
  }

  .product-gallery-stage {
    min-height: 360px;
  }

  .product-gallery-stage img,
  .product-gallery-stage video,
  .product-gallery-media {
    width: min(92%, 340px);
    max-height: 300px;
  }

  .product-purchase-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ann-drop {
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   RING JOURNEY MODULE (Collection/Product/Diamond)
══════════════════════════════════════ */
.collection-hero {
  background: linear-gradient(135deg, rgba(2, 69, 48, 0.03) 0%, rgba(201, 169, 110, 0.05) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.collection-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--primary);
  margin-bottom: 20px;
}

.collection-hero p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #4a5c53;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Step Bar */
.step-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 40px auto 20px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid rgba(26, 43, 35, 0.1);
  border-radius: 30px;
  color: #8da197;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.step-item.is-active {
  background: #024530;
  color: #fff;
  border-color: #024530;
  box-shadow: 0 8px 20px rgba(2, 69, 48, 0.2);
}

.step-item.is-completed {
  background: #f4f7f5;
  color: #024530;
  border-color: rgba(2, 69, 48, 0.2);
}

.step-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.8rem;
}

.step-item.is-completed span {
  background: #024530;
  color: #fff;
}

.step-item:not(.is-active):not(.is-completed) span {
  background: #f0f3f1;
  color: #8da197;
}

@media (max-width: 768px) {
  .step-bar {
    flex-direction: column;
    padding: 0 20px;
  }
}

/* Diamond Selection Grid */
.diamond-page .container {
  width: min(1540px, calc(100vw - 28px));
  max-width: min(1540px, calc(100vw - 28px));
}

.diamond-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 340px;
  gap: 28px;
  margin: 26px 0 60px;
  align-items: start;
}

.diamond-layout-editorial {
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(214, 196, 160, 0.14), transparent 22%),
    linear-gradient(180deg, #fffdfa 0%, #fdf9f3 100%);
  box-shadow: 0 22px 44px rgba(26, 43, 35, 0.07);
}

.diamond-main {
  display: grid;
  gap: 24px;
}

.diamond-stage-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 240px;
  gap: 16px 28px;
  align-items: center;
  padding: 18px 26px 2px;
}

.diamond-stage-copy,
.diamond-hero-copy {
  display: grid;
  gap: 10px;
}

.diamond-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(177, 136, 97, 0.12);
  color: #8c6a35;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diamond-stage-copy h2,
.diamond-hero-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.94;
  color: #122018;
}

.diamond-stage-copy p,
.diamond-hero-copy p {
  max-width: 760px;
  color: #5d6a60;
  line-height: 1.75;
}

.diamond-stage-visual {
  display: grid;
  place-items: center;
  min-height: 210px;
  pointer-events: none;
}

.diamond-stage-visual img {
  width: min(100%, 220px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(177, 136, 97, 0.18));
}

.diamond-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.diamond-back-button {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
}

.diamond-stage-trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 520px;
  margin-left: auto;
  margin-top: 4px;
  border-left: 1px solid rgba(201, 186, 160, 0.42);
}

.diamond-stage-trust-item {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid rgba(201, 186, 160, 0.42);
}

.diamond-stage-trust-item i {
  color: #b18861;
  font-size: 1.1rem;
}

.diamond-stage-trust-item span {
  color: #122018;
  font-size: 0.86rem;
  font-weight: 700;
}

.diamond-stage-trust-item strong {
  color: #6d756d;
  font-size: 0.82rem;
  font-weight: 500;
}

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

.diamond-grid-editorial {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0 26px 8px;
}

.diamond-card {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(26, 43, 35, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(177, 136, 97, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 242, 0.96));
  box-shadow: 0 20px 48px rgba(2, 69, 48, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.diamond-card-editorial {
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px 18px 18px 16px;
  border-color: rgba(201, 186, 160, 0.56);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 239, 0.98));
}

.diamond-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(2, 69, 48, 0.12);
  border-color: rgba(177, 136, 97, 0.44);
}

.diamond-visual {
  display: grid;
  gap: 12px;
}

.diamond-visual-editorial {
  align-content: start;
}

.diamond-visual-frame {
  display: grid;
  place-items: center;
  min-height: 238px;
  padding: 12px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3efe8 100%);
  border: 1px solid rgba(26, 43, 35, 0.08);
}

.diamond-visual-editorial .diamond-visual-frame {
  min-height: 308px;
  padding: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #121212 0%, #1f1f1f 100%);
}

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

.diamond-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(2, 69, 48, 0.08);
  color: #024530;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diamond-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.diamond-copy-editorial {
  gap: 12px;
  padding: 8px 8px 8px 0;
}

.diamond-copy h3 {
  margin: 0;
  color: #122018;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 2.1vw, 2.45rem);
  line-height: 1.02;
  max-width: 9.6em;
}

.diamond-copy p {
  color: #5d6a60;
  line-height: 1.78;
  margin: 0;
  max-width: 28ch;
}

.diamond-copy-editorial p {
  max-width: 58ch;
}

.diamond-card-meta {
  color: #8c6a35;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.diamond-spec-grid div {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(2, 69, 48, 0.04);
  border: 1px solid rgba(26, 43, 35, 0.08);
}

.diamond-spec-grid dt {
  margin: 0 0 4px;
  color: #7c857d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.diamond-spec-grid dd {
  margin: 0;
  color: #122018;
  font-size: 0.94rem;
  line-height: 1.45;
}

.diamond-action {
  grid-column: 1 / -1;
  padding-top: 4px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.diamond-action-editorial {
  padding-top: 14px;
  border-top: 1px solid rgba(201, 186, 160, 0.32);
}

.diamond-price-stack {
  display: grid;
  gap: 4px;
}

.diamond-price-stack span {
  color: #7c857d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.diamond-price-stack strong {
  color: #b9872f;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.55rem;
  line-height: 0.95;
}

.diamond-empty-state,
.diamond-detail-shell {
  border: 1px solid rgba(26, 43, 35, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(177, 136, 97, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.98));
  box-shadow: 0 24px 54px rgba(2, 69, 48, 0.08);
}

.diamond-empty-state {
  padding: 34px 30px;
}

.diamond-empty-state h3 {
  margin: 0 0 10px;
  color: #122018;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1;
}

.diamond-empty-state p {
  margin: 0;
  max-width: 52ch;
  color: #5d6a60;
  line-height: 1.75;
}

.diamond-detail-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  padding: 28px;
}

.diamond-detail-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.diamond-detail-frame {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f2ede6 100%);
  border: 1px solid rgba(26, 43, 35, 0.08);
  overflow: hidden;
}

.diamond-detail-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.diamond-detail-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.diamond-detail-head {
  display: grid;
  gap: 12px;
}

.diamond-detail-head h3 {
  margin: 0;
  color: #122018;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  line-height: 0.94;
}

.diamond-detail-head p {
  margin: 0;
  color: #5d6a60;
  line-height: 1.82;
  max-width: 60ch;
}

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

.diamond-detail-price>div {
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(26, 43, 35, 0.08);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 6px;
}

.diamond-detail-price span {
  color: #7c857d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diamond-detail-price strong {
  color: #122018;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1;
}

.diamond-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 0;
}

.diamond-detail-specs div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(2, 69, 48, 0.04);
  border: 1px solid rgba(26, 43, 35, 0.08);
}

.diamond-detail-specs dt {
  margin: 0 0 6px;
  color: #7c857d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.diamond-detail-specs dd {
  margin: 0;
  color: #122018;
  font-size: 1rem;
  line-height: 1.5;
}

.diamond-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.diamond-detail-actions form {
  margin: 0;
}

.diamond-detail-actions .store-btn-primary,
.diamond-detail-actions .store-btn-secondary {
  min-width: 220px;
}

.diamond-side {
  position: sticky;
  top: 18px;
  align-self: start;
}

.ring-summary {
  background:
    radial-gradient(circle at top right, rgba(177, 136, 97, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 238, 0.96));
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(26, 43, 35, 0.1);
  box-shadow: 0 20px 48px rgba(2, 69, 48, 0.08);
  position: static;
  top: auto;
  display: grid;
  gap: 14px;
}

.ring-summary-editorial {
  overflow: hidden;
  padding: 18px 18px 0;
  border-radius: 28px;
}

.diamond-kicker-summary {
  background: transparent;
  padding: 0;
  min-height: auto;
}

.ring-summary img,
.ring-summary video,
.ring-summary-media {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 2px;
  background: #fff;
  display: block;
}

.ring-summary h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 0.96;
  color: #122018;
}

.ring-summary-copy {
  margin: 0;
  color: #5d6a60;
  line-height: 1.7;
}

.ring-summary-grid {
  display: grid;
  gap: 12px;
}

.ring-summary-grid-editorial {
  gap: 10px;
}

.ring-summary-grid div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 43, 35, 0.08);
}

.ring-summary-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fdfaf5 100%);
  border: 1px solid rgba(201, 186, 160, 0.28);
}

.ring-summary-row i {
  color: #9f9c95;
  font-size: 0.95rem;
}

.ring-summary-row div {
  display: grid;
  gap: 2px;
}

.ring-summary-row span {
  margin: 0;
}

.ring-summary-grid span {
  color: #7c857d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ring-summary-grid strong {
  color: #122018;
}

.ring-summary-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px -18px 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
}

.ring-summary-footer span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ring-summary-footer strong {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .diamond-layout {
    grid-template-columns: 1fr;
  }

  .diamond-stage-intro {
    grid-template-columns: 1fr;
    padding: 18px 18px 8px;
  }

  .diamond-stage-trust {
    max-width: none;
    margin-left: 0;
  }

  .diamond-grid {
    grid-template-columns: 1fr;
  }

  .diamond-detail-shell {
    grid-template-columns: 1fr;
  }

  .diamond-side {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  .diamond-card {
    grid-template-columns: 1fr;
  }

  .diamond-card-editorial {
    gap: 18px;
  }

  .diamond-inline-specs,
  .diamond-spec-grid,
  .diamond-detail-specs,
  .diamond-detail-price {
    grid-template-columns: 1fr;
  }

  .diamond-visual-frame {
    min-height: 260px;
  }

  .diamond-action {
    flex-direction: column;
    align-items: stretch;
  }

  .diamond-detail-frame {
    min-height: 340px;
  }

  .diamond-price-stack strong {
    font-size: 1.7rem;
  }

  .diamond-stage-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
  }

  .diamond-stage-trust-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .diamond-page .container {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .diamond-hero-copy h2 {
    font-size: 2.2rem;
  }

  .diamond-card,
  .ring-summary {
    padding: 18px;
    border-radius: 20px;
  }

  .diamond-layout-editorial {
    padding: 10px;
    border-radius: 24px;
  }

  .diamond-grid-editorial {
    padding: 0 8px 8px;
  }

  .diamond-copy h3 {
    font-size: 1.7rem;
  }

  .ring-summary-footer {
    margin-left: -18px;
    margin-right: -18px;
  }
}

.mnav-toggle,
.mnav-item-toggle {
  display: none;
}

@media (max-width: 860px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
  }

  .ann-bar {
    padding: 8px 0;
  }

  .ann-bar .d-flex {
    text-align: center;
  }

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

  .site-header {
    padding: 18px 0 14px;
  }

  .site-header .d-flex-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
  }

  .hdr-center {
    position: static;
    left: auto;
    transform: none;
    justify-content: center;
    order: 1;
    grid-column: 1 / 2;
  }

  .hdr-center img {
    max-height: 56px !important;
    width: auto;
  }

  .hdr-right {
    order: 2;
    justify-content: flex-end;
    gap: 10px;
  }

  .hdr-left {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hdr-item,
  .hdr-item:first-child {
    padding-right: 0;
    border-right: 0;
    text-align: center;
  }

  .sq-box,
  .cart-box {
    height: 42px;
  }

  .cart-box {
    padding: 0 12px;
  }

  .cart-box span {
    padding-left: 10px;
  }

  nav.mnav .d-flex-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 14px;
    min-height: 0;
    padding: 12px 16px;
    align-items: center;
  }

  .mnav-toggle {
    display: inline-grid;
    grid-auto-rows: 2px;
    gap: 5px;
    width: 48px;
    height: 44px;
    padding: 12px 11px;
    border-radius: 14px;
    border: 1px solid rgba(2, 69, 48, 0.14);
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(2, 69, 48, 0.08);
  }

  .mnav-toggle span {
    display: block;
    width: 100%;
    background: #17372c;
    border-radius: 999px;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .mnav.is-open .mnav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mnav.is-open .mnav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mnav.is-open .mnav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mnav:not(.is-open) .mnav-item {
    display: none;
  }

  .mnav.is-open .mnav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-column: 1 / -1;
    align-items: center;
    border-top: 1px solid rgba(2, 69, 48, 0.08);
    padding-top: 2px;
  }

  .mnav-item>a {
    padding: 16px 0;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .mnav-item>a::before,
  .mnav-item>a::after,
  .mnav-item>a i {
    display: none;
  }

  .mnav-item-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #17372c;
    cursor: pointer;
    transition: transform 0.22s ease, color 0.22s ease;
  }

  .mnav-item.is-open .mnav-item-toggle {
    color: #b18861;
    transform: rotate(180deg);
  }

  .mega-drop {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8faf8;
    grid-column: 1 / -1;
    border-radius: 18px;
  }

  .mnav-item.is-open .mega-drop {
    max-height: 1400px;
    margin-bottom: 10px;
  }

  .mega-drop::before,
  .mega-drop::after {
    display: none;
  }

  .mega-inner,
  .mega-drop-sm .mega-inner {
    grid-template-columns: 1fr;
    padding: 10px 16px 16px;
    gap: 0;
  }

  .mega-col,
  .mega-col+.mega-col,
  .mega-col:last-of-type {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(2, 69, 48, 0.08);
  }

  .mega-feature {
    padding: 16px 0 0;
  }

  .mega-feature-card {
    border-radius: 16px;
  }

  .cat-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px auto 20px;
  }

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

  .cat-header {
    padding: 12px 16px;
  }

  .cat-body {
    padding: 18px 18px 22px;
  }

  .cat-title {
    font-size: 20px;
  }

  .cat-card .cat-img {
    max-width: 96px;
    right: 6px;
  }

  .category-showcase-section {
    padding: 26px 0 18px;
  }

  .category-showcase-title-row {
    grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
    gap: 12px;
  }

  .category-showcase-heading p {
    font-size: 14px;
    line-height: 1.7;
  }

  .category-showcase-shell {
    padding: 0 58px;
  }

  .category-showcase-viewport {
    border-radius: 24px;
  }

  .category-showcase-viewport::before,
  .category-showcase-viewport::after {
    width: 34px;
  }

  .category-showcase-track {
    gap: 16px;
    padding: 8px 8px 14px;
  }

  .category-showcase-card {
    flex-basis: calc((100% - 16px) / 2);
    grid-template-rows: 230px minmax(0, 1fr);
    min-height: 410px;
    border-radius: 24px;
  }

  .category-showcase-card::after {
    inset: auto 18px 18px 18px;
    height: 50px;
  }

  .category-showcase-copy {
    min-height: 180px;
    padding: 18px 18px 20px;
    gap: 12px;
  }

  .category-showcase-copy::before {
    width: 58px;
  }

  .category-showcase-name {
    font-size: clamp(1.85rem, 6vw, 2.2rem);
  }

  .category-showcase-nav {
    min-width: 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    gap: 0;
    box-shadow: 0 10px 24px rgba(18, 43, 35, 0.12);
  }

  .category-showcase-nav:hover,
  .category-showcase-nav:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }

  .category-showcase-nav-prev {
    left: 8px;
  }

  .category-showcase-nav-next {
    right: 8px;
  }

  .category-showcase-nav-label {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 64px 0 56px;
    background: linear-gradient(180deg, #f8f6f0 0%, #fbfbf8 100%);
  }

  .hero-bg {
    width: 100%;
    opacity: 0.2;
    background-position: center;
  }

  .hero-container {
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 6px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 8vw, 3rem);
    margin-bottom: 18px;
  }

  .hero-price {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 26px;
  }

  .hero-dots {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 24px;
  }

  .products-section,
  .bestselling-section,
  .news-section,
  .celebs-section,
  .newsletter-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sec-hdr-premium,
  .shop-style-heading {
    margin-bottom: 26px;
  }

  .sec-hdr-title-row,
  .shop-style-title-row {
    gap: 12px;
    max-width: none;
  }

  .sec-hdr-title-row h2,
  .shop-style-title-row h2 {
    font-size: clamp(2rem, 8vw, 2.65rem);
    line-height: 1.02;
    white-space: normal;
    text-align: center;
  }

  .best-grid,
  .tab-pane.active {
    gap: 18px;
  }

  .product-rail-shell {
    padding: 0 58px;
  }

  .product-rail-viewport {
    padding: 0;
    overflow: visible;
  }

  .product-rail-nav {
    min-width: 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    gap: 0;
    box-shadow: 0 10px 24px rgba(18, 43, 35, 0.12);
  }

  .product-rail-nav:hover,
  .product-rail-nav:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }

  .product-rail-nav-prev {
    left: 6px;
  }

  .product-rail-nav-next {
    right: 6px;
  }

  .best-grid {
    scroll-padding-left: 12px;
    padding: 2px 12px 14px 12px;
  }

  .product-rail-nav-label {
    display: none;
  }

  .prod-card {
    --prod-card-pad: 18px;
    --prod-media-height: 170px;
    --prod-media-gap: 14px;
    min-height: 0;
    padding: 18px 16px 20px;
    flex-basis: calc((100% - 36px) / 3.05);
    border-radius: 24px;
  }

  .prod-card::before,
  .qv-popup {
    display: none !important;
  }

  .prod-card:hover {
    z-index: 1;
    transform: none;
    box-shadow:
      0 14px 34px rgba(18, 43, 35, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .prod-card:hover .prod-cat,
  .prod-card:hover .prod-name,
  .prod-card:hover .prod-prices {
    opacity: 1 !important;
    transform: none;
  }

  .prod-card:hover .img-default {
    opacity: 1;
    transform: scale(1);
  }

  .prod-card:hover .img-hover {
    opacity: 0;
    transform: scale(1.08);
  }

  .prod-img-box {
    height: 170px;
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .prod-name {
    font-size: 1.55rem;
    margin-bottom: 8px;
  }

  .prod-cat {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .prod-prices {
    padding: 9px 14px;
  }

  .prod-prices .new {
    font-size: 18px;
  }

  .trend-banner {
    min-height: 340px;
    margin-top: 10px;
  }

  .trend-body {
    padding: 72px 12px 44px;
  }

  .trend-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .trend-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .news-grid {
    gap: 16px;
    scroll-padding-left: 12px;
    padding: 2px 12px 14px 12px;
  }

  .news-card {
    flex-basis: calc((100% - 16px) / 2.05);
  }

  .news-card img {
    height: 220px;
  }

  .celeb-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .reviews-summary {
    padding: 0 6px;
  }

  .reviews-assurance span {
    width: 100%;
    justify-content: flex-start;
  }

  .newsletter-section {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .nl-form {
    flex-direction: column;
    gap: 12px;
  }

  .nl-form input,
  .nl-form button {
    width: 100%;
    border-radius: 14px;
  }

  .nl-form input {
    border-right: 1px solid #eaeaea;
  }

  footer {
    padding-top: 56px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }

  .foot-col h4 {
    margin-bottom: 16px;
  }

  .foot-col address {
    line-height: 2;
  }

  .foot-btm-links {
    gap: 10px 18px;
    padding: 18px 0;
  }

  .cookie-banner,
  .cookie-settings-launcher {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cookie-settings-launcher {
    right: auto;
  }

  .cookie-banner-card,
  .cookie-modal {
    border-radius: 24px;
    padding: 22px 20px;
  }

  .cookie-banner-actions,
  .cookie-modal-actions,
  .cookie-category-head {
    display: grid;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-toggle {
    justify-content: space-between;
  }

  .legal-shell {
    width: min(100vw - 20px, 1180px);
    padding: 28px 0 56px;
  }

  .legal-hero,
  .legal-card {
    border-radius: 24px;
    padding: 22px 20px;
  }

  .foot-copy {
    line-height: 1.7;
    padding: 0 6px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }

  .collection-hero {
    padding: 54px 0 40px;
  }

  .collection-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .collection-hero p {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .diamond-card {
    display: grid;
    gap: 16px;
    justify-content: stretch;
  }

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

  .diamond-action .btn-shop,
  .diamond-action .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ann-right {
    grid-template-columns: 1fr;
  }

  .ann-drop {
    width: 100%;
    justify-content: center;
  }

  .site-header .d-flex-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .hdr-center,
  .hdr-right {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hdr-right {
    gap: 12px;
  }

  .cart-box span {
    display: none;
  }

  .hero {
    padding: 52px 0 44px;
  }

  .hero-offer {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-amt {
    font-size: 22px;
  }

  .btn-shop,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .best-grid,
  .tab-pane.active {
    gap: 16px;
  }

  .product-rail-shell {
    padding: 0 46px;
  }

  .product-rail-nav {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .best-grid {
    scroll-padding-left: 10px;
    padding: 2px 10px 14px 10px;
  }

  .prod-card {
    --prod-card-pad: 16px;
    --prod-media-height: 150px;
    --prod-media-gap: 14px;
    min-height: 0;
    padding: 16px 14px 18px;
    flex-basis: calc((100% - 16px) / 2);
    border-radius: 22px;
  }

  .category-showcase-card {
    flex-basis: 82%;
    grid-template-rows: 220px minmax(0, 1fr);
    min-height: 380px;
  }

  .category-showcase-title-row {
    grid-template-columns: 1fr;
  }

  .category-showcase-title-row span {
    display: none;
  }

  .category-showcase-title-row h2 {
    white-space: normal;
  }

  .category-showcase-copy {
    padding: 18px 18px 20px;
    gap: 10px;
  }

  .category-showcase-copy::before {
    width: 48px;
  }

  .category-showcase-name {
    font-size: 1.9rem;
  }

  .category-showcase-sub {
    font-size: 13px;
    line-height: 1.65;
  }

  .category-showcase-shell {
    padding: 0 46px;
  }

  .category-showcase-nav {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .prod-img-box {
    height: 150px;
    border-radius: 16px;
  }

  .prod-name {
    font-size: 1.35rem;
  }

  .trend-banner {
    min-height: 300px;
  }

  .trend-body {
    padding: 62px 10px 38px;
  }

  .reviews-summary {
    padding: 0;
  }

  .review-card {
    flex-basis: 92%;
    padding: 20px 18px 18px;
  }

  .news-card img {
    height: 190px;
  }

  .news-card-body {
    padding: 14px 14px 18px;
  }

  .celeb-card {
    flex-basis: calc((100% - 10px) / 2);
    border-radius: 14px;
  }

  .nl-title {
    font-size: 24px;
  }

  .nl-sub {
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .diamond-details {
    grid-template-columns: 1fr;
  }

  .step-item {
    justify-content: flex-start;
    padding: 10px 14px;
  }
}

@media (max-width: 420px) {

  .container,
  .products-section,
  .bestselling-section,
  .news-section,
  .celebs-section,
  .newsletter-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-showcase-card {
    flex-basis: 88%;
    min-height: 362px;
    border-radius: 22px;
  }

  .sec-hdr-title-row span.sec-line,
  .shop-style-title-row span {
    display: none;
  }

  .best-grid,
  .tab-pane.active {
    gap: 16px;
  }

  .prod-img-box {
    height: 180px;
  }

  .product-rail-shell {
    padding: 0 38px;
  }

  .prod-card {
    --prod-card-pad: 16px;
    --prod-media-height: 180px;
    --prod-media-gap: 14px;
    min-height: 0;
    flex-basis: 86%;
  }

  .best-grid {
    scroll-padding-left: 8px;
    padding: 2px 8px 14px 8px;
  }

  .prod-name {
    font-size: 1.5rem;
  }

  .mnav.is-open .mnav-item {
    grid-template-columns: minmax(0, 1fr) 40px;
  }

  .reviews-assurance {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .ann-bar .d-flex {
    gap: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .ann-bar span {
    text-align: center;
    line-height: 1.4;
    font-size: 10px;
  }

  .ann-right {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .ann-drop {
    min-height: 38px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .site-header {
    padding: 14px 0 12px;
  }

  .site-header .d-flex-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .hdr-left,
  .hdr-center,
  .hdr-right {
    width: 100%;
    justify-content: center;
  }

  .hdr-left {
    order: 3;
    gap: 0;
    display: none;
  }

  .hdr-center {
    order: 1;
  }

  .hdr-right {
    order: 2;
    gap: 10px;
  }

  .hdr-item,
  .hdr-item:first-child {
    padding: 0;
    border: 0;
    align-items: center;
  }

  .hdr-label {
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .hdr-val {
    font-size: 15px;
  }

  .hdr-center img,
  .hdr-center a img {
    max-height: 46px !important;
  }

  .sq-box,
  .cart-box {
    min-height: 42px;
  }

  .sq-box {
    width: 42px;
    height: 42px;
  }

  .cart-box {
    padding: 0 12px;
    gap: 8px;
    min-width: 96px;
  }

  .hero {
    min-height: 0;
    padding: 34px 0 30px;
  }

  .hero-bg {
    opacity: 0.12;
    background-position: 72% center;
  }

  .hero-content {
    max-width: 300px;
    margin: 0 auto;
    padding: 0 2px;
  }

  .hero-offer {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 0.96;
    margin-bottom: 14px;
  }

  .hero-price {
    gap: 6px;
    font-size: 13px;
    margin-bottom: 18px;
  }

  .hero-amt {
    font-size: 1.65rem;
  }

  .btn-shop {
    width: 100%;
    max-width: 232px;
    padding: 12px 18px;
  }

  .hero-dots {
    margin-top: 16px;
  }

  .category-showcase-section {
    padding: 18px 0 10px;
  }

  .category-showcase-heading {
    margin-bottom: 16px;
  }

  .category-showcase-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .category-showcase-kicker::before,
  .category-showcase-kicker::after {
    width: 26px;
  }

  .category-showcase-heading p {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.65;
    margin-top: 12px;
  }

  .category-showcase-title-row h2 {
    font-size: clamp(2.15rem, 8.6vw, 2.8rem);
    line-height: 0.96;
  }

  .category-showcase-shell {
    padding: 0 48px;
  }

  .category-showcase-track {
    padding: 8px 2px 10px;
  }

  .category-showcase-card {
    flex-basis: 86%;
    min-height: 372px;
    grid-template-rows: 196px minmax(0, 1fr);
  }

  .category-showcase-copy {
    min-height: 0;
    padding: 16px 16px 18px;
  }

  .category-showcase-nav {
    top: 34%;
  }

  .shop-style-section {
    padding: 42px 0 12px;
  }

  .shop-style-heading {
    margin-bottom: 18px;
  }

  .shop-style-shell {
    padding: 0 48px;
  }

  .shop-style-track {
    gap: 12px;
    padding: 16px 6px 12px;
  }

  .shop-style-card {
    flex-basis: 84%;
    min-height: 188px;
    grid-template-rows: 122px auto;
  }

  .shop-style-image {
    height: 122px;
  }

  .shop-style-image img {
    width: min(100%, 132px);
    height: 108px;
  }

  .shop-style-copy {
    padding: 14px 10px 12px;
  }

  .shop-style-nav {
    top: 34%;
  }

  .reviews-section {
    padding: 26px 0 40px;
  }

  .reviews-section .sec-hdr-premium {
    margin-bottom: 18px;
  }

  .reviews-summary {
    gap: 14px;
    padding: 0;
    margin-bottom: 20px;
  }

  .reviews-intro {
    padding-top: 16px;
  }

  .reviews-intro p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .reviews-assurance {
    gap: 8px;
    margin-top: 18px;
  }

  .reviews-assurance span {
    width: 100%;
    justify-content: flex-start;
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .reviews-metric-group {
    justify-content: flex-start;
  }

  .reviews-metric {
    max-width: 172px;
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .reviews-metric strong {
    font-size: 2.5rem;
  }

  .reviews-metric span {
    font-size: 0.66rem;
  }

  .reviews-metric small {
    font-size: 0.84rem;
  }

  .reviews-track {
    gap: 14px;
    padding: 2px 2px 4px;
  }

  .review-card {
    flex-basis: 94%;
    min-height: 0;
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .review-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .review-card p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .news-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .news-grid {
    gap: 18px;
  }

  .news-card {
    flex-basis: calc((100% - 18px) / 2.05);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(2, 69, 48, 0.08);
  }

  .news-card img {
    height: 214px;
  }

  .news-card-body {
    padding: 16px 16px 18px;
  }

  .news-article-hero {
    min-height: 68vh;
    padding-top: 82px;
  }

  .news-index-grid,
  .news-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-article-grid {
    grid-template-columns: 1fr;
  }

  .news-article-rail {
    position: static;
  }

  .news-title {
    font-size: 1.45rem;
    line-height: 1.04;
  }

  .news-meta,
  .news-excerpt {
    line-height: 1.65;
  }

  .newsletter-section {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  footer {
    padding-top: 34px;
  }

  .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    margin-bottom: 20px;
    align-items: start;
  }

  .foot-col {
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    min-width: 0;
  }

  .foot-col:first-child,
  .foot-col:last-child {
    grid-column: 1 / -1;
  }

  .foot-col h4 {
    margin-bottom: 12px;
    font-size: 1.35rem;
  }

  .foot-col address,
  .foot-col ul li a {
    font-size: 12px;
    line-height: 1.85;
  }

  .foot-col ul li {
    margin-bottom: 8px;
  }

  .social-row {
    gap: 8px;
    margin-top: 14px;
  }

  .soc-btn {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .top-prod {
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px 0;
  }

  .top-prod img {
    width: 46px;
  }

  .tp-cat {
    font-size: 9px;
    margin-bottom: 3px;
  }

  .tp-name {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .foot-btm-links {
    justify-content: flex-start;
    gap: 8px 14px;
    padding: 14px 0;
    margin-bottom: 14px;
  }

  .cookie-settings-pill {
    width: 100%;
    justify-content: center;
  }

  .legal-card table,
  .legal-card thead,
  .legal-card tbody,
  .legal-card tr,
  .legal-card th,
  .legal-card td {
    display: block;
  }

  .legal-card thead {
    display: none;
  }

  .legal-card td {
    padding: 12px 0;
  }

  .foot-copy {
    font-size: 11px;
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: left;
  }

  .pay-row {
    justify-content: flex-start;
    padding-bottom: 20px;
  }

  .pay-row img {
    max-width: 180px;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .ann-bar .d-flex {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .ann-bar span {
    font-size: 9px;
  }

  .ann-drop {
    min-height: 36px;
    font-size: 9px;
  }

  .site-header {
    padding: 12px 0 10px;
  }

  .hdr-center img,
  .hdr-center a img {
    max-height: 42px !important;
  }

  .sq-box {
    width: 40px;
    height: 40px;
  }

  .cart-box {
    min-height: 40px;
    padding: 0 10px;
  }

  footer {
    padding-top: 30px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .foot-col:first-child,
  .foot-col:last-child {
    grid-column: auto;
  }

  .foot-col h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .foot-col address,
  .foot-col ul li a {
    font-size: 11px;
    line-height: 1.75;
  }

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

  .foot-col:first-child ul,
  .foot-col:last-child ul {
    display: block;
  }

  .top-prod {
    padding: 8px 0;
  }

  .foot-btm-links {
    gap: 8px 12px;
  }

  .foot-copy {
    font-size: 10px;
  }

  .hero-content {
    max-width: 276px;
  }

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

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-price {
    margin-bottom: 16px;
  }

  .btn-shop {
    max-width: 220px;
    padding: 11px 16px;
  }

  .category-showcase-shell,
  .shop-style-shell,
  .product-rail-shell {
    padding: 0 42px;
  }

  .category-showcase-heading p {
    max-width: 280px;
    font-size: 12.5px;
  }

  .category-showcase-title-row h2 {
    font-size: 2rem;
  }

  .category-showcase-card {
    flex-basis: 90%;
    min-height: 356px;
  }

  .category-showcase-nav,
  .shop-style-nav,
  .product-rail-nav {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .shop-style-card {
    flex-basis: 88%;
  }

  .news-card {
    flex-basis: 88%;
  }

  .reviews-metric {
    max-width: 100%;
  }

  .review-card {
    flex-basis: 96%;
  }

  .news-card img {
    height: 196px;
  }

  .news-index-hero {
    padding-top: 54px;
  }

  .news-index-grid,
  .news-premium-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-article-wrap {
    width: min(100vw - 20px, 1680px);
  }

  .news-article-hero-copy {
    padding: 24px;
    border-radius: 24px;
  }

  .news-article-hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
  }

  .news-article-summary {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .news-article-meta span {
    font-size: 0.72rem;
  }

  .news-article-story-card,
  .news-article-rail-card,
  .news-article-missing-shell {
    border-radius: 22px;
  }

  .news-article-story-card,
  .news-article-missing-shell {
    padding: 24px 18px;
  }

  .news-article-lead {
    font-size: 1.25rem;
    line-height: 1.72;
  }

  .news-article-prose p {
    font-size: 0.98rem;
    line-height: 1.84;
  }

  .news-article-detail-list li {
    display: grid;
    gap: 6px;
  }

  .news-article-detail-list strong {
    text-align: left;
  }

  .foot-col {
    padding: 16px 14px;
  }
}

@media (hover: none),
(pointer: coarse) {

  .prod-card::before,
  .qv-popup {
    display: none !important;
  }

  .prod-card {
    min-height: 0 !important;
    height: auto;
    padding-bottom: 22px;
  }

  .best-grid {
    align-items: flex-start;
    overflow-y: hidden;
  }

  .prod-card:hover {
    z-index: 1;
    transform: none;
    box-shadow:
      0 14px 34px rgba(18, 43, 35, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  .prod-card:hover .prod-cat,
  .prod-card:hover .prod-name,
  .prod-card:hover .prod-prices {
    opacity: 1 !important;
  }

  .prod-card:hover .img-default {
    opacity: 1;
    transform: scale(1);
  }

  .prod-card:hover .img-hover {
    opacity: 0;
    transform: scale(1.08);
  }

  .news-card:hover,
  .review-card:hover,
  .shop-style-card:hover,
  .cat-card:hover,
  .mega-feature-card:hover {
    transform: none;
  }
}

/* --- Global Top Navbar Luxury Overrides --- */

.header-luxury-wrapper {
  background: linear-gradient(180deg, #fefbfa 0%, #fcf7ed 100%);
  position: relative;
  z-index: 100;
}

.promo-strip {
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.promo-strip .d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.promo-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.promo-item small {
  color: #b8924f;
  margin-left: 6px;
  font-weight: 400;
  text-transform: capitalize;
}

.promo-divider {
  width: 1px;
  height: 14px;
  background: rgba(200, 169, 110, 0.3);
}

.luxury-site-header {
  padding: 30px 0;
  border-bottom: none;
  background: transparent !important;
  position: relative;
  z-index: 1200;
}

.luxury-site-header .d-flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hdr-left,
.hdr-right {
  flex: 1;
}

.hdr-left {
  position: relative;
  z-index: 1250;
}

.hdr-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.luxury-search-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 0 16px 0 8px;
  box-shadow: 0 10px 28px rgba(17, 41, 32, 0.08);
  width: 100%;
  max-width: 360px;
  min-height: 54px;
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.18);
  z-index: 1;
}

.luxury-search-pill i {
  color: #c9a96e;
  font-size: 1.1rem;
}

.luxury-search-submit {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
  margin-right: 10px;
}

.luxury-search-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0.08));
}

.luxury-search-pill input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  color: #666;
  width: 100%;
}

.luxury-search-pill input::placeholder {
  color: #8f8a82;
}

.luxury-search-pill:focus-within {
  border-color: rgba(201, 169, 110, 0.42);
  box-shadow: 0 16px 34px rgba(17, 41, 32, 0.12);
}

.luxury-search-pill.is-open {
  z-index: 1400;
}

.luxury-search-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: min(480px, calc(100vw - 32px));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 248, 241, 0.985) 100%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 26px;
  box-shadow: 0 26px 54px rgba(17, 41, 32, 0.16);
  padding: 12px;
  z-index: 1500;
  backdrop-filter: blur(18px);
}

.luxury-search-dropdown[hidden] {
  display: none;
}

.luxury-search-results {
  display: grid;
  gap: 8px;
}

.luxury-search-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 18px;
  text-decoration: none;
  color: #14211b;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.luxury-search-item:hover,
.luxury-search-item.is-active {
  background: linear-gradient(135deg, rgba(250, 245, 235, 0.95), rgba(248, 239, 225, 0.98));
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.22);
}

.luxury-search-cta {
  grid-template-columns: 58px minmax(0, 1fr) auto;
}

.luxury-search-thumb,
.luxury-search-thumb-fallback {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.luxury-search-thumb-fallback {
  color: #c9a96e;
  font-size: 1rem;
}

.luxury-search-copy {
  min-width: 0;
}

.luxury-search-copy strong,
.luxury-search-copy span {
  display: block;
}

.luxury-search-copy strong {
  color: #132920;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.luxury-search-copy span {
  margin-top: 3px;
  color: #8a7f72;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.luxury-search-arrow {
  color: #c9a96e;
  font-size: 0.82rem;
  opacity: 0.84;
}

.luxury-search-empty {
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 245, 237, 0.92));
  text-align: left;
}

.luxury-search-empty strong,
.luxury-search-empty span {
  display: block;
}

.luxury-search-empty strong {
  color: #132920;
  font-size: 0.92rem;
}

.luxury-search-empty span {
  margin-top: 5px;
  color: #8a7f72;
  font-size: 0.76rem;
  line-height: 1.65;
}

.luxury-logo-box img {
  height: 60px;
}

.hdr-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.luxury-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: transform 0.2s;
  position: relative;
}

.luxury-icon-circle:hover {
  transform: translateY(-2px);
  color: #c9a96e;
}

.luxury-icon-circle.is-active {
  color: #b84f6a;
  box-shadow: 0 10px 24px rgba(184, 79, 106, 0.14);
}

.luxury-icon-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a96e 0%, #b84f6a 100%);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(184, 79, 106, 0.22);
}

.luxury-cart-pill {
  display: inline-flex;
  align-items: center;
  background: #112920;
  color: #fff;
  border-radius: 30px;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.luxury-cart-pill:hover {
  background: #18382d;
}

.luxury-cart-pill i {
  color: #c9a96e;
  margin-right: 10px;
  font-size: 1.1rem;
}

.luxury-mnav {
  background: transparent !important;
  border-bottom: none !important;
}

.luxury-mnav .d-flex-nav {
  display: flex;
  justify-content: center;
}

.luxury-mnav-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
}

.luxury-mnav-pill .mnav-item>a {
  padding: 24px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
}

.luxury-mnav-pill .mnav-item>a.active {
  /* border-bottom: 2px solid #c9a96e; */
  color: #112920;
}

.luxury-mnav-emblem {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emblem-shield {
  position: absolute;
  top: -10px;
  width: 64px;
  height: 74px;
  background: #112920;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c9a96e;
  font-size: 1.5rem;
  box-shadow: 0 0 0 2px #c9a96e inset;
  z-index: 10;
}

/* --- Mega-Menu Luxury Rings Overrides --- */

.luxury-mnav .mnav-item.has-mega:hover .mega-drop-wide {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) !important;
  pointer-events: auto;
}

.mega-drop-wide {
  width: 100vw;
  max-width: 1400px;
  left: 50%;
  transform: translateX(-50%) translateY(10px) !important;
  right: auto;
  padding: 30px 20px 0 20px; /* Generous top padding creates space but keeps hover bridge */
  margin-top: 0; 
  pointer-events: none;
  background: transparent !important;
  box-shadow: none !important;
}

.mega-drop-wide::before, .mega-drop-wide::after {
  display: none !important;
}

.luxury-mega-menu {
  display: grid;
  gap: 30px;
  padding: 40px;
  background: #fdfaf5;
  border: 1px solid #e0d5c1;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(13, 32, 25, 0.15);
}

.luxury-mega-menu .mega-col-title {
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #112920;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  padding-bottom: 12px;
}

/* --- Premium News Grid --- */
.news-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.news-card-premium {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.news-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.news-card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 60%;
  /* Aspect ratio */
}

.news-card-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-date-day {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #333;
  line-height: 1;
  margin-bottom: 4px;
}

.news-date-my {
  display: block;
  font-size: 0.7rem;
  color: #c9a96e;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.news-cat-icon {
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: #c9a96e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 4px solid #fff;
  z-index: 2;
}

.news-card-body-premium {
  padding: 40px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-cat-label {
  color: #c9a96e;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.news-title-premium {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #112920;
  margin-bottom: 16px;
  line-height: 1.3;
}

.news-excerpt-premium {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  color: #c9a96e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-read-more i {
  margin-left: 8px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.news-card-premium:hover .news-read-more i {
  background: #c9a96e;
  color: #fff;
}

@media (max-width: 991px) {
  .news-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .news-premium-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* --- Newsletter Replica V3 --- */
.newsletter-v3-banner {
  max-width: 1400px;
  margin: 60px auto;
  border-radius: 30px;
  background-color: #fcfaf5;
  background-image: 
    url('../uploads/popular_leaves.png'),
    url('../uploads/popular_silk.png');
  background-position: 
    -50px bottom,
    center;
  background-size: 
    30% auto,
    cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.6);
  min-height: 480px;
  overflow: hidden;
}

/* Composite Background Elements */
.nl-v3-green-curve {
  position: absolute;
  top: -10%;
  right: 0;
  width: 50%;
  height: 120%;
  background-color: #0b1f15;
  border-left: 4px solid #c9a96e;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 300px;
  z-index: 1;
  box-shadow: -15px 0 40px rgba(0,0,0,0.15);
}

.nl-v3-ring-img {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 45%;
  height: 120%;
  background-image: url('../uploads/premium_ring_box_transparent.png');
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

/* Ensure inner content stays above background */
.nl-v3-content {
  position: relative;
  z-index: 3;
  width: 58%;
  padding: 60px 40px 60px 140px; /* Space for floating icon */
  display: flex;
  align-items: center;
}

.nl-v3-floating-icon {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  background: #082116;
  border-radius: 50%;
  border: 3px solid #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #c9a96e;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 0 15px rgba(0,0,0,0.5);
  z-index: 5;
}
.nl-v3-floating-orbit-1 {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nl-v3-floating-orbit-2 {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px dashed rgba(200, 169, 110, 0.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nl-v3-text-area {
  max-width: 600px;
  text-align: center;
}

.nl-v3-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c6a3f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.nl-v3-kicker::before,
.nl-v3-kicker::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(140, 106, 63, 0.4);
  margin: 0 15px;
}

.nl-v3-kicker-diamond {
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 1px solid #8c6a3f;
  transform: rotate(45deg);
  margin: 0 8px;
}

.nl-v3-title {
  font-family: var(--serif);
  font-size: 4rem;
  color: #082116;
  margin-bottom: 10px;
  line-height: 1.1;
}

.nl-v3-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.nl-v3-divider::before,
.nl-v3-divider::after {
  content: "";
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.6), transparent);
}
.nl-v3-divider-icon {
  margin: 0 15px;
  color: #c9a96e;
  font-size: 1rem;
}

.nl-v3-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 35px;
}

.nl-v3-form {
  display: flex;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05), inset 0 0 10px rgba(255,255,255,0.5);
  margin-bottom: 40px;
  position: relative;
  transition: all 0.3s ease;
}
.nl-v3-form:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08), inset 0 0 10px rgba(255,255,255,0.8);
  border-color: rgba(200, 169, 110, 0.6);
}

.nl-v3-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.nl-v3-input-icon {
  color: #c9a96e;
  font-size: 1.2rem;
  margin-right: 12px;
}

.nl-v3-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  width: 100%;
}
.nl-v3-form input::placeholder {
  color: #888;
}

.nl-v3-form button {
  background: linear-gradient(135deg, #082116 0%, #113625 100%);
  color: #fff;
  border: 1px solid rgba(200, 169, 110, 0.8);
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(8, 33, 22, 0.3);
}
.nl-v3-form button i {
  margin-left: 10px;
  color: #c9a96e;
  transition: transform 0.3s ease;
}
.nl-v3-form button:hover {
  background: #113625;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 33, 22, 0.4);
}
.nl-v3-form button:hover i {
  transform: translateX(4px);
}

/* Features */
.nl-v3-features {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.nl-v3-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nl-v3-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fefdfb 0%, #f4eee3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b18861;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06), inset 0 2px 4px rgba(255,255,255,0.8);
  border: 1px solid rgba(200, 169, 110, 0.3);
}

.nl-v3-feature-text {
  font-size: 0.65rem;
  font-weight: 800;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
}

/* Responsive */
@media (max-width: 1200px) {
  .nl-v3-content {
    width: 65%;
    padding-left: 110px;
  }
}
@media (max-width: 991px) {
  .nl-v3-content {
    width: 100%;
    padding: 60px 30px;
    justify-content: center;
  }
  .nl-v3-floating-icon {
    display: none;
  }
  .nl-v3-green-curve {
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-top: 4px solid #c9a96e;
    top: 50%;
    height: 50%;
  }
  .nl-v3-ring-img {
    width: 100%;
    height: 50%;
    bottom: 0;
    right: 0;
    background-position: center bottom;
  }
  .nl-v3-text-area {
    background: rgba(253, 250, 246, 0.9);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
}
@media (max-width: 768px) {
  .nl-v3-features {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nl-v3-title {
    font-size: 3rem;
  }
}

/* --- Premium Reviews Section V2 --- */
.reviews-section-v2 {
  position: relative;
  max-width: 100%;
  padding: 80px 40px;
  background-color: #f9faf5;
  background-image: url('../uploads/reviews-side-bg.png');
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* Keep floating elements inside */
}

.reviews-v2-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.reviews-hdr-v2 {
  text-align: center;
  margin-bottom: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.reviews-hdr-kicker-v2 {
  display: inline-flex;
  align-items: center;
  color: #c9a96e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reviews-hdr-kicker-v2::before,
.reviews-hdr-kicker-v2::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(200, 169, 110, 0.4);
  margin: 0 15px;
}

.reviews-hdr-v2 h2 {
  font-family: var(--serif);
  font-size: 3rem;
  color: #112920;
  margin-top: 15px;
  margin-bottom: 5px;
}

.reviews-hdr-diamond {
  color: #c9a96e;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.reviews-hdr-v2 p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.reviews-badges-v2 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.review-badge-v2 {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.review-badge-v2 i {
  color: #c9a96e;
  margin-right: 10px;
  font-size: 1rem;
}

.reviews-rating-card-v2 {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #112920 0%, #1e4d3a 100%);
  border-radius: 20px;
  padding: 25px 35px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(17, 41, 32, 0.3), 0 0 0 1px rgba(200, 169, 110, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.rating-huge-v2 {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: #c9a96e;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-stars-v2 {
  color: #c9a96e;
  font-size: 1.1rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.rating-label-v2 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.rating-count-v2 {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.reviews-carousel-v2 {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}

.review-card-v2 {
  background: #fff;
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 15px;
  /* Spacing for the track */
  position: relative;
}

.review-quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: #c9a96e;
  line-height: 1;
  position: absolute;
  top: 15px;
  left: 25px;
  opacity: 0.8;
}

.review-stars-v2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.review-stars-v2 .star {
  color: #112920;
  font-size: 0.9rem;
  margin-right: 2px;
}

.review-stars-v2 .verified {
  margin-left: 10px;
  font-size: 0.8rem;
  color: #112920;
  display: flex;
  align-items: center;
  font-weight: 600;
  background: #eef4f1;
  padding: 3px 8px;
  border-radius: 12px;
}

.review-stars-v2 .verified i {
  color: #112920;
  margin-right: 4px;
}

.review-title-v2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #112920;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.review-excerpt-v2 {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  flex: 1;
}

.review-footer-v2 {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 15px;
  border: 1px solid rgba(200, 169, 110, 0.4);
  object-fit: cover;
}

.review-author-info {
  flex: 1;
}

.review-author-name-v2 {
  display: block;
  font-weight: 700;
  color: #112920;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.review-author-meta-v2 {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

.review-footer-icon {
  color: #c9a96e;
  font-size: 1.2rem;
}

.reviews-carousel-v2 .reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
  font-size: 1.1rem;
}

.reviews-carousel-v2 .reviews-nav-prev {
  left: -25px;
}

.reviews-carousel-v2 .reviews-nav-next {
  right: -25px;
}

.reviews-carousel-v2 .reviews-nav:hover {
  background: #fbf6ec;
  border-color: #c9a96e;
}

/* Base links */
.mega-link-with-icon,
.mega-link-with-image,
.mega-link-with-large-image {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  color: #333;
  text-decoration: none;
  margin-bottom: 4px;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.85rem;
}

.mega-link-with-icon:hover,
.mega-link-with-image:hover,
.mega-link-with-large-image:hover {
  background: #fbf6ec;
  color: #112920;
}

/* Browse Rings links */
.mega-link-with-icon {
  justify-content: space-between;
}

.mega-link-inner {
  display: flex;
  align-items: center;
}

.mega-link-inner i {
  width: 24px;
  color: #c9a96e;
  font-size: 1.1rem;
  margin-right: 12px;
  text-align: center;
}

.mega-link-with-icon .arrow-icon {
  font-size: 0.7rem;
  color: #c9a96e;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.mega-link-with-icon:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Image wrappers */
.mega-link-with-image .img-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fbf6ec;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  border: 1px solid rgba(200, 169, 110, 0.3);
}

.mega-link-with-image .img-wrap img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.mega-link-with-image .shape-img-wrap {
  background: transparent;
  border: none;
}

.mega-link-with-image .shape-img-wrap img {
  width: 24px;
  height: 24px;
}

/* Large image wrappers for collections */
.mega-link-with-large-image .large-img-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fbf6ec;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  overflow: hidden;
}

.mega-link-with-large-image .large-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature Card */
.mega-col-feature-card {
  height: 100%;
}

.feature-card-inner {
  height: 100%;
  background: #112920;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card-inner:hover .feature-img img {
  transform: scale(1.05);
}

.feature-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-content i {
  color: #c9a96e;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-content h3 {
  color: #c9a96e;
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-content .btn-explore {
  margin-top: auto;
  align-self: flex-start;
  color: #c9a96e;
  border: 1px solid rgba(200, 169, 110, 0.5);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.feature-content .btn-explore:hover {
  background: #c9a96e;
  color: #112920;
}

/* PREMIUM AUTH PAGE REDESIGN */
.premium-auth-section {
  background: #fdfaf5;
  height: calc(100vh - 90px);
  min-height: 620px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.premium-auth-layout {
  display: flex;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(17, 41, 32, 0.08);
  overflow: hidden;
  max-width: 1440px;
  width: 100%;
  height: calc(100% - 30px);
  margin: 0 auto;
}

.premium-auth-brand {
  flex: 1.1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: #fff;
}

.premium-auth-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(1, 29, 22, 0.75) 0%, rgba(1, 29, 22, 0.95) 100%);
  z-index: 1;
}

.premium-auth-brand-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.premium-auth-logo {
  font-family: var(--serif);
  font-size: 36px;
  color: #c9a96e;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.premium-auth-logo i {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.premium-auth-subtitle {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: #c9a96e;
  text-transform: uppercase;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.premium-auth-subtitle::before,
.premium-auth-subtitle::after {
  content: '';
  height: 1px;
  width: 30px;
  background: rgba(201, 169, 110, 0.5);
}

.auth-ornament-header {
  color: #c9a96e;
  font-size: 12px;
  margin-bottom: 20px;
}

.premium-auth-brand h1 {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}

.premium-auth-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 60px;
}

.premium-auth-features {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.premium-feature {
  text-align: center;
  flex: 1;
}

.premium-feature i {
  color: #c9a96e;
  font-size: 20px;
  margin-bottom: 12px;
}

.premium-feature span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-weight: 500;
}

.premium-auth-form-side {
  flex: 1;
  background: #fdfaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 5;
}

.premium-auth-box {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(17, 41, 32, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 30px 45px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.premium-auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 35px;
  position: relative;
}

.premium-auth-tab {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.3s;
}

.premium-auth-tab.active {
  color: #112920;
}

.premium-auth-tab-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50%;
  height: 2px;
  background: #c9a96e;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-auth-header {
  text-align: center;
  margin-bottom: 35px;
}

.premium-auth-header .ornament {
  color: #c9a96e;
  font-size: 10px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.premium-auth-header h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: #112920;
  margin-bottom: 8px;
  font-weight: 600;
}

.premium-auth-header p {
  font-size: 13px;
  color: #6a766e;
}

.premium-auth-forms-container {
  position: relative;
  flex: 1;
}

.premium-auth-view {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.premium-auth-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.premium-form {
  display: grid;
  gap: 20px;
}

.premium-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.premium-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #112920;
  margin-bottom: 8px;
}

.premium-input-wrap {
  position: relative;
}

.premium-input-wrap>i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aba5;
  font-size: 14px;
}

.premium-input-wrap input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(17, 41, 32, 0.1);
  border-radius: 8px;
  padding: 0 45px;
  font-size: 13px;
  color: #112920;
  background: #fdfaf5;
  transition: all 0.3s;
}

.premium-input-wrap input:focus {
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
  outline: none;
  background: #fff;
}

.premium-input-wrap input::placeholder {
  color: #a0aba5;
}

.premium-input-wrap .toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0aba5;
  cursor: pointer;
  padding: 0;
}

.premium-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: -5px;
}

.premium-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #112920;
  font-weight: 500;
}

.premium-checkbox input {
  accent-color: #112920;
  width: 15px;
  height: 15px;
}

.premium-forgot {
  color: #c9a96e;
  text-decoration: none;
  font-weight: 600;
}

.premium-btn-submit {
  width: 100%;
  height: 48px;
  background: #112920;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  margin-top: 5px;
}

.premium-btn-submit:hover {
  background: #0d2019;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(17, 41, 32, 0.15);
}

.premium-form-switch {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #6a766e;
}

.premium-form-switch a {
  color: #c9a96e;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
}

@media (max-width: 992px) {
  .premium-auth-layout {
    flex-direction: column;
    max-width: 500px;
  }

  .premium-auth-brand {
    padding: 50px 30px;
  }

  .premium-auth-features {
    display: none;
  }
}

/* Premium Wishlist Layout */
.premium-wishlist-wrapper {
  background: #fdfaf5;
  padding-bottom: 80px;
}

.premium-wishlist-hero {
  position: relative;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 100%;
  min-height: 280px;
  background-image: url('../uploads/wishlist_hero_perfect.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-wishlist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(13, 44, 30, 0.95) 0%, rgba(13, 44, 30, 0.8) 50%, rgba(13, 44, 30, 0.2) 100%);
  border-radius: 20px;
}

.premium-wishlist-hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.hero-text-col {
  max-width: 700px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c9a96e;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-kicker .line {
  width: 40px;
  height: 1px;
  background: #c9a96e;
}

.hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 15px;
}

.hero-heading .gold-text {
  color: #c9a96e;
}

.hero-text-col p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.hero-feature-badges {
  display: flex;
  gap: 15px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(13, 44, 30, 0.6);
  backdrop-filter: blur(5px);
}

.hero-badge .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #c9a96e;
}

.hero-badge span {
  font-size: 0.85rem;
  color: #fff;
}

.hero-actions-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-btn-dark,
.hero-btn-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-btn-dark {
  background: #0d2019;
  border: 1px solid #c9a96e;
  color: #fff;
}

.hero-btn-dark:hover {
  background: #112d22;
}

.hero-btn-light {
  background: #fdfaf5;
  border: 1px solid #fdfaf5;
  color: #112920;
}

.hero-btn-light:hover {
  background: #fff;
}

.btn-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-left i {
  font-size: 1.1rem;
}

.premium-wishlist-main {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

.premium-wishlist-gallery {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(17, 41, 32, 0.04);
}

.premium-wishlist-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.premium-wishlist-gallery-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.premium-wishlist-gallery-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #fdfaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.premium-wishlist-gallery-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #112920;
  margin: 0;
  line-height: 1;
}

.premium-wishlist-gallery-title .kicker {
  font-size: 0.75rem;
  font-weight: 700;
  color: #b18861;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  display: block;
}

.premium-wishlist-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 50px;
  color: #112920;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #f0eadd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.premium-wishlist-count-pill i {
  color: #112920;
}

.premium-wishlist-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.premium-wishlist-card {
  display: flex;
  background: #fff;
  border: 1px solid #f0eadd;
  border-radius: 16px;
  padding: 15px;
  gap: 25px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.premium-wishlist-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: #e5dac1;
}

.premium-wishlist-card-media {
  width: 240px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-image: url('../uploads/wishlist_card_bg.png');
  background-size: cover;
  background-position: center;
}

.premium-wishlist-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.1);
}

.premium-wishlist-card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e74c3c;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.premium-wishlist-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-wishlist-card-meta {
  display: inline-flex;
  background: #fdfaf5;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #b18861;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
}

.premium-wishlist-card-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #112920;
  margin: 0 0 5px;
}

.premium-wishlist-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #8c9690;
  margin-bottom: 10px;
}

.premium-wishlist-card-rating .stars {
  color: #c9a96e;
  font-size: 0.8rem;
}

.premium-wishlist-card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #112920;
  margin-bottom: 15px;
}

.premium-wishlist-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #112920;
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-add-cart:hover {
  background: #0d2019;
  transform: translateY(-1px);
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  color: #112920;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8e5;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-view-details:hover {
  background: #fdfaf5;
  border-color: #c9a96e;
}

.btn-delete-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #feeaea;
  color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-delete-item:hover {
  background: #feeaea;
}

/* Quick Summary Sidebar */
.premium-wishlist-summary {
  display: flex;
  flex-direction: column;
}

.premium-wishlist-summary-top {
  background: radial-gradient(circle at top right, #112d22 0%, #0d2019 70%);
  border-radius: 20px 20px 0 0;
  padding: 30px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 150px;
}

.summary-top-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: transparent;
  color: transparent;
  -webkit-text-stroke: 1px #c9a96e;
}

.summary-top-text .kicker {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c9a96e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.summary-top-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #fff;
  margin: 0;
}

.summary-floating-box {
  position: absolute;
  right: -20px;
  top: -50px;
  width: 170px;
  height: 170px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.6));
  z-index: 2;
}

.summary-floating-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.premium-wishlist-summary-bottom {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(17, 41, 32, 0.06);
}

.summary-action-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.summary-action-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0eadd;
}

.summary-action-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #fff 0%, #f4eedf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: transparent;
  -webkit-text-stroke: 1px #8c6a35;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.summary-action-text {
  flex: 1;
}

.summary-action-text strong {
  display: block;
  font-size: 0.95rem;
  color: #112920;
  margin-bottom: 3px;
}

.summary-action-text span {
  display: block;
  font-size: 0.8rem;
  color: #6a766e;
}

.summary-action-arrow {
  color: #112920;
  font-size: 0.9rem;
}

.summary-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background: #fdfaf5;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #f4eedf;
}

.summary-badge-item {
  display: flex;
  gap: 10px;
}

.summary-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #fff 0%, #f4eedf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-stroke: 1px #c9a96e;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.summary-badge-text strong {
  display: block;
  font-size: 0.8rem;
  color: #112920;
  margin-bottom: 2px;
}

.summary-badge-text span {
  display: block;
  font-size: 0.7rem;
  color: #6a766e;
  line-height: 1.3;
}

.btn-view-saved {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 25px;
  background: #0d2019;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-view-saved:hover {
  background: #112920;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 32, 25, 0.2);
}

@media (max-width: 1200px) {
  .premium-wishlist-main {
    grid-template-columns: 1fr;
  }
  .premium-wishlist-items {
    grid-template-columns: 1fr;
  }
}

/* Premium Account Dashboard */
.premium-account-wrapper {
  background: #fdfaf5;
  padding-bottom: 80px;
}

.premium-account-hero {
  position: relative;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 100%;
  min-height: 280px;
  background-image: url('../uploads/account_hero_bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-account-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(13, 44, 30, 0.95) 0%, rgba(13, 44, 30, 0.8) 50%, rgba(13, 44, 30, 0.2) 100%);
  border-radius: 20px;
}

.premium-account-hero > div {
  position: relative;
  z-index: 2;
}

.hero-actions-col-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-btn-dark-outline:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: #c9a96e;
}

.hero-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e5c381 0%, #c9a96e 100%);
  color: #112920;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
}

.hero-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.4);
}

.premium-account-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  max-width: 100%;
}

.premium-account-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.premium-account-panel {
  background: #fdfaf5;
  border: 1px solid #f0eadd;
  border-radius: 16px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.panel-watermark-bottom::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 250px;
  height: 250px;
  background-image: url('../uploads/account_floral_watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.panel-watermark-right::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background-image: url('../uploads/account_floral_watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #112920;
  font-variant: small-caps;
  letter-spacing: 1px;
}

.panel-title i {
  color: #c9a96e;
  font-size: 1.1rem;
}

.panel-action, .panel-action-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #112920;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.panel-action-btn {
  padding: 8px 16px;
  border: 1px solid #e0d5c1;
  border-radius: 50px;
}

.panel-action-btn:hover {
  background: #f4eedf;
  border-color: #c9a96e;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.snapshot-item {
  background: #fff;
  border: 1px solid #f0eadd;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.snapshot-item i {
  font-size: 1.5rem;
  color: transparent;
  -webkit-text-stroke: 1px #c9a96e;
  margin-bottom: 5px;
}

.snapshot-item strong {
  font-size: 1.5rem;
  color: #112920;
}

.snapshot-item span {
  font-size: 0.8rem;
  color: #777;
}

.snapshot-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.detail-row i {
  color: #c9a96e;
  font-size: 1.1rem;
  margin-top: 3px;
}

.detail-row div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-row span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888;
}

.detail-row strong {
  font-size: 0.95rem;
  color: #112920;
  line-height: 1.4;
}

/* Empty States */
.premium-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.premium-empty-state .icon-circle {
  width: 80px;
  height: 80px;
  background: #0d2019;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(13, 32, 25, 0.2);
}

.premium-empty-state .icon-circle i {
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 1px #c9a96e;
}

.premium-empty-state > i {
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px #c9a96e;
  margin-bottom: 20px;
  opacity: 0.7;
}

.premium-empty-state h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #112920;
  margin-bottom: 15px;
}

.premium-empty-state p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-solid-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #e5c381 0%, #c9a96e 100%);
  color: #112920;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
  transition: all 0.3s;
}

.btn-solid-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.4);
}

/* Address Cards */
.address-card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.premium-address-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.premium-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.premium-field span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #112920;
}

.premium-field input, .premium-field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0d5c1;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: #112920;
  transition: all 0.3s;
}

.premium-field input:focus, .premium-field select:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.btn-full-gold {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #e5c381 0%, #c9a96e 100%);
  color: #112920;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-full-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.4);
}

/* Wishlist Mini List */
.premium-wishlist-mini-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.mini-wishlist-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #f0eadd;
  border-radius: 12px;
  padding: 15px;
}

.mini-wishlist-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #f9f6f0;
}

.mini-card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-card-info strong {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #112920;
}

.mini-card-info span {
  font-size: 0.8rem;
  color: #777;
}

.mini-card-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e0d5c1;
  background: #fff;
  color: #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.action-btn:hover {
  background: #f4eedf;
  border-color: #c9a96e;
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e0d5c1;
  position: relative;
  z-index: 1;
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.footer-note i {
  color: #c9a96e;
}

.footer-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #112920;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.footer-link:hover {
  color: #c9a96e;
}

@media (max-width: 991px) {
  .premium-account-main {
    grid-template-columns: 1fr;
  }
}

/* Premium Profile Settings */
.premium-profile-hero {
  position: relative;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 100%;
  min-height: 240px;
  background-image: url('../uploads/profile_hero_bg.png');
  background-size: cover;
  background-position: center right;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-profile-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(13, 44, 30, 0.98) 0%, rgba(13, 44, 30, 0.8) 50%, rgba(13, 44, 30, 0.1) 100%);
  border-radius: 20px;
}

.premium-profile-hero > div {
  position: relative;
  z-index: 2;
}

.premium-profile-main {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 30px;
  margin-top: 30px;
  max-width: 100%;
}

.premium-profile-col-wide, .premium-profile-col-narrow {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.panel-header-simple {
  margin-bottom: 25px;
}

.panel-header-simple .auth-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c9a96e;
  margin-bottom: 8px;
}

.panel-header-simple h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #112920;
  margin: 0;
}

.section-desc {
  font-size: 0.85rem;
  color: #777;
  margin-top: 8px;
  margin-bottom: 0;
}

.mt-4 { margin-top: 30px !important; }

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap i {
  position: absolute;
  left: 18px;
  color: #888;
  font-size: 1rem;
}

.input-icon-wrap input, .input-icon-wrap select {
  padding-left: 45px !important;
}

.field-locked .input-icon-wrap input {
  background: #fdfaf5;
  color: #888;
  border-color: #f0eadd;
}

.premium-field small {
  font-size: 0.75rem;
  color: #888;
  margin-top: 5px;
}

.btn-full-dark {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: #0d2019;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(13, 32, 25, 0.2);
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-full-dark:hover {
  background: #112920;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 32, 25, 0.3);
}

.compact-snapshot {
  margin-bottom: 25px;
}

.compact-snapshot .snapshot-item {
  padding: 20px 15px;
}

.compact-snapshot .snapshot-item i {
  font-size: 1.2rem;
}

.compact-snapshot .snapshot-item strong {
  font-size: 1.2rem;
}

.snapshot-simple-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.simple-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.simple-detail span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888;
}

.simple-detail strong {
  font-size: 0.95rem;
  color: #112920;
}

/* ── PREMIUM POPULAR SECTION ── */
.premium-popular-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.popular-container {
  padding: 0 4%;
  max-width: 100%;
}

.premium-rail-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.premium-viewport {
  flex: 1;
  overflow: hidden;
  padding: 20px 0;
}

.premium-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-rail-nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.premium-rail-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(13, 32, 25, 0.1);
  transition: all 0.3s ease;
}

.nav-prev-wrap .premium-rail-nav {
  background: #ffffff;
  color: #112920;
}

.nav-next-wrap .premium-rail-nav {
  background: #0d2019;
  color: #ffffff;
}

.premium-rail-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13, 32, 25, 0.2);
}

.nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #112920;
}

.sec-hdr-subtitle {
  color: #666;
  font-size: 1rem;
  margin-top: -10px;
}

/* Premium Card Design */
.premium-style-card {
  flex: 0 0 calc(25% - 22.5px);
  background: #fdfaf5;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  padding: 0;
  position: relative;
  overflow: visible; /* to allow floating cart button */
  display: flex;
  flex-direction: column;
  margin-bottom: 25px; /* space for button */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-style-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.silk-bg {
  background-image: url('../uploads/card_silk_bg.png') !important;
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0 !important;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  height: 220px !important;
  background-color: #ffffff; /* Fallback */
}

.blend-darken {
  mix-blend-mode: darken !important;
}

.prod-img-box .img-hover.blend-darken {
  mix-blend-mode: normal !important; /* Prevent ghosting on hover image until it fades in */
}

.prod-card:hover .prod-img-box .img-hover.blend-darken {
  mix-blend-mode: darken !important;
}

.prod-bestseller-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0d2019;
  color: #c9a96e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.premium-style-card .prod-img-box {
  order: 1 !important;
}

.prod-card-body {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  order: 2 !important;
}

.premium-style-card .prod-cat {
  color: #c9a96e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  order: 1 !important;
}

.premium-style-card .prod-name {
  margin: 0;
  width: 100%;
  order: 2 !important;
}

.premium-style-card .prod-name a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #112920;
  text-decoration: none;
  line-height: 1.2;
}

.prod-prices-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  gap: 4px;
  order: 3 !important;
}

.prod-prices-premium .price-prefix {
  color: #a0a0a0;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.prod-prices-premium .price-value {
  color: #112920;
  font-size: 1.35rem;
  font-weight: 400;
  font-family: var(--serif);
}

.prod-footer-premium {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  order: 4 !important;
}

.prod-stars-gold {
  color: #c9a96e;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.prod-footer-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.line-dot-left, .line-dot-right {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(200, 169, 110, 0.3);
  position: relative;
}

.line-dot-left::after {
  content: ''; position: absolute; right: 0; top: -1.5px; width: 4px; height: 4px; border-radius: 50%; background: #c9a96e;
}
.line-dot-right::before {
  content: ''; position: absolute; left: 0; top: -1.5px; width: 4px; height: 4px; border-radius: 50%; background: #c9a96e;
}

.prod-floating-cart-wrapper {
  position: absolute;
  bottom: -22.5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.btn-floating-cart {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fdfaf5;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.btn-floating-cart:hover {
  background: #c9a96e;
  color: #fff;
  transform: translateY(-2px);
}

.premium-popular-section .slick-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-popular-section .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.premium-popular-section .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4c8b6;
  border: none;
  color: transparent;
  padding: 0;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-popular-section .slick-dots li.slick-active button {
  width: auto;
  height: auto;
  background: transparent;
  color: #c9a96e;
  font-size: 1rem;
}

.premium-popular-section .slick-dots li.slick-active button::before {
  content: '✦';
  font-family: inherit;
  color: #c9a96e;
}

@media (max-width: 1200px) {
  .premium-style-card { flex: 0 0 calc(33.333% - 20px); }
}
@media (max-width: 991px) {
  .premium-style-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 767px) {
  .premium-style-card { flex: 0 0 100%; }
}
.shield-icon-circle {
  width: 60px;
  height: 60px;
  border: 1px solid #f0eadd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.shield-icon-circle i {
  font-size: 1.8rem;
  color: transparent;
  -webkit-text-stroke: 1.5px #c9a96e;
}

.panel-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.bold-link {
  font-weight: 700;
  display: inline-flex;
}

@media (max-width: 991px) {
  .premium-profile-main {
    grid-template-columns: 1fr;
  }
}
