/* =========================================================
   JADE — refined jade + gold
   Soft cream base, champagne gold, muted jade.
   ========================================================= */

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

:root {
  /* JADE — softer, less forest, more dusty-mineral */
  --jade-50:  #f2f6f3;
  --jade-100: #e0ebe3;
  --jade-200: #bcd2c1;
  --jade-300: #8eb294;
  --jade-400: #5f8e6a;
  --jade-500: #3f7150;
  --jade-600: #2f5a40;
  --jade-700: #254734;
  --jade-800: #1c3728;
  --jade-900: #11241a;

  /* GOLD — champagne, not orange */
  --gold-100: #f5ecd4;
  --gold-200: #e8d7a8;
  --gold-300: #d4bd82;
  --gold-400: #bfa266;
  --gold-500: #a88951;
  --gold-600: #8a6f3e;
  --gold-700: #6c5630;

  /* Neutral — warm creams + stone */
  --cream:        #f7f3ec;
  --cream-warm:   #efe8db;
  --cream-deep:   #e8ddc9;
  --ivory:        #fdfbf6;

  --ink-900: #1a1912;
  --ink-800: #2a2820;
  --ink-700: #3c382c;
  --ink-600: #524d3d;
  --ink-500: #6f6a58;
  --ink-400: #8e8875;
  --ink-300: #b3ad98;
  --ink-200: #d6cfba;
  --ink-100: #ebe5d1;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Be Vietnam Pro', 'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --nav-height: 84px;
  --edge: clamp(24px, 5vw, 80px);
  --radius: 2px;

  --shadow-sm: 0 1px 2px rgba(37,71,52,.06);
  --shadow-md: 0 14px 40px -18px rgba(37,71,52,.25);
  --shadow-lg: 0 30px 80px -30px rgba(17,36,26,.35);

  --ease: cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display:block; max-width:100%; }
::selection { background: var(--jade-200); color: var(--jade-900); }

/* Tiny utility — tiny italic underline, used sparingly */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--edge);
  background: rgba(247,243,236,.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(37,71,52,.08);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.scrolled {
  background: rgba(247,243,236,.94);
  border-bottom-color: rgba(37,71,52,.12);
}
.nav.over-dark:not(.scrolled) {
  background: transparent;
  border-bottom-color: rgba(255,255,255,.12);
}
.nav.over-dark:not(.scrolled) .nav-logo,
.nav.over-dark:not(.scrolled) .nav-links a,
.nav.over-dark:not(.scrolled) .lang-toggle { color: var(--ivory); }
.nav.over-dark:not(.scrolled) .nav-links a::after { background: var(--gold-300); }
.nav.over-dark:not(.scrolled) .lang-toggle { border-color: rgba(255,255,255,.3); }

.nav-left { display: flex; align-items: center; }
.nav-center { display: flex; justify-content: center; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 20px; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--jade-800);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  transition: color .3s var(--ease);
}
.nav-logo .dot {
  color: var(--gold-500);
  font-style: italic;
  font-weight: 400;
}
.nav-logo .mark {
  display: inline-block;
  width: 10px; height: 10px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  margin: 0 2px -1px;
  vertical-align: baseline;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-600);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover { color: var(--jade-700); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-toggle {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-500);
  cursor: pointer;
  border: 1px solid var(--ink-200);
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  transition: all .3s var(--ease);
}
.lang-toggle:hover {
  border-color: var(--jade-500);
  color: var(--jade-700);
}

.mobile-menu-btn { display: none; background:none; border:none; cursor:pointer; width:28px; height:20px; position:relative; }
.mobile-menu-btn span { display:block; width:100%; height:1.5px; background: var(--ink-700); position:absolute; left:0; transition:.3s; }
.mobile-menu-btn span:nth-child(1){top:2px} .mobile-menu-btn span:nth-child(2){top:9px} .mobile-menu-btn span:nth-child(3){top:16px}

