/* ==========================================================================
   ARMAN HOME — Luxury bedroom furniture landing page
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;900&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --bg-primary: #0c0a08;
  --bg-secondary: #0f0d0a;
  --bg-footer: #080705;
  --text-heading: #f5f0e6;
  --text-body: #b7ac9c;
  --gold: #d4b87a;
  --gold-soft: rgba(212, 184, 122, 0.9);
  --dark-on-gold: #140f08;
  --border-soft: rgba(212, 184, 122, 0.12);
  --glass-fill: rgba(255, 255, 255, 0.04);

  --font-fa: 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-heading);
  font-family: var(--font-fa);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 40px 0;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 860px;
  max-width: 100%;
  height: 56px;
  padding: 20px 32px;
  border-radius: 999px;
  border: 0.5px solid rgba(212, 184, 122, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.nav-pill a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-heading);
  white-space: nowrap;
}

.nav-pill a.active {
  font-weight: 700;
  color: var(--gold);
}

/* Mobile menu toggle (hamburger) — hidden on desktop, shown under 1180px */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0.5px solid rgba(212, 184, 122, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-heading);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 82vw);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 28px 40px;
  background: linear-gradient(180deg, #14100b 0%, #0c0a08 100%);
  border-left: 0.5px solid rgba(212, 184, 122, 0.22);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid rgba(212, 184, 122, 0.16);
}

.mobile-nav-top .logo-block {
  align-items: flex-start;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid rgba(212, 184, 122, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-heading);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-panel a {
  padding: 14px 6px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-heading);
  text-align: right;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-panel a.active,
.mobile-nav-panel a.current {
  color: var(--gold);
  font-weight: 700;
}

body.mobile-nav-open {
  overflow: hidden;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}

.logo-block .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--text-heading);
  white-space: nowrap;
}

.logo-badge {
  background: var(--gold);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-on-gold);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
}

.btn-gold {
  padding: 16px 36px;
  color: var(--dark-on-gold);
  background: var(--gold-soft);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 242, 204, 0.3);
  box-shadow: 0 4px 8px rgba(212, 184, 122, 0.3);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.btn-outline {
  padding: 16px 24px;
  color: var(--gold);
  border: 1px solid rgba(212, 184, 122, 0.25);
}

.btn-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon img {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  height: 960px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 100px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.35);
}

.hero-bottom-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

.glass-panel {
  position: relative;
  width: 460px;
  max-width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 32px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.1), 0 18px 56px rgba(0, 0, 0, 0.33), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.eyebrow-line {
  height: 1px;
  width: 32px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(212, 184, 122, 0.8);
  text-transform: uppercase;
  white-space: nowrap;
}

.glass-panel h1 {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: var(--text-heading);
  text-align: right;
}

.glass-panel p.lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: right;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 100px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.19);
  position: relative;
  z-index: 5;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item img {
  width: 18px;
  height: 18px;
}

.trust-item span {
  font-size: 13px;
  color: var(--text-body);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Featured collection
   ========================================================================== */

.featured {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 96px 100px;
  background: var(--bg-primary);
  overflow: hidden;
}

.section-glow {
  position: absolute;
  border-radius: 999px;
  background: rgba(212, 184, 122, 0.04);
  pointer-events: none;
}

.featured .section-glow {
  left: -200px;
  top: 100px;
  width: 600px;
  height: 600px;
}

.featured-image-col {
  position: relative;
  flex: 1;
  height: 600px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 28px 10px rgba(212, 184, 122, 0.1), 0 24px 60px rgba(0, 0, 0, 0.38);
}

.featured-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 0.5px solid rgba(212, 184, 122, 0.3);
  background: rgba(212, 184, 122, 0.15);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

.featured-text-col {
  position: relative;
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  border-radius: 32px;
  border: 0.5px solid var(--border-soft);
  background: var(--glass-fill);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 16px 48px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.featured-text-col .eyebrow {
  width: 100%;
  justify-content: flex-end;
}

.featured-text-col h2 {
  margin: 0;
  width: 100%;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  color: var(--text-heading);
  text-align: right;
}

.featured-text-col p.lead {
  margin: 0;
  width: 100%;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: right;
}

.featured-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list .feature-item span {
  font-size: 14px;
  color: var(--text-heading);
  white-space: nowrap;
}

.feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background: var(--gold);
  flex-shrink: 0;
}

.price-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.price-block .price-label {
  font-size: 11px;
  color: var(--text-body);
}

.price-block .price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

/* ==========================================================================
   Category grid
   ========================================================================== */

.categories {
  padding: 96px 100px;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.section-header .eyebrow {
  justify-content: center;
}

.section-header h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  color: var(--text-heading);
}

.section-header p.lead {
  margin: 0;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.category-grid {
  width: 100%;
  display: flex;
  gap: 24px;
}

.category-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  border-radius: 28px;
  border: 0.5px solid var(--border-soft);
  background: var(--glass-fill);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 12px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 184, 122, 0.12);
  border: 1px solid rgba(212, 184, 122, 0.2);
  box-shadow: 0 0 18px rgba(212, 184, 122, 0.1);
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.category-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}

.category-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
}

.card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.card-link img {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   Product carousel
   ========================================================================== */

.carousel-section {
  position: relative;
  padding: 96px 0;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.carousel-glow {
  position: absolute;
  left: 400px;
  top: 100px;
  width: 640px;
  height: 400px;
  border-radius: 320px;
  background: rgba(212, 184, 122, 0.03);
  pointer-events: none;
}

.carousel-titles {
  width: 860px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 24px;
}

.carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 56px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 184, 122, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-arrow img {
  width: 16px;
  height: 16px;
}

.carousel-track {
  flex: 1;
  display: flex;
  gap: 20px;
  min-width: 0;
  overflow: hidden;
}

.carousel-card {
  position: relative;
  flex: 1 0 0;
  min-width: 160px;
  height: 500px;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0.5px solid var(--border-soft);
  box-shadow: 0 0 40px 8px rgba(212, 184, 122, 0.08), 0 14px 36px -10px rgba(0, 0, 0, 0.27);
  transition: flex-basis 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.carousel-card:hover {
  border-color: rgba(212, 184, 122, 0.4);
  box-shadow: 0 0 48px 10px rgba(212, 184, 122, 0.14), 0 18px 40px -10px rgba(0, 0, 0, 0.35);
}

.carousel-card.is-compact {
  flex: 0 0 160px;
  cursor: default;
}

.carousel-card .card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel-card .card-media img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card .card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.2);
}

.carousel-card .card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
  z-index: 1;
}