/* =========================================================
   HERO (full-bleed default)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--ivory);
  display: grid;
  align-items: end;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--ease), transform 8s var(--ease);
}
.hero-media img.active {
  opacity: 1;
  transform: scale(1);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,36,26,.25) 0%, rgba(17,36,26,0) 30%, rgba(17,36,26,0) 55%, rgba(17,36,26,.7) 100%),
    linear-gradient(90deg, rgba(17,36,26,.35) 0%, rgba(17,36,26,0) 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: calc(var(--nav-height) + 60px) var(--edge) clamp(50px, 9vw, 110px);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 28px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp .9s .2s var(--ease) forwards;
}
.hero-tag::before {
  content:''; width: 28px; height: 1px; background: var(--gold-400);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.6vw, 112px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--ivory);
  margin-bottom: 32px;
  max-width: 14ch;
  opacity: 0; animation: fadeUp 1s .4s var(--ease) forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-200);
  display: block;
}
.hero-desc {
  font-size: 15px;
  color: rgba(253,251,246,.8);
  max-width: 44ch;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 42px;
  opacity: 0; animation: fadeUp 1s .6s var(--ease) forwards;
}
.hero-actions {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s .8s var(--ease) forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--ivory);
  color: var(--jade-800);
  border-color: var(--ivory);
}
.btn-primary:hover { background: var(--gold-200); border-color: var(--gold-200); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(253,251,246,.45);
}
.btn-ghost:hover { background: rgba(253,251,246,.1); border-color: var(--ivory); }

.btn-dark {
  background: var(--jade-800);
  color: var(--ivory);
  border-color: var(--jade-800);
}
.btn-dark:hover { background: var(--jade-900); border-color: var(--jade-900); }

.btn-outline-dark {
  background: transparent;
  color: var(--jade-800);
  border-color: var(--ink-300);
}
.btn-outline-dark:hover { background: var(--jade-800); color: var(--ivory); border-color: var(--jade-800); }

/* Hero slider indicator */
.hero-dots {
  position: absolute;
  right: var(--edge);
  bottom: clamp(50px, 9vw, 110px);
  display: flex; gap: 10px;
  z-index: 2;
}
.hero-dot {
  width: 28px; height: 1px;
  background: rgba(253,251,246,.3);
  cursor: pointer;
  position: relative;
  transition: background .4s var(--ease);
}
.hero-dot.active { background: var(--gold-300); height: 1.5px; }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(253,251,246,.6);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.hero-scroll::after {
  content:''; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold-300), transparent);
  animation: scrollLine 2.2s infinite var(--ease);
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: clamp(72px, 10vw, 140px) var(--edge);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -.005em;
  color: var(--jade-900);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.section-divider {
  width: 32px; height: 1px;
  background: var(--gold-500);
  margin: 22px auto 0;
  position: relative;
}
.section-divider::before, .section-divider::after {
  content: ''; position: absolute; top: -2px;
  width: 5px; height: 5px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: var(--cream);
}
.section-divider::before { left: -14px; }
.section-divider::after { right: -14px; }

.section-sub {
  max-width: 56ch;
  margin: 24px auto 0;
  text-align: center;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

/* =========================================================
   FILTER BAR
   ========================================================= */
.filter-bar {
  max-width: 1280px;
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: var(--ivory);
  border: 1px solid var(--ink-100);
  border-radius: 999px;
}
.search-wrap { flex: 1; min-width: 240px; position: relative; }
.search-wrap svg {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--ink-400);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-700);
  outline: none;
}
.search-input::placeholder { color: var(--ink-300); font-weight: 300; }

.filter-group { display: flex; align-items: center; gap: 8px; padding: 0 8px; border-left: 1px solid var(--ink-100); }
.filter-label { font-size: 11px; color: var(--ink-400); letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; margin-right: 4px; }
.filter-input {
  width: 80px; padding: 10px 12px;
  border: 1px solid var(--ink-100);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-700);
  outline: none;
  border-radius: 999px;
  transition: border-color .25s var(--ease);
}
.filter-input:focus { border-color: var(--jade-400); }
.filter-btn {
  padding: 12px 24px;
  background: var(--jade-800); color: var(--ivory);
  border: none;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; border-radius: 999px;
  transition: background .25s var(--ease);
}
.filter-btn:hover { background: var(--jade-900); }

/* =========================================================
   PRODUCT GRID — minimal (default) + card variants
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.product-card {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform .5s var(--ease);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover { transform: translateY(-4px); }

.product-image {
  aspect-ratio: 4/5;
  background: var(--cream-warm);
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.product-card:hover .product-image { border-color: var(--gold-500); }
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), opacity .3s;
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-image-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--jade-50), var(--cream-warm) 60%, var(--gold-100));
  color: var(--jade-400);
  gap: 14px;
}
.product-image-placeholder .stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient( -45deg,
    transparent 0, transparent 12px,
    rgba(37,71,52,.04) 12px, rgba(37,71,52,.04) 13px );
  pointer-events: none;
}
.product-image-placeholder svg { width: 40px; height: 40px; opacity: .4; }
.product-image-placeholder .ph-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--jade-500);
  opacity: .6;
}

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--jade-800);
  background: var(--ivory);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product-tag.gold { color: var(--gold-700); }

.product-info {
  padding: 18px 2px 4px;
  display: flex; flex-direction: column; gap: 4px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--jade-900);
  letter-spacing: .005em;
  line-height: 1.25;
}
.product-type {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-400);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  order: -1;
}
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--jade-800);
  margin-top: 6px;
  display: flex; align-items: baseline; gap: 4px;
}
.product-price .currency {
  font-size: 12px; font-weight: 400;
  color: var(--gold-600);
  letter-spacing: .1em;
}

/* =========================================================
   LOOKBOOK
   ========================================================= */
.lookbook {
  position: relative;
  height: clamp(420px, 62vh, 640px);
  overflow: hidden;
  margin: 0;
}
.lookbook-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease);
}
.lookbook:hover .lookbook-image { transform: scale(1.08); }
.lookbook::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,36,26,.1) 0%, rgba(17,36,26,.55) 100%);
  pointer-events: none;
}
.lookbook-overlay {
  position: absolute;
  left: 50%; bottom: clamp(40px, 7vw, 80px);
  transform: translateX(-50%);
  text-align: center;
  color: var(--ivory);
  z-index: 1;
  max-width: 720px;
  padding: 0 20px;
}
.lookbook-tag { color: var(--gold-300); margin-bottom: 14px; }
.lookbook-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--ivory);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--jade-900);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(600px 300px at 80% 10%, rgba(191,162,102,.08), transparent 60%),
    radial-gradient(500px 400px at 20% 90%, rgba(143,178,148,.08), transparent 60%);
  pointer-events: none;
}
.about-visual { overflow: hidden; position: relative; }
.about-image { width:100%; height:100%; object-fit: cover; transition: transform 1s var(--ease); }
.about-visual:hover .about-image { transform: scale(1.04); }
.about-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 6vw, 100px);
  position: relative;
  gap: 20px;
}
.about-content .eyebrow { color: var(--gold-300); }
.about-content .section-title { color: var(--ivory); }
.about-content .section-title em { color: var(--gold-200); }
.about-text {
  font-size: 15.5px;
  color: rgba(253,251,246,.75);
  line-height: 1.9;
  font-weight: 300;
  max-width: 50ch;
}
.about-sign {
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-200);
}
.about-stats {
  display: flex; gap: 36px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(253,251,246,.12);
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num { font-family: var(--font-display); font-size: 36px; color: var(--gold-200); font-weight: 300; line-height: 1; }
.about-stat-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(253,251,246,.55); }

/* =========================================================
   CONTACT BAR
   ========================================================= */
.contact-bar {
  background: var(--jade-800);
  padding: 48px var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact-bar::before {
  content: ''; position: absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  width: 320px; height: 320px;
  border: 1px solid rgba(191,162,102,.12);
  border-radius: 50%;
}
.contact-bar::after {
  content: ''; position: absolute;
  right: -40px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 200px;
  border: 1px solid rgba(191,162,102,.08);
  border-radius: 50%;
}
.contact-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 300;
  color: var(--cream);
  position: relative;
}
.contact-text em { font-style: italic; color: var(--gold-200); }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 72px var(--edge) 36px;
  background: var(--jade-900);
  color: rgba(253,251,246,.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,251,246,.08);
  max-width: 1280px; margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand .dot { color: var(--gold-400); font-style: italic; }
.footer-tagline { font-size: 13.5px; color: rgba(253,251,246,.6); font-weight: 300; line-height: 1.7; max-width: 36ch; font-style: italic; font-family: var(--font-display); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 20px; font-weight: 500;
}
.footer-col a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: rgba(253,251,246,.55);
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 300;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.footer-col a:hover { color: var(--ivory); gap: 14px; }
.footer-col a svg { width: 14px; height: 14px; opacity: .7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(253,251,246,.4);
  font-weight: 300;
  max-width: 1280px; margin: 0 auto;
  letter-spacing: .05em;
}

/* =========================================================
   LOADING
   ========================================================= */