.carousel-card .banner-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 0.5px solid var(--border-soft);
  background: var(--glass-fill);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: padding 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-card .banner-overlay h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
  direction: rtl;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: font-size 0.4s ease;
}

.carousel-card .banner-overlay p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-body);
  text-align: right;
  max-height: 40px;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.35s ease, margin 0.35s ease;
}

.carousel-card:hover .card-media img {
  transform: scale(1.06);
}

.carousel-card.is-compact .banner-overlay {
  padding: 14px 12px;
}

.carousel-card.is-compact .banner-overlay h3 {
  font-size: 12.5px;
}

.carousel-card.is-compact .banner-overlay p {
  opacity: 0;
  max-height: 0;
  margin-top: -8px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots .dot {
  height: 4px;
  width: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.13);
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dots .dot.active {
  width: 24px;
  background: var(--gold);
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial-section {
  position: relative;
  padding: 96px 100px;
  background: var(--bg-secondary);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.testimonial-glow {
  position: absolute;
  left: 320px;
  top: -80px;
  width: 800px;
  height: 500px;
  border-radius: 400px;
  background: rgba(212, 184, 122, 0.03);
  pointer-events: none;
}

.testimonial-panel {
  position: relative;
  width: 960px;
  max-width: 100%;
  padding: 72px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-radius: 36px;
  border: 0.5px solid var(--border-soft);
  background: var(--glass-fill);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
}

.testimonial-quote-mark {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 120px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.22;
}

.stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars img {
  width: 16px;
  height: 16px;
}

.testimonial-panel blockquote {
  margin: 0;
  max-width: 700px;
  font-size: 22px;
  line-height: 1.85;
  color: var(--text-heading);
}

.divider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.divider-row .divider-line {
  width: 40px;
  height: 1px;
  background: rgba(212, 184, 122, 0.31);
}

.divider-row .divider-dash {
  width: 32px;
  height: 2px;
  border-radius: 1px;
  background: var(--gold);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonial-author .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-author .role {
  font-size: 13px;
  color: var(--text-body);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
}

.cta-background {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 96px 100px;
  background: linear-gradient(202deg, #1e1609 25%, #2c1f0a 50%, #1a1208 75%);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cta-glow-left {
  left: 100px;
  top: 50px;
  width: 400px;
  height: 300px;
  background: rgba(212, 184, 122, 0.06);
}

.cta-glow-right {
  left: 900px;
  top: 80px;
  width: 350px;
  height: 280px;
  background: rgba(212, 184, 122, 0.04);
}

.cta-panel {
  position: relative;
  width: 960px;
  max-width: 100%;
  padding: 72px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  border-radius: 36px;
  border: 0.5px solid var(--border-soft);
  background: var(--glass-fill);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
}

.cta-panel .eyebrow {
  justify-content: center;
}

.cta-panel .eyebrow-line {
  background: rgba(212, 184, 122, 0.31);
}

.cta-panel h2 {
  margin: 0;
  max-width: 760px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
}

.cta-panel p.lead {
  margin: 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-gold.btn-lg {
  padding: 20px 52px;
  font-size: 15px;
}

.btn-outline.btn-glass {
  padding: 20px 36px;
  font-size: 15px;
  border: 1px solid rgba(212, 184, 122, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Brand narrative
   ========================================================================== */

.narrative {
  position: relative;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 96px 100px;
  background: var(--bg-primary);
  overflow: hidden;
}

.narrative .section-glow {
  left: 600px;
  top: 100px;
  width: 500px;
  height: 400px;
  border-radius: 250px;
}

.narrative-image {
  position: relative;
  flex: 1;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 28px 10px rgba(212, 184, 122, 0.1), 0 24px 60px rgba(0, 0, 0, 0.31);
}

.narrative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.narrative-image .image-gradient {
  height: 180px;
}

.narrative-text {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.narrative-text h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
  text-align: right;
  width: 100%;
}

.narrative-text p.lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: right;
  width: 100%;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-item .stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-body);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 72px 100px 48px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-newsletter {
  width: 380px;
  max-width: 100%;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text-heading);
}

.footer-logo .underline {
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.footer-col-newsletter h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: right;
}

.footer-col-newsletter p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: right;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 8px 16px 8px 8px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 184, 122, 0.25);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: none;
  color: var(--text-heading);
  font-family: inherit;
  font-size: 13px;
  text-align: right;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-body);
}

.newsletter-submit {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-submit img {
  width: 12px;
  height: 12px;
}

.footer-col h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  text-align: right;
}

.footer-divider-small {
  width: 24px;
  height: 1px;
  background: rgba(212, 184, 122, 0.31);
  align-self: flex-end;
}

.footer-col a,
.footer-col p {
  margin: 0;
  font-size: 14px;
  color: var(--text-body);
  text-align: right;
}

.footer-col-contact {
  align-items: flex-end;
  width: 260px;
}

.footer-col-contact p {
  text-align: right;
  line-height: 1.9;
  font-size: 13px;
}

.footer-col-contact .phone {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 14px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
}

.social-icon img {
  width: 16px;
  height: 16px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(212, 184, 122, 0.12);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-body);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .copyright {
  font-family: var(--font-display);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .nav-pill {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-header {
    justify-content: flex-start;
    gap: 12px;
    padding: 20px 24px 0;
  }

  .featured,
  .narrative {
    flex-direction: column;
  }

  .featured-image-col,
  .narrative-image {
    width: 100%;
  }

  .category-grid {
    flex-wrap: wrap;
  }

  .category-card {
    flex: 1 1 calc(50% - 24px);
    min-width: 220px;
  }
}

@media (max-width: 860px) {
  .hero,
  .featured,
  .categories,
  .testimonial-section,
  .cta-background,
  .narrative,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .trust-bar {
    padding: 20px 24px;
    flex-wrap: wrap;
    row-gap: 16px;
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 720px;
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .glass-panel {
    width: 100%;
  }

  .glass-panel h1 {
    font-size: 34px;
  }

  .featured-text-col {
    padding: 32px;
  }

  .testimonial-panel,
  .cta-panel {
    padding: 48px 32px;
    width: 100%;
  }

  .testimonial-panel blockquote {
    font-size: 18px;
  }

  .carousel-container {
    padding: 0 16px;
    gap: 0;
  }

  /* Arrows collide with the card track on narrow screens (the card's
     minimum width doesn't fit alongside two 52px arrow buttons); swipe
     gestures and the dots below already cover navigation on touch. */
  .carousel-arrow {
    display: none;
  }

  .carousel-track {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: 16px;
  }

  .carousel-card {
    min-width: 0;
    width: 78%;
    flex: 0 0 78%;
    scroll-snap-align: center;
  }

  /* On mobile every card renders at the same width (swipe-through strip
     instead of the desktop spotlight effect), so the compact card's
     shrunken title / hidden description would just look inconsistent. */
  .carousel-card.is-compact .banner-overlay h3 {
    font-size: 16px;
  }

  .carousel-card.is-compact .banner-overlay p {
    opacity: 1;
    max-height: 40px;
    margin-top: 0;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-col-contact {
    align-items: flex-start;
    width: 100%;
  }

  .footer-col-contact p,
  .footer-col-contact .phone {
    text-align: right;
    width: 100%;
  }

  .cta-panel h2,
  .cta-panel p.lead {
    font-size: unset;
  }
}

@media (max-width: 560px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .stats-row {
    flex-wrap: wrap;
    row-gap: 16px;
  }
}

/* ==========================================================================
   Product Detail Page
   ========================================================================== */

.header-spacer {
  height: 88px;
  width: 100%;
}

.breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 100px;
  border-bottom: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap;
}

.breadcrumb-inner .crumb-current {
  color: var(--gold);
}

.breadcrumb-inner .crumb {
  color: var(--text-body);
}

.breadcrumb-inner .sep {
  color: rgba(255, 255, 255, 0.19);
}

/* Product hero */
.product-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 120px 100px;
  background: var(--bg-primary);
  overflow: hidden;
}

.product-hero .glow-left {
  position: absolute;
  left: -100px;
  top: 200px;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  background: rgba(212, 184, 122, 0.03);
  pointer-events: none;
}

.product-hero .glow-right {
  position: absolute;
  left: 900px;
  top: 0;
  width: 500px;
  height: 500px;
  border-radius: 250px;
  background: rgba(212, 184, 122, 0.02);
  pointer-events: none;
}

.product-gallery {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image-wrap {
  position: relative;
  height: 500px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 0.5px solid var(--border-soft);
  box-shadow: 0 0 40px 8px rgba(212, 184, 122, 0.08), 0 24px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-image-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.image-badge {
  position: absolute;
  top: 19.5px;
  right: 19.5px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  border: 0.5px solid rgba(212, 184, 122, 0.3);
  background: rgba(212, 184, 122, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

.thumbnails {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.thumb {
  height: 104px;
  width: 154px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.65;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.thumb:hover {
  opacity: 0.85;
}

.thumb.active-thumb {
  height: 100px;
  width: 150px;
  opacity: 1;
  padding: 2px;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 12px rgba(212, 184, 122, 0.19);
}

.thumb.active-thumb img {
  border-radius: 12px;
}

/* Product details panel */
.product-details {
  position: relative;
  width: 580px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  padding: 44px;
  border-radius: 32px;
  border: 0.5px solid var(--border-soft);
  background: var(--glass-fill);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.eyebrow-tag {
  padding: 6px 16px;
  border-radius: 999px;
  border: 0.5px solid rgba(212, 184, 122, 0.3);
  background: rgba(212, 184, 122, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.product-details h1 {
  margin: 0;
  width: 100%;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.3;
  color: var(--text-heading);
  text-align: right;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}

.rating-row .review-count {
  font-size: 13px;
  color: var(--text-body);
  white-space: nowrap;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars img {
  width: 16px;
  height: 16px;
}

.divider-soft {
  width: 100%;
  height: 1px;
  background: rgba(212, 184, 122, 0.09);
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
}

.price-old {
  margin: 0;
  font-size: 13px;
  color: var(--text-body);
  text-decoration: line-through;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
}

.price-amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(212, 184, 122, 0.25);
}

.stock-badge {
  padding: 6px 14px;
  border-radius: 999px;
  border: 0.5px solid rgba(212, 184, 122, 0.3);
  background: rgba(212, 184, 122, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.product-desc {
  margin: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-body);
  text-align: right;
}

.option-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.color-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.color-label-row .label-sub {
  font-size: 13px;
  color: var(--text-body);
}

.color-label-row .label-main {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

.color-swatches {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.swatch {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 0.5px solid var(--border-soft);
  padding: 0;
  cursor: pointer;
}

.swatch.swatch-selected {
  width: 40px;
  height: 40px;
  padding: 3px;
  border-radius: 20px;
  border: 1.5px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 8px rgba(212, 184, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swatch.swatch-selected .swatch-fill {
  width: 100%;
  height: 100%;
  border-radius: 13px;
}

.spec-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.bullet-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.bullet-row span {
  font-size: 13px;
  color: var(--text-heading);
  text-align: right;
}

.bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background: var(--gold);
  flex-shrink: 0;
}

.qty-and-cart {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.qty-selector {
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.qty-selector button {
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.qty-selector .qty-num {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  min-width: 20px;
  text-align: center;
}

.btn-add-cart {
  flex: 1;
  padding: 18px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--dark-on-gold);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 14px rgba(212, 184, 122, 0.21), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-consult {
  width: 100%;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-badge-item img {
  width: 20px;
  height: 20px;
}

.trust-badge-item span {
  font-size: 11px;
  color: var(--text-body);
  white-space: nowrap;
}

.trust-badge-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

/* Interactive / upload preview section */
.interactive-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px;
  background: var(--bg-secondary);
  border-bottom: 0.5px solid rgba(212, 184, 122, 0.06);
  overflow: hidden;
}

.interactive-section .section-glow {
  left: 399.5px;
  top: 0;
  width: 640px;
  height: 400px;
}

.preview-card {
  position: relative;
  width: 1240px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 64px;
  border-radius: 36px;
  border: 0.5px solid var(--border-soft);
  background: var(--glass-fill);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.preview-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.preview-header .eyebrow {
  justify-content: center;
}

.preview-header .eyebrow-line-thin {
  width: 40px;
  height: 1px;
  background: rgba(212, 184, 122, 0.31);
}

.preview-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
}

.preview-header p {
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
}

.upload-box {
  position: relative;
  width: 760px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 56px 48px;
  border-radius: 24px;
  border: 0.5px dashed var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.upload-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 184, 122, 0.09);
  border: 1px solid rgba(212, 184, 122, 0.2);
}

.upload-icon-circle img {
  width: 28px;
  height: 28px;
}

.upload-box .upload-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 224px;
}

.upload-copy p {
  margin: 0;
}

.upload-copy .upload-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}

.upload-copy .upload-sub {
  font-size: 14px;
  color: var(--text-body);
}

.upload-actions {
  display: flex;
  gap: 16px;
}

.btn-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--gold);
}

.btn-upload.btn-upload-solid {
  font-weight: 700;
}

.btn-upload img {
  width: 16px;
  height: 16px;
}

/* Tabs section */
.tabs-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px;
  background: var(--bg-primary);
  border-bottom: 0.5px solid rgba(212, 184, 122, 0.06);
}

.details-card {
  position: relative;
  width: 1240px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 56px;
  border-radius: 36px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tab-headers {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 56px;
  width: 100%;
  border-bottom: 1px solid rgba(212, 184, 122, 0.08);
}

.tab-item {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
}

.tab-item.active-tab {
  font-weight: 700;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.tab-panel {
  display: none;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.tab-panel.active-panel {
  display: flex;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 400px;
  max-width: 100%;
  flex-shrink: 0;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.spec-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.spec-row-inner .spec-value {
  font-size: 14px;
  color: var(--text-heading);
}

.spec-row-inner .spec-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.spec-div {
  width: 100%;
  height: 1px;
  background: rgba(212, 184, 122, 0.08);
}

.desc-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.desc-col > p {
  margin: 0;
  width: 100%;
  font-size: 15px;
  line-height: 2;
  color: var(--text-body);
  text-align: right;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.bullet-list .bullet-row span {
  flex: 1 1 0;
  min-width: 0;
  font-size: 14px;
  color: var(--text-heading);
}

.bullet-list .bullet-dot {
  width: 6px;
  height: 6px;
}

.tab-empty {
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-body);
  text-align: right;
}

/* Related section */
.related-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 100px 100px 120px;
  background: var(--bg-secondary);
  overflow: hidden;
}

.related-section .section-glow {
  left: 299.5px;
  top: 0;
  width: 840px;
  height: 400px;
  background: rgba(212, 184, 122, 0.02);
}

.related-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.related-section .eyebrow-line-thin {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.related-section .section-header h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  color: var(--text-heading);
}

.grid-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 28px;
  overflow: hidden;
  border: 0.5px solid var(--border-soft);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.06), 0 16px 40px rgba(0, 0, 0, 0.31);
}

.product-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.card-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px 24px;
  border-radius: 0 0 28px 28px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card-meta h3 {
  margin: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
}

.card-meta .card-sub {
  margin: 0;
  width: 100%;
  font-size: 13px;
  color: var(--text-body);
  text-align: right;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.card-add-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 0.5px solid rgba(255, 242, 204, 0.3);
  background: rgba(212, 184, 122, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(212, 184, 122, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-on-gold);
}

.card-price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.card-price-tag .price-unit {
  font-size: 13px;
  font-weight: 400;
}

.card-price-tag .price-amount {
  font-size: 20px;
  text-shadow: none;
}

@media (max-width: 1180px) {
  .product-hero {
    flex-direction: column;
  }

  .product-details {
    width: 100%;
  }

  .preview-card,
  .details-card {
    width: 100%;
    padding: 40px 24px;
  }

  .grid-row {
    flex-direction: column;
  }

  .product-card {
    width: 100%;
    flex: 0 0 auto;
  }

  .tab-panel.active-panel {
    flex-direction: column;
    gap: 32px;
  }

  .spec-list {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .breadcrumb,
  .product-hero,
  .interactive-section,
  .tabs-section,
  .related-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-image-wrap {
    height: 360px;
  }

  .thumbnails {
    flex-wrap: wrap;
  }

  .product-details {
    padding: 28px;
  }

  .price-amount {
    font-size: 32px;
  }

  .upload-box {
    padding: 32px 24px;
  }

  .upload-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-upload {
    justify-content: center;
    width: 100%;
  }

  .tab-headers {
    gap: 28px;
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .trust-badges {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .qty-and-cart {
    flex-direction: column-reverse;
  }

  .qty-selector {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Collection Page
   ========================================================================== */

.collection-hero {
  position: relative;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
}

.collection-hero-media {
  position: absolute;
  inset: 0;
}

.collection-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.55);
}

.collection-hero-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.collection-hero-content {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0 100px 44px;
}

.collection-title-block {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.category-eyebrow .eyebrow-line {
  width: 40px;
}

.category-eyebrow .eyebrow-text {
  color: var(--gold);
  font-size: 11px;
}

.collection-title {
  margin: 0;
  font-weight: 700;
  font-size: 38px;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

/* Filter bar */

.filter-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 100px;
  border: 0.5px solid rgba(212, 184, 122, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  gap: 16px;
  flex-wrap: wrap;
}

.filter-count {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-heading);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-on-gold);
  font-weight: 700;
}

/* Product grid */

.product-grid-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  padding: 80px 100px 120px;
  border: 0.5px solid rgba(212, 184, 122, 0.06);
  background: var(--bg-primary);
  box-shadow: inset 0 1px 0 rgba(212, 184, 122, 0.04);
}

.col-grid-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.col-product-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 28px;
  overflow: hidden;
  border: 0.5px solid rgba(212, 184, 122, 0.2);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.06), 0 16px 40px rgba(0, 0, 0, 0.31);
}

.col-card-media {
  position: absolute;
  inset: 0;
}

.col-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-card-tint {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.15);
}

.col-card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.col-card-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--gold);
  font-size: 10px;
  font-weight: 700;
  color: var(--dark-on-gold);
}

.col-card-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 184, 122, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.col-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.col-card-price {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.col-card-price-faint {
  color: rgba(255, 255, 255, 0.06);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.col-card-title {
  flex: 1 1 0;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
  text-align: right;
}

.col-card-footer-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
}

.col-card-footer-link span {
  font-size: 12px;
  color: var(--text-body);
}

.col-arrow-icon {
  width: 10px;
  height: 10px;
}

.col-card-footer-link-pill {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.col-card-footer-link-pill span {
  color: var(--gold);
}

.col-arrow-btn-wrap {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
}

.col-arrow-btn-icon {
  position: absolute;
  top: -8px;
  left: -12px;
  width: 34px;
  height: 34px;
  max-width: none;
}

/* Load more */

.pagination-section {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  width: 100%;
}

.load-more-btn {
  padding: 16px 44px 16px 48px;
  gap: 8px;
}

.load-more-icon {
  width: 12px;
  height: 12px;
}

@media (max-width: 1180px) {
  .col-grid-row {
    flex-direction: column;
  }

  .col-product-card {
    width: 100%;
    flex: 0 0 auto;
  }
}

@media (max-width: 860px) {
  .collection-hero-content,
  .filter-bar,
  .product-grid-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .collection-title {
    font-size: 30px;
    white-space: normal;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 560px) {
  .col-product-card {
    height: 400px;
  }

  .col-card-header {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  /* In the stacked (column) layout above, flex:1 1 0 has no row of
     siblings to share space with and no defined container height to grow
     into, so the title collapses to 0px tall. It only needs to size to
     its own content here. */
  .col-card-title {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* ==========================================================================
   Journal Page
   ========================================================================== */

.nav-pill a.current {
  font-weight: 700;
}

.journal-hero {
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.journal-hero-media {
  position: absolute;
  inset: 0;
}

.journal-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.4);
}

.journal-hero-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.journal-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 100px 80px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 16px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.journal-eyebrow-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.journal-eyebrow-row .eyebrow-text {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.journal-eyebrow-row .eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.journal-hero-content h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
  width: 100%;
}

.journal-hero-content p.lead {
  margin: 0;
  font-size: 16px;
  color: var(--text-body);
  text-align: right;
  width: 100%;
}

/* Section title (shared by featured + grid sections) */

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  width: 100%;
}

.section-title .eyebrow-text {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.section-title .eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* Featured article */

.featured-article-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding: 120px 100px;
  border: 0.5px solid rgba(212, 184, 122, 0.06);
  background: #1a1510;
  box-shadow: inset 0 1px 0 rgba(212, 184, 122, 0.04);
}

.featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 540px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 40px 8px rgba(212, 184, 122, 0.08), 0 12px 32px rgba(0, 0, 0, 0.25);
}

.featured-card-media {
  position: absolute;
  inset: 0;
}

.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-tint {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.15);
}

.featured-card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  background: linear-gradient(to top, var(--bg-primary), rgba(0, 0, 0, 0));
}

.featured-glass-panel {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 560px;
  max-width: calc(100% - 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding: 40px;
  border-radius: 32px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 16px 48px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.featured-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  flex-wrap: wrap;
}

.featured-meta span {
  font-size: 12px;
  color: var(--text-body);
  white-space: nowrap;
}

.featured-meta .meta-cat {
  color: var(--gold);
  font-weight: 600;
}

.meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.featured-glass-panel h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
  width: 100%;
}

.featured-glass-panel p.desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: right;
  width: 100%;
}

.read-btn {
  padding: 12px 24px;
}

/* Article grid */

.article-grid-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  padding: 80px 100px 120px;
  border: 0.5px solid rgba(212, 184, 122, 0.06);
  background: var(--bg-primary);
  box-shadow: inset 0 1px 0 rgba(212, 184, 122, 0.04);
}

.article-grid-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.article-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 440px;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 40px 8px rgba(212, 184, 122, 0.08), 0 12px 32px rgba(0, 0, 0, 0.25);
}

.article-card-media {
  position: absolute;
  inset: 0;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-tint {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.2);
}

.article-card-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), rgba(0, 0, 0, 0));
}

.article-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  flex-wrap: wrap;
}

.article-meta span {
  font-size: 11px;
  color: var(--text-body);
  white-space: nowrap;
}

.article-meta .meta-cat {
  color: var(--gold);
  font-weight: 600;
}

.article-meta.meta-faint span {
  color: rgba(255, 255, 255, 0.06);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.article-meta.meta-faint .meta-cat {
  font-weight: 600;
}

.meta-dot-sm {
  width: 3px;
  height: 3px;
  border-radius: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.article-overlay h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
  width: 100%;
}

.article-overlay p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
  text-align: right;
  width: 100%;
}

.article-overlay p.faint-text {
  color: rgba(255, 255, 255, 0.06);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* CTA band */

.cta-band-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0.5px solid rgba(212, 184, 122, 0.06);
  background: #1a1510;
  box-shadow: inset 0 1px 0 rgba(212, 184, 122, 0.04);
}

.cta-background {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 120px 100px;
  background-image: linear-gradient(204.43deg, rgb(30, 22, 9) 25%, rgb(44, 31, 10) 50%, rgb(26, 18, 8) 75%);
  overflow: hidden;
}

.cta-glow-left,
.cta-glow-right {
  position: absolute;
  pointer-events: none;
}

.cta-glow-left {
  left: 100px;
  top: 50px;
  width: 400px;
  height: 300px;
  border-radius: 200px;
  background: rgba(212, 184, 122, 0.06);
}

.cta-glow-right {
  left: 900px;
  top: 80px;
  width: 350px;
  height: 280px;
  border-radius: 175px;
  background: rgba(212, 184, 122, 0.04);
}

.cta-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 960px;
  max-width: 100%;
  padding: 80px 100px;
  border-radius: 36px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-eyebrow-line {
  width: 40px;
  height: 1px;
  background: rgba(212, 184, 122, 0.31);
  flex-shrink: 0;
}

.cta-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.cta-panel h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
  text-align: center;
  max-width: 100%;
}

.cta-panel p.lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  text-align: center;
  max-width: 100%;
}

.cta-form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-input {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 56px;
  width: 400px;
  max-width: 100%;
  padding: 0 24px 0 8px;
  border-radius: 28px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.cta-input span {
  font-size: 14px;
  color: var(--text-body);
}

.cta-submit-btn {
  padding: 18px 36px;
}

/* Journal footer icon variants (icons already include their own circular background) */

.newsletter-submit-plain {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
}

.newsletter-submit-plain img {
  width: 100%;
  height: 100%;
}

.social-icon-plain {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
}

.social-icon-plain img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1180px) {
  .article-grid-row {
    flex-direction: column;
  }

  .article-card {
    width: 100%;
    flex: 0 0 auto;
  }

  .featured-glass-panel {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
  }

  .cta-glow-left,
  .cta-glow-right {
    display: none;
  }
}

@media (max-width: 860px) {
  .journal-hero-content,
  .featured-article-section,
  .article-grid-section,
  .cta-background {
    padding-left: 24px;
    padding-right: 24px;
  }

  .journal-hero-content h1 {
    font-size: 36px;
  }

  .featured-card {
    height: auto;
  }

  .featured-card-media {
    position: relative;
    height: 320px;
  }

  .featured-card-gradient,
  .featured-card-tint {
    display: none;
  }

  .featured-glass-panel {
    padding: 28px;
  }

  .cta-panel {
    padding: 48px 32px;
  }

  .cta-panel h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .article-card {
    height: 360px;
  }

  .cta-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-input {
    width: 100%;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-hero {
  position: relative;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.55);
}

.contact-hero-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.contact-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 100px 60px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 16px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-eyebrow-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.contact-eyebrow-row .eyebrow-text {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.contact-eyebrow-row .eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-hero-content h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
  width: 100%;
}

.contact-hero-content p.lead {
  margin: 0;
  font-size: 16px;
  color: var(--text-body);
  text-align: right;
  width: 100%;
}

/* Main section */

.contact-main-section {
  position: relative;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
  padding: 120px 100px;
  border: 0.5px solid rgba(212, 184, 122, 0.06);
  background: #1a1510;
}

.contact-info-column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
}

.contact-info-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 28px;
  border-radius: 20px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 12px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-info-card .card-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.contact-info-card .card-text h3 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
}

.contact-info-card .card-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-heading);
  white-space: pre-wrap;
}

.contact-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: rgba(212, 184, 122, 0.12);
  border: 1px solid rgba(212, 184, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-wrap img {
  width: 20px;
  height: 20px;
}

/* Form card */

.contact-form-card {
  position: relative;
  width: 640px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 44px;
  border-radius: 32px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.31), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form-card h2 {
  margin: 0;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-heading);
  text-align: right;
}

.contact-form-card > p.lead {
  margin: 0;
  font-size: 14px;
  color: var(--text-body);
  text-align: right;
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 14px;
  width: 100%;
}

.form-label-row .required {
  color: #ef4444;
}

.form-label-row label {
  font-weight: 500;
  color: var(--text-heading);
}

.input-box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.form-group input,
.form-group textarea {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-heading);
  text-align: right;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(183, 172, 156, 0.67);
}

.input-box.textarea-box {
  align-items: flex-start;
  height: 140px;
}

.form-group textarea {
  height: 100%;
  resize: none;
  line-height: 1.6;
}

.form-select {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 20px 24px 24px;
  border-radius: 999px;
  border: 0.5px solid rgba(255, 242, 204, 0.3);
  background: rgba(212, 184, 122, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(212, 184, 122, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-select > span {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-on-gold);
  text-align: right;
  width: 100%;
}

.form-select .input-box {
  justify-content: space-between;
}

.form-select .input-box img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.form-select .input-box span.select-value {
  flex: 1 1 0;
  min-width: 0;
  font-size: 14px;
  color: var(--text-heading);
  text-align: right;
}

.contact-submit-btn {
  width: 100%;
  padding: 16px 40px;
  border-radius: 100px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 12px rgba(212, 184, 122, 0.19));
  font-weight: 700;
  font-size: 15px;
  color: var(--dark-on-gold);
}

/* Map section */

.map-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 80px 100px 120px;
  border: 0.5px solid rgba(212, 184, 122, 0.06);
  background: var(--bg-primary);
}

.map-container {
  position: relative;
  display: flex;
  height: 400px;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  box-shadow: 0 0 40px 8px rgba(212, 184, 122, 0.08), 0 16px 48px rgba(0, 0, 0, 0.25);
}

.map-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-tint {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.15);
}