.skeleton {
  background: linear-gradient(90deg, var(--cream-warm) 25%, var(--ivory) 50%, var(--cream-warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 2px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity:0; transform: translateY(26px);} to {opacity:1; transform: translateY(0);} }
@keyframes fadeIn { from { opacity:0;} to {opacity:1;} }

/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */
.pd {
  padding: calc(var(--nav-height) + 40px) var(--edge) 40px;
  max-width: 1400px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 36px;
}
.breadcrumb a { color: var(--ink-500); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--jade-700); }
.breadcrumb .sep { color: var(--ink-300); }
.breadcrumb .current { color: var(--jade-800); }

.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.pd-gallery { position: sticky; top: calc(var(--nav-height) + 24px); }
.pd-main-img {
  aspect-ratio: 4/5;
  background: var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.pd-main-img img { width:100%; height:100%; object-fit: cover; }
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.pd-thumb {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-warm);
  position: relative;
  transition: border-color .3s var(--ease), transform .3s;
}
.pd-thumb:hover { transform: translateY(-2px); }
.pd-thumb.active { border-color: var(--gold-500); }
.pd-thumb img { width:100%; height:100%; object-fit: cover; }
.pd-thumb video { width:100%; height:100%; object-fit: cover; pointer-events: none; background: #000; }
.pd-thumb-video .pd-thumb-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; background: rgba(0,0,0,0.35); pointer-events: none;
}
.pd-thumb-video .pd-thumb-play svg { width: 28px; height: 28px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45)); }

.pd-info { padding-top: 10px; display: flex; flex-direction: column; gap: 18px; }
.pd-type {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 500;
}
.pd-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--jade-900);
  letter-spacing: -.005em;
}
.pd-name em { font-style: italic; color: var(--gold-600); font-weight: 300; }

.pd-price {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  color: var(--jade-800);
  display: flex; align-items: baseline; gap: 6px;
}
.pd-price .currency { font-size: 14px; color: var(--gold-600); letter-spacing: .1em; font-weight: 400; }
.pd-price .old { font-size: 20px; color: var(--ink-300); text-decoration: line-through; margin-left: 10px; font-weight: 300; }

.pd-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  width: 80px;
}

.pd-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-600);
  font-weight: 300;
  max-width: 56ch;
  white-space: pre-line;
}

.pd-attrs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin-top: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.pd-attr { display: flex; flex-direction: column; gap: 4px; }
.pd-attr-label {
  font-size: 10.5px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-400); font-weight: 500;
}
.pd-attr-value {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--jade-800);
  font-weight: 400;
}

.pd-fit {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 20px;
  background: var(--cream-warm);
  border: 1px solid var(--ink-100);
  border-radius: 10px;
}
.pd-fit-head { display: flex; align-items: center; gap: 14px; }
.pd-fit-head svg { width: 28px; height: 28px; color: var(--gold-600); flex-shrink: 0; }
.pd-fit-head > div { display: flex; flex-direction: column; gap: 3px; line-height: 1.2; }
.pd-fit-label { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-500); font-weight: 500; }
.pd-fit-value { font-family: var(--font-display); font-size: 20px; color: var(--jade-900); font-weight: 500; }
.pd-fit-note { font-size: 17px; color: var(--ink-500); font-weight: 300; line-height: 1.5; font-style: italic; font-family: var(--font-display); padding-left: 42px; }

.pd-qty-row { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.pd-stock {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 16px;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  background: var(--ivory);
}
.pd-stock-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--jade-500);
  box-shadow: 0 0 0 3px rgba(63,113,80,.15);
  flex-shrink: 0;
}
.pd-stock-dot.out { background: var(--ink-300); box-shadow: 0 0 0 3px rgba(179,173,152,.2); }
.pd-stock-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.pd-stock-label {
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-400); font-weight: 500;
}
.pd-stock-value {
  font-family: var(--font-display);
  font-size: 15px; color: var(--jade-800); font-weight: 500;
}
.pd-btn-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.pd-cta { padding: 16px 32px; flex: 1; justify-content: center; min-width: 200px; }

.pd-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-100);
}
.pd-meta-item {
  display: flex; flex-direction: column; gap: 6px;
  text-align: center;
}
.pd-meta-item svg { width: 22px; height: 22px; color: var(--gold-500); margin: 0 auto; }
.pd-meta-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-500); }
.pd-meta-text { font-size: 12px; color: var(--ink-400); font-weight: 300; }