.map-glow {
  position: absolute;
  inset: -0.5px;
  background: linear-gradient(to right, rgba(12, 10, 8, 0.9), rgba(12, 10, 8, 0.2));
}

.map-overlay-card {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 300px;
  max-width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 12px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.map-overlay-card h3 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  text-align: right;
  width: 100%;
}

.map-overlay-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-heading);
  text-align: right;
  width: 100%;
}

.get-direction-btn {
  position: relative;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
}

@media (max-width: 1180px) {
  .contact-main-section {
    flex-direction: column;
  }

  .contact-form-card {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .contact-hero-content,
  .contact-main-section,
  .map-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-hero-content h1 {
    font-size: 36px;
  }

  .contact-form-card {
    padding: 32px;
  }

  .map-overlay-card {
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 560px) {
  .map-container {
    height: 320px;
  }

  .map-overlay-card {
    padding: 18px;
  }
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */

.error-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 800px;
  width: 100%;
  padding: 120px 100px 160px;
  overflow: hidden;
  background: #1a1510;
}

.error-glow {
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 350px;
  background: rgba(212, 184, 122, 0.06);
  filter: blur(60px);
}

.error-silhouette {
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 480px;
  opacity: 0.06;
}

.error-silhouette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-card {
  position: relative;
  width: 860px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 64px;
  border-radius: 36px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 18px 56px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.error-code {
  margin: 0;
  font-weight: 900;
  font-size: 140px;
  line-height: 0.9;
  color: var(--gold);
  text-align: center;
  text-shadow: 0 4px 24px rgba(212, 184, 122, 0.25), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.error-messaging {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.error-messaging h2 {
  margin: 0;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-heading);
}

.error-messaging p {
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 540px;
}

.error-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-error-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(212, 184, 122, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
}

.btn-error-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 999px;
  border: 0.5px solid rgba(255, 242, 204, 0.3);
  background: rgba(212, 184, 122, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: drop-shadow(0 4px 8px rgba(212, 184, 122, 0.3));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-on-gold);
}

@media (max-width: 1180px) {
  .error-card {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .error-hero {
    height: auto;
    padding: 80px 24px;
  }

  .error-card {
    padding: 40px 28px;
  }

  .error-code {
    font-size: 96px;
  }

  .error-messaging h2 {
    font-size: 22px;
  }

  .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-error-secondary,
  .btn-error-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .error-code {
    font-size: 72px;
  }

  .error-silhouette {
    width: 400px;
    height: 340px;
  }
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-hero {
  position: relative;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.55);
}

.about-hero-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-primary), rgba(12, 10, 8, 0));
}

.about-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 100px 60px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 16px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-eyebrow-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.about-eyebrow-row .eyebrow-text {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.about-eyebrow-row .eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-hero-content h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
  width: 100%;
}

.about-hero-content p.lead {
  margin: 0;
  font-size: 16px;
  color: var(--text-body);
  text-align: right;
  width: 100%;
}

/* Process section */

.process-section {
  position: relative;
  padding: 120px 100px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background: #1a1510;
  border: 0.5px solid rgba(212, 184, 122, 0.06);
}

.process-grid {
  display: flex;
  gap: 32px;
  width: 100%;
}

.process-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 40px 28px;
  border-radius: 24px;
  border: 0.5px solid rgba(212, 184, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.08), 0 12px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.process-step .icon-circle {
  background: rgba(212, 184, 122, 0.12);
}

.process-step .step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
}

.process-step h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}

.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

@media (max-width: 1180px) {
  .process-grid {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .about-hero-content,
  .process-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero-content h1 {
    font-size: 36px;
  }
}

/* ==========================================================================
   Animations & Interactions (site-wide)
   ========================================================================== */

/* Page-load fade-in */
body {
  animation: page-fade-in 0.6s ease both;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Base transitions for interactive elements */
a,
button {
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.nav-pill a:hover {
  color: var(--gold);
}

.nav-pill a.active:hover,
.nav-pill a.current:hover {
  filter: brightness(1.15);
}

/* Buttons */
.btn-gold:hover,
.contact-submit-btn:hover,
.load-more-btn:hover,
.newsletter-submit:hover,
.newsletter-submit-plain:hover,
.card-add-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(212, 184, 122, 0.35);
}

.btn-outline:hover,
.get-direction-btn:hover,
.btn-error-secondary:hover,
.btn-upload:hover {
  transform: translateY(-3px);
  background: rgba(212, 184, 122, 0.14);
  border-color: var(--gold);
}

.btn-error-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(212, 184, 122, 0.35);
}

.card-link:hover {
  color: var(--gold);
  gap: 10px;
}

.card-link img {
  transition: transform 0.25s ease;
}

.card-link:hover img {
  transform: translateX(-4px);
}

.social-icon:hover,
.social-icon-plain:hover,
.carousel-arrow:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(212, 184, 122, 0.15);
}