.pd-story {
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(60px, 8vw, 100px) var(--edge);
  background: var(--cream-warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1280px; margin-left: auto; margin-right: auto;
  border-radius: var(--radius);
}
.pd-story-title { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px); font-weight: 300; color: var(--jade-900); line-height: 1.2; }
.pd-story-title em { font-style: italic; color: var(--gold-600); }
.pd-story-text { font-size: 15px; line-height: 1.9; color: var(--ink-600); font-weight: 300; max-width: 52ch; margin-top: 16px; white-space: pre-line; }

.pd-related {
  padding: clamp(72px, 10vw, 120px) var(--edge);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-center { display: none; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { min-height: 88vh; }
  .hero-title { font-size: clamp(44px, 10vw, 80px); }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 360px; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-gallery { position: relative; top: 0; }
  .pd-story { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .lookbook { height: clamp(320px, 50vh, 440px); }
  .contact-bar { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .product-info { padding: 12px 4px; }
  .product-name { font-size: 17px; }
  .product-price { font-size: 17px; }
  .filter-bar { border-radius: 12px; padding: 10px; }
  .filter-group { border-left: none; border-top: 1px solid var(--ink-100); padding-top: 10px; padding-left: 0; width: 100%; justify-content: space-between;}
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .about-stat-num { font-size: 28px; }
  .pd-btn-row { flex-direction: column; }
  .pd-cta { width: 100%; }
}

/* =========================================================
   ADMIN AUTH (login / register / reset)
   ========================================================= */
.admin-body {
  background: var(--cream);
  min-height: 100vh;
}
.admin-auth {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px var(--edge);
  gap: 32px;
}
.admin-brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--jade-700);
  text-decoration: none;
  letter-spacing: .02em;
}
.admin-brand .dot { color: var(--gold-500); margin: 0 2px; }

.auth-card {
  background: var(--ivory);
  border: 1px solid var(--ink-100);
  border-radius: 4px;
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}
.auth-card.hidden { display: none; }
.auth-card h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--jade-800);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.auth-sub {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 28px;
  line-height: 1.55;
}
.auth-card form { display: flex; flex-direction: column; gap: 16px; }
.auth-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
.auth-card input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-800);
  background: var(--cream);
  border: 1px solid var(--ink-100);
  border-radius: 2px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.auth-card input:focus {
  border-color: var(--jade-400);
  background: var(--ivory);
}
.auth-card .btn-primary {
  margin-top: 8px;
  background: var(--jade-700);
  color: var(--ivory);
  border: none;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s var(--ease);
}
.auth-card .btn-primary:hover { background: var(--jade-800); }
.auth-card .btn-ghost {
  background: transparent;
  color: var(--jade-700);
  border: 1px solid var(--ink-200);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.auth-card .btn-ghost:hover { background: var(--cream); }

.auth-error {
  color: #a6342a;
  font-size: 13px;
  min-height: 1em;
  margin-top: 4px;
}
.auth-switch {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
.auth-switch a {
  color: var(--jade-600);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.auth-switch a:hover { border-bottom-color: var(--jade-600); }

.recovery-box {
  background: var(--cream-warm);
  border: 1px solid var(--gold-200);
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.recovery-box code {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ink-900);
  letter-spacing: .04em;
  word-break: break-all;
}

/* =========================================================
   ADMIN DASHBOARD
   ========================================================= */
.admin-shell {
  min-height: 100vh;
  padding: clamp(28px, 4vw, 52px);
}

.admin-dashboard {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 0 2px;
}

.admin-kicker {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.admin-title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--jade-900);
}

.admin-copy {
  max-width: 56ch;
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 15px;
}

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

.admin-action-link {
  justify-content: center;
}

.admin-overview {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.admin-panel {
  background: rgba(253,251,246,.92);
  border: 1px solid rgba(37,71,52,.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.admin-panel h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--jade-900);
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-panel-copy {
  max-width: 32ch;
  color: var(--ink-500);
  font-size: 14px;
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.admin-stat-card {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(242,246,243,.95), rgba(247,243,236,.95));
  border: 1px solid rgba(37,71,52,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-stat-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.admin-stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--jade-800);
  line-height: 1;
}

.admin-summary-note {
  margin-top: 18px;
  color: var(--ink-500);
  font-size: 14px;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.admin-toolbar-copy h2 {
  margin-top: 10px;
}

.admin-search {
  min-width: min(100%, 360px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-search span,
.admin-form label span,
.admin-upload-card label span {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}

.admin-search input,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-upload-card input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-800);
  background: var(--cream);
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.admin-form textarea {
  resize: vertical;
  min-height: 120px;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-search input:focus,
.admin-upload-card input:focus {
  border-color: var(--jade-400);
  background: var(--ivory);
  box-shadow: 0 0 0 4px rgba(63,113,80,.08);
}

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

.admin-form label,
.admin-upload-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-field-wide {
  grid-column: 1 / -1;
}

.admin-form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-form-hint {
  grid-column: 1 / -1;
  color: var(--ink-500);
  font-size: 13px;
}

.admin-feedback {
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 14px;
  border: 1px solid transparent;
}

.admin-feedback.hidden {
  display: none;
}

.admin-feedback-success {
  color: var(--jade-800);
  background: rgba(224,235,227,.9);
  border-color: rgba(63,113,80,.15);
}

.admin-feedback-error {
  color: #8d3125;
  background: #f8e8e3;
  border-color: rgba(141,49,37,.15);
}

.admin-feedback-info {
  color: var(--ink-700);
  background: rgba(239,232,219,.9);
  border-color: rgba(82,77,61,.12);
}

.admin-products-list {
  display: grid;
  gap: 18px;
}

.admin-product-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-product-top {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-product-cover {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--cream-warm), var(--gold-100));
  border: 1px solid rgba(37,71,52,.08);
}

.admin-product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-image-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--jade-500);
  text-align: center;
  padding: 20px;
}

.admin-image-placeholder svg {
  width: 42px;
  height: 42px;
  opacity: .7;
}

.admin-product-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-product-meta h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--jade-900);
}

.admin-product-code,
.admin-product-slug,
.admin-product-note {
  color: var(--ink-500);
}

.admin-product-code {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admin-product-slug {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.admin-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid rgba(37,71,52,.08);
  color: var(--ink-600);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.admin-badge.is-live {
  background: rgba(224,235,227,.9);
  color: var(--jade-800);
}

.admin-badge.is-hidden {
  background: rgba(239,232,219,.9);
  color: var(--ink-700);
}

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

.admin-upload-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(37,71,52,.08);
  background: linear-gradient(180deg, rgba(247,243,236,.92), rgba(242,246,243,.85));
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-upload-copy h4 {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--jade-900);
}

.admin-upload-copy p:last-child {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 14px;
}

.admin-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(37,71,52,.08);
  background: linear-gradient(180deg, rgba(247,243,236,.92), rgba(242,246,243,.85));
}

.admin-gallery-head h4 {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--jade-900);
}

.admin-gallery-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.admin-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(37,71,52,.04);
  box-shadow: 0 1px 2px rgba(17,24,39,.04);
}