.filter-pill {
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Card lift + glow on hover */
.category-card,
.process-step,
.contact-info-card,
.map-overlay-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.category-card:hover,
.process-step:hover,
.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 184, 122, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 184, 122, 0.14);
}

.icon-circle {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
}

.category-card:hover .icon-circle,
.process-step:hover .icon-circle {
  transform: scale(1.08);
  background: rgba(212, 184, 122, 0.2);
}

.col-product-card,
.article-card,
.product-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.col-product-card:hover,
.article-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 184, 122, 0.1);
}

.col-card-media img,
.article-card-media img,
.product-card > img,
.thumb img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.col-product-card:hover .col-card-media img,
.article-card:hover .article-card-media img,
.product-card:hover > img {
  transform: scale(1.07);
}

.carousel-dots .dot {
  cursor: pointer;
}

.carousel-dots .dot:hover {
  background: rgba(212, 184, 122, 0.4);
}

/* Scroll-reveal system (driven by animations.js) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

@media print {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body {
    animation: none !important;
  }
}

/* ==========================================================================
   Account area — shared: page title bar, header icons
   ========================================================================== */

.page-title-bar {
  position: relative;
  padding: 160px 100px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
  background: #120e09;
  overflow: hidden;
}

.page-title-bar::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 420px;
  border-radius: 320px;
  background: rgba(212, 184, 122, 0.08);
  filter: blur(70px);
  pointer-events: none;
}

.page-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
}

.page-breadcrumb a {
  color: var(--text-body);
}

.page-breadcrumb a:hover {
  color: var(--gold);
}

.page-breadcrumb .current-crumb {
  color: var(--gold);
}

.page-title-bar h1 {
  position: relative;
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: var(--text-heading);
}

.page-title-bar .lead {
  position: relative;
  margin: 0;
  font-size: 14px;
  color: var(--text-body);
}

.header-icon-link {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid rgba(212, 184, 122, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-icon-link img {
  width: 19px;
  height: 19px;
}

.header-icon-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--dark-on-gold);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1.5px solid var(--bg-primary);
}

.header-icons-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 999px;
  border: 0.5px solid rgba(212, 184, 122, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 6px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1180px) {
  .mobile-menu-toggle {
    margin-left: auto;
  }

  .header-icon-link {
    width: 40px;
    height: 40px;
  }
}

/* Very narrow phones (~360px and under): the icon pill + wordmark logo +
   toggle no longer fit on one row at full size, so trim them down instead
   of letting the header push the page into horizontal scroll. */
@media (max-width: 360px) {
  .site-header {
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-icons-pill {
    gap: 6px;
    padding: 6px;
  }

  .header-icon-link {
    width: 36px;
    height: 36px;
  }

  .logo-block .wordmark {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}

/* ==========================================================================
   Cart page
   ========================================================================== */

.cart-section {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 56px 100px 120px;
}

.cart-items {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 24px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cart-item-media {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.cart-item-head h3 a {
  color: var(--text-heading);
}

.cart-item-head h3 a:hover {
  color: var(--gold);
}

.cart-remove-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid var(--border-soft);
}

.cart-remove-btn:hover {
  border-color: rgba(239, 151, 151, 0.5);
  background: rgba(239, 151, 151, 0.1);
}

.cart-item-variant {
  margin: 0;
  font-size: 13px;
  color: var(--text-body);
  text-align: right;
}

.cart-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 80px 40px;
  border-radius: 24px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.cart-empty:not([hidden]) {
  display: flex;
}

.cart-empty h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text-heading);
}

.cart-empty p {
  margin: 0;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

/* Order summary sidebar (cart + checkout) */
.order-summary {
  position: sticky;
  top: 24px;
  width: 380px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 24px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(212, 184, 122, 0.06), 0 18px 44px rgba(0, 0, 0, 0.25);
}

.order-summary h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: right;
}

.order-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-body);
}