.admin-gallery-item.is-cover {
  outline: 2px solid var(--jade-800);
  outline-offset: -2px;
}

.admin-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-gallery-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37,71,52,.92);
  color: #fff;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.admin-gallery-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(17,24,39,.78);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.admin-gallery-delete:hover:not(:disabled) {
  background: rgba(153,27,27,.92);
  transform: scale(1.05);
}

.admin-gallery-delete:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.admin-gallery-delete svg {
  width: 16px;
  height: 16px;
}

.admin-gallery-empty {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.6);
  color: var(--ink-500);
  font-size: 14px;
}

.admin-empty-state {
  text-align: center;
  padding: 54px 28px;
}

.admin-empty-state h2 {
  margin-top: 10px;
}

.admin-empty-state p:last-child {
  margin-top: 12px;
  color: var(--ink-500);
}

@media (max-width: 1080px) {
  .admin-overview {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .admin-shell {
    padding: 20px;
  }

  .admin-panel {
    padding: 22px;
    border-radius: 18px;
  }

  .admin-summary-grid,
  .admin-form-grid,
  .admin-media-grid,
  .admin-product-top {
    grid-template-columns: 1fr;
  }

  .admin-product-cover {
    max-width: 220px;
  }

  .admin-product-meta h3 {
    font-size: 28px;
  }

  .admin-form-actions,
  .admin-header-actions {
    width: 100%;
  }

  .admin-form-actions .btn,
  .admin-header-actions .btn,
  .admin-upload-card .btn {
    width: 100%;
    justify-content: center;
  }
}