.order-summary-free {
  color: #7fbf8f;
  font-weight: 600;
}

.order-summary-coupon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-summary-coupon .input-box {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
}

.order-summary-coupon input {
  flex: 1;
  min-width: 0;
  width: 100%;
  font-size: 13px;
}

.btn-coupon {
  flex-shrink: 0;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.order-summary-divider {
  height: 1px;
  width: 100%;
  background: rgba(212, 184, 122, 0.14);
}

.order-summary-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
}

.order-summary-total span:last-child {
  color: var(--gold);
  font-size: 20px;
}

.order-checkout-btn {
  width: 100%;
  text-align: center;
}

.order-continue-link {
  text-align: center;
  font-size: 13px;
  color: var(--text-body);
}

.order-continue-link:hover {
  color: var(--gold);
}

/* ==========================================================================
   Auth page (login / register)
   ========================================================================== */

.auth-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 120px;
  overflow: hidden;
  background: #120e09;
}

.auth-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: rgba(212, 184, 122, 0.08);
  filter: blur(80px);
  pointer-events: none;
}

.auth-card {
  position: relative;
  width: 480px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px;
  border-radius: 32px;
  border: 0.5px solid rgba(212, 184, 122, 0.14);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  box-shadow: 0 0 44px rgba(212, 184, 122, 0.1), 0 22px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.auth-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.auth-card-head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
}

.auth-tabs {
  display: flex;
  padding: 5px;
  border-radius: 999px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  text-align: center;
}

.auth-tab.active-tab {
  background: var(--gold);
  color: var(--dark-on-gold);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(212, 184, 122, 0.3);
}

.auth-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.auth-panel.active-panel {
  display: flex;
}

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

.auth-link-muted {
  font-size: 13px;
  color: var(--text-body);
}

.auth-link-muted:hover {
  color: var(--gold);
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  cursor: pointer;
}

.auth-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.auth-checkbox a {
  color: var(--gold);
}

.auth-switch-line {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-body);
}

.auth-link-gold {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.auth-link-gold:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Checkout page
   ========================================================================== */

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px 8px;
  background: #120e09;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
}

.checkout-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border-soft);
  color: var(--text-body);
}

.checkout-step-num img {
  width: 16px;
  height: 16px;
}

.checkout-step.is-active .checkout-step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-on-gold);
}

.checkout-step.is-active span:last-child {
  color: var(--text-heading);
  font-weight: 600;
}

.checkout-step.is-done .checkout-step-num {
  border-color: rgba(127, 191, 143, 0.5);
  background: rgba(127, 191, 143, 0.12);
}

.checkout-step-line {
  width: 48px;
  height: 1px;
  background: var(--border-soft);
}

.checkout-form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-card {
  width: 100%;
}

.checkout-fields-row {
  display: flex;
  gap: 16px;
}

.checkout-fields-row .form-group {
  flex: 1;
  min-width: 0;
}

.select-box {
  position: relative;
  justify-content: space-between;
}

.select-box select {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-heading);
  text-align: right;
  padding-left: 20px;
}

.select-box select option {
  background: #1a1510;
  color: var(--text-heading);
}

.select-box .select-chevron {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.payment-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.payment-option-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(212, 184, 122, 0.1);
}

.payment-option-icon img {
  width: 18px;
  height: 18px;
}

.payment-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.payment-option-text strong {
  font-size: 14px;
  color: var(--text-heading);
}

.payment-option-text span {
  font-size: 12px;
  color: var(--text-body);
}

.payment-option.is-selected {
  border-color: rgba(212, 184, 122, 0.45);
  background: rgba(212, 184, 122, 0.06);
}

.checkout-mini-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-mini-item img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.checkout-mini-item-name {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: var(--text-heading);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: rtl;
}

.checkout-mini-item-name em {
  font-style: normal;
  color: var(--text-body);
}

.checkout-mini-item-price {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-body);
}

.checkout-success {
  display: none;
}

.checkout-success:not([hidden]) {
  display: flex;
}

.checkout-success-icon {
  width: 80px;
  height: 80px;
}

.checkout-success-icon img {
  width: 36px;
  height: 36px;
}

/* ==========================================================================
   Dashboard page
   ========================================================================== */

.dashboard-section {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 56px 100px 120px;
}

.dashboard-sidebar {
  position: sticky;
  top: 24px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 184, 122, 0.15);
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}

.dashboard-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-profile-info strong {
  font-size: 15px;
  color: var(--text-heading);
}

.dashboard-profile-info span {
  font-size: 12px;
  color: var(--text-body);
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: 20px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-align: right;
  width: 100%;
}

.dashboard-nav-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dashboard-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-heading);
}

.dashboard-nav-item.is-active {
  background: rgba(212, 184, 122, 0.12);
  color: var(--gold);
  font-weight: 700;
}

.dashboard-nav-logout {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border-soft);
  color: #ef9797;
}

.dashboard-nav-logout:hover {
  background: rgba(239, 151, 151, 0.08);
  color: #ef9797;
}

.dashboard-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dashboard-panel {
  display: none;
  flex-direction: column;
  gap: 28px;
}

.dashboard-panel.is-active {
  display: flex;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dashboard-stat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  border-radius: 18px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.dashboard-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

.dashboard-stat-label {
  font-size: 12px;
  color: var(--text-body);
}

.dashboard-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dashboard-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-block-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}

.orders-table {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.orders-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr 1.4fr;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-size: 13px;
  color: var(--text-heading);
  border-bottom: 0.5px solid rgba(212, 184, 122, 0.08);
}

.orders-table-row:last-child {
  border-bottom: none;
}

.orders-table-head {
  color: var(--text-body);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}

.order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.order-status img {
  width: 14px;
  height: 14px;
}

.order-status-done {
  color: #7fbf8f;
}

.order-status-transit {
  color: var(--gold);
}

.order-status-cancelled {
  color: #ef9797;
}

.btn-add-address {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 999px;
}

.address-form {
  width: 100%;
  padding: 28px;
  gap: 20px;
  display: none;
}

.address-form:not([hidden]) {
  display: flex;
}

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

.address-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  border: 0.5px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.address-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.address-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.address-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 184, 122, 0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}

.address-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: right;
}

.address-phone {
  font-size: 13px;
  color: var(--text-heading);
}

.address-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.address-card-actions button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid var(--border-soft);
}

.address-card-actions button:hover {
  border-color: var(--gold);
  background: rgba(212, 184, 122, 0.1);
}

/* ==========================================================================
   Wishlist page
   ========================================================================== */

.wishlist-grid {
  /* .col-grid-row switches to flex-direction:column below 1180px for the
     single-column collection listing; the wishlist grid wants to keep its
     own row+wrap 2-up layout at every width instead, so it's restated here
     (this rule comes after that breakpoint in the cascade and wins). */
  flex-direction: row;
  flex-wrap: wrap;
}

.wishlist-card {
  position: relative;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.wishlist-heart-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid rgba(212, 184, 122, 0.3);
  background: rgba(12, 10, 8, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wishlist-heart-btn img {
  width: 16px;
  height: 16px;
}

.wishlist-add-cart-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark-on-gold);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.wishlist-add-cart-btn.is-added {
  background: rgba(127, 191, 143, 0.9);
}

/* ==========================================================================
   Account area — responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .page-title-bar {
    padding: 130px 40px 40px;
    align-items: flex-end;
  }

  .cart-section {
    padding: 40px 40px 100px;
    flex-direction: column;
  }

  .order-summary {
    position: static;
    width: 100%;
  }

  .dashboard-section {
    padding: 40px 40px 100px;
    flex-direction: column;
  }

  .dashboard-sidebar {
    position: static;
    width: 100%;
  }

  .dashboard-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dashboard-nav-item {
    width: auto;
    flex: 1 1 auto;
  }

  .dashboard-nav-logout {
    margin-top: 0;
    padding-top: 12px;
    border-top: none;
  }
}

@media (max-width: 860px) {
  .page-title-bar {
    padding: 120px 20px 32px;
  }

  .page-title-bar h1 {
    font-size: 26px;
  }

  .cart-section {
    padding: 32px 20px 80px;
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item-media {
    width: 100%;
    height: 180px;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .checkout-fields-row {
    flex-direction: column;
  }

  .checkout-steps {
    gap: 6px;
    padding: 24px 12px 6px;
  }

  .checkout-step span:last-child {
    display: none;
  }

  .checkout-step-line {
    width: 24px;
  }

  .dashboard-section {
    padding: 32px 20px 80px;
  }

  .dashboard-content,
  .dashboard-panel.is-active,
  .dashboard-block {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .orders-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .orders-table-row {
    grid-template-columns: 110px 110px 130px 120px;
    width: max-content;
    min-width: 100%;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }

  .error-actions {
    flex-direction: column;
    width: 100%;
  }
}
