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

:root {
  --bg: #040404;
  --bg-soft: #0b0b0b;
  --panel: rgba(13, 13, 13, 0.92);
  --panel-soft: rgba(18, 18, 18, 0.86);
  --line: rgba(212, 175, 105, 0.18);
  --text: #f4f0e8;
  --muted: #bfae88;
  --gold: #d4af69;
  --gold-bright: #f0d8a3;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 105, 0.08), transparent 22%),
    radial-gradient(circle at 10% 20%, rgba(212, 175, 105, 0.05), transparent 18%),
    linear-gradient(180deg, #050505 0%, #080808 100%);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  font-size: 15px;
}

body[dir="rtl"] {
  font-family: "Cairo", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  text-align: right;
}

body[dir="rtl"] input,
body[dir="rtl"] textarea,
body[dir="rtl"] select {
  text-align: right;
}

body[dir="rtl"] .collection-intro h1,
body[dir="rtl"] .section-heading h2,
body[dir="rtl"] .highlight-card h2,
body[dir="rtl"] .brand-statement,
body[dir="rtl"] .catalog-card__body h3,
body[dir="rtl"] .product-modal__title,
body[dir="rtl"] .media-lightbox__title,
body[dir="rtl"] .admin-panel h3,
body[dir="rtl"] .admin-product-item__body h3,
body[dir="rtl"] .site-footer strong {
  font-family: "Cairo", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body[dir="rtl"] .eyebrow,
body[dir="rtl"] .catalog-card__eyebrow,
body[dir="rtl"] .scroll-hint,
body[dir="rtl"] .ticker,
body[dir="rtl"] .collection-nav a,
body[dir="rtl"] .lang-toggle,
body[dir="rtl"] .cart-button,
body[dir="rtl"] .stock-badge,
body[dir="rtl"] .quantity-field,
body[dir="rtl"] .product-modal__hint,
body[dir="rtl"] .media-lightbox__hint {
  letter-spacing: 0.04em;
  text-transform: none;
}

body[dir="rtl"] .catalog-card__placeholder {
  letter-spacing: 0.04em;
  text-transform: none;
}

body[dir="rtl"] .section-heading {
  grid-template-columns: minmax(0, 1fr) 9rem;
}

body[dir="rtl"] .section-heading .eyebrow {
  grid-column: 2;
  text-align: right;
}

body[dir="rtl"] .section-heading > div {
  grid-column: 1;
  text-align: right;
}

body[dir="rtl"] .highlight-card,
body[dir="rtl"] .catalog-card__body,
body[dir="rtl"] .cart-panel,
body[dir="rtl"] .cart-panel__header,
body[dir="rtl"] .site-footer,
body[dir="rtl"] .admin-panel,
body[dir="rtl"] .admin-product-item__body {
  text-align: right;
}

body[dir="rtl"] .catalog-card__flag {
  right: auto;
  left: 0.7rem;
}

body[dir="rtl"] .catalog-card__flag--size {
  left: auto;
  right: 0.7rem;
}

body[dir="rtl"] .catalog-card__flag--sold {
  left: 0.7rem;
  right: auto;
}

body[dir="rtl"] .site-footer__inner,
body[dir="rtl"] .site-footer__brand {
  text-align: right;
}

body.is-lightbox-open {
  overflow: hidden;
}

body.is-product-modal-open {
  overflow: hidden;
}

.page-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18), transparent 40%),
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 247, 234, 0.9) 100%);
  opacity: 0.78;
}

.page-glow {
  z-index: 1;
}

.announcement-bar,
.site-shell {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .page-video__media {
    display: block;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button:disabled,
input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.page-glow--top {
  top: 3rem;
  right: -8rem;
  background: rgba(212, 175, 105, 0.14);
}

.page-glow--side {
  bottom: 8rem;
  left: -8rem;
  background: rgba(212, 175, 105, 0.08);
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 2rem;
  padding-top: calc(var(--topbar-height, 3.2rem) + var(--ticker-height, 2.2rem));
}

.announcement-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(90deg, #060606 0%, #171108 50%, #060606 100%);
  color: var(--gold-bright);
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.announcement-bar p {
  margin: 0;
  padding: 0.9rem 1rem;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(6, 6, 6, 0.94);
  color: #000000;
  z-index: 25;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  margin: 0.25rem 0 1rem;
}

.ticker--top {
  position: fixed !important;
  top: var(--topbar-height, 3.2rem) !important;
  left: 0;
  right: 0;
  height: var(--ticker-height, 2.2rem);
  margin: 0;
  border-radius: 0;
  z-index: 35;
}

.ticker--top .ticker__inner,
.ticker--top .ticker__track {
  height: 100%;
}

.ticker--top .ticker__track {
  padding: 0;
}

.ticker__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  padding: 0.4rem 0;
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
  will-change: transform;
}

.ticker__track span {
  flex: 0 0 auto;
}

.ticker__track {
  min-width: 100%;
}

.ticker__track span {
  padding: 0 1.1rem;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.site-header,
.collection-nav,
.collection-intro,
.catalog-section,
.admin-auth-card,
.admin-panel,
.admin-toolbar,
.site-footer,
.empty-state {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  margin: 0 0 0.8rem;
  padding: 3.9rem 0.75rem 0.75rem;
  border-radius: var(--radius-xl);
  position: relative;
  background:
    radial-gradient(circle at 50% 4%, rgba(212, 175, 105, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.98), rgba(4, 4, 4, 0.96));
}

.site-topbar {
  margin: 0;
  padding: 0.7rem 1.1rem;
  padding-left: 0.7rem;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  min-height: var(--topbar-height, 3.2rem);
}

.site-shell > .site-topbar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.topbar-left,
.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-right {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.topbar-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gold);
}

.site-header--admin {
  margin-bottom: 1rem;
}

.logo-showcase {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
  padding-top: 0.7rem;
  padding-inline: 2.4rem;
}

.header-actions {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.header-actions .button {
  min-height: 2.2rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.header-controls {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.header-menu {
  position: relative;
}

.header-menu__toggle {
  min-height: 2.2rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.topbar-left {
  gap: 0.35rem;
}

.topbar-title {
  font-size: 0.68rem;
}

.topbar-right {
  gap: 0.35rem;
}

.header-whatsapp {
  padding: 0.35rem 0.5rem;
  min-height: 2rem;
}

.header-whatsapp .whatsapp-text {
  display: none;
}

.lang-toggle {
  padding: 0.35rem 0.5rem;
  min-height: 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.lang-toggle::after {
  content: "/AR";
  margin-left: 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.cart-button {
  padding: 0.35rem 0.5rem;
  min-height: 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.header-menu__toggle {
  padding-left: 0;
  margin-left: -0.25rem;
}

.header-menu__toggle::-webkit-details-marker {
  display: none;
}

.menu-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-bright);
}

.header-menu__panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  display: grid;
  gap: 0.35rem;
  min-width: 190px;
  padding: 0.6rem;
  border-radius: 18px;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.header-menu__panel a {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-menu__panel a:hover {
  background: rgba(212, 175, 105, 0.12);
  color: var(--gold-bright);
}

.header-menu__group {
  display: grid;
  gap: 0.35rem;
}

.header-menu__group summary {
  list-style: none;
  cursor: pointer;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 155, 58, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.header-menu__group summary::-webkit-details-marker {
  display: none;
}

.header-menu__group[open] summary {
  background: rgba(201, 155, 58, 0.12);
  color: var(--gold);
}

.header-menu__sublist {
  display: grid;
  gap: 0.25rem;
  padding-inline-start: 0.6rem;
}

.header-menu__sublist a {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: #25d366;
}

.header-whatsapp .whatsapp-text {
  color: var(--gold-bright);
}

.logo-showcase--admin {
  gap: 0.7rem;
}

.brand-pair {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1.2fr) minmax(110px, 0.32fr);
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.brand-logo {
  padding: 0.4rem 0.6rem;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-loader__card {
  display: grid;
  gap: 0.6rem;
  place-items: center;
}

.site-shell {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.page-enter .site-shell {
  opacity: 1;
  transform: translateY(0);
}

body.page-enter .site-topbar {
  animation: topbar-drop 700ms ease-out both;
}

body.page-enter .brand-pair {
  animation: logo-pop 900ms ease-out both;
}

body.page-enter .brand-statement {
  animation: text-fade 900ms ease-out both;
  animation-delay: 120ms;
}

body.page-enter .highlight-card {
  animation: card-rise 750ms ease-out both;
}

body.page-enter .highlight-card:nth-child(1) {
  animation-delay: 120ms;
}

body.page-enter .highlight-card:nth-child(2) {
  animation-delay: 240ms;
}

body.page-enter .catalog-section {
  animation: section-rise 800ms ease-out both;
  animation-delay: 200ms;
}

@keyframes topbar-drop {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-pop {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  70% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes text-fade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-rise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section-rise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-loader__logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  animation: logo-pulse 2.6s ease-in-out infinite;
}

@media (max-width: 600px) {
  .intro-loader__logo {
    width: 170px;
  }
}

.brand-pair--admin {
  grid-template-columns: minmax(155px, 0.44fr) minmax(0, 1.2fr) minmax(155px, 0.44fr);
}

.brand-logo {
  width: min(940px, 100%);
  margin: 0 auto;
  max-height: 280px;
  height: clamp(180px, 22vw, 280px);
  object-fit: contain;
  transform: scale(1.12);
  padding: 0.55rem 0.9rem;
  border-radius: 20px;
  border: 1.5px solid rgba(180, 130, 30, 0.65);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.65), transparent 55%),
    #ffffff !important;
  box-shadow:
    0 16px 34px rgba(177, 126, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -10px 18px rgba(120, 70, 10, 0.15);
  filter:
    drop-shadow(0 12px 20px rgba(43, 27, 18, 0.2))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.5));
  transform: perspective(900px) rotateX(2deg);
  animation: logo-reveal 1.2s ease-out both;
}

.brand-logo--admin {
  width: min(580px, 100%);
  max-height: 180px;
  height: clamp(120px, 16vw, 180px);
}

.brand-frame {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 4 / 5;
  background: #0a0a0a;
  justify-self: center;
  border: 1px solid rgba(212, 175, 105, 0.35);
  border-radius: 18px;
  box-shadow:
    0 10px 24px rgba(212, 175, 55, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: grid;
  place-items: center;
  animation: frame-glow 2.2s ease-out both;
}

.brand-frame--admin {
  max-width: 155px;
}

.brand-frame__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes logo-reveal {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes frame-glow {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow:
      0 10px 24px rgba(212, 175, 55, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: perspective(900px) rotateX(2deg) scale(1);
  }
  50% {
    transform: perspective(900px) rotateX(2deg) scale(1.04);
  }
}

.brand-portrait,
.brand-emblem {
  width: 100%;
  height: 100%;
}

.brand-portrait {
  object-fit: contain;
  background: #ffffff;
}

.brand-statement {
  margin: 0;
  max-width: 1020px;
  color: var(--gold) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: italic;
}

.brand-statement--admin {
  max-width: 760px;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
}

.collection-nav {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.7rem;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(18px);
}

.scroll-hint {
  margin: 0 0 0.9rem;
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.1rem;
  font-weight: 800;
  font-style: italic;
}

.scroll-block {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
}

.coming-soon-banner {
  display: flex;
  justify-content: center;
  margin: -3.8rem 0 1.2rem;
}

.coming-soon-banner p {
  margin: 0;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 239, 215, 0.92));
  color: #15110b;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(201, 155, 58, 0.14);
}

.collection-nav a,
.site-footer__links a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.collection-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.lang-toggle {
  border: 1px solid rgba(212, 175, 105, 0.3);
  background: rgba(12, 12, 12, 0.82);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-toggle:hover {
  background: rgba(212, 175, 105, 0.08);
}

.cart-button {
  border: 1px solid rgba(212, 175, 105, 0.3);
  background: rgba(15, 12, 8, 0.7);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  cursor: pointer;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: #060606;
  font-weight: 700;
}

.collection-nav a:hover,
.site-footer__links a:hover {
  color: var(--gold-bright);
  background: rgba(212, 175, 105, 0.08);
}

main {
  display: grid;
  gap: 1.35rem;
}

.hero-spacer {
  min-height: 0;
}

.collection-intro,
.catalog-section,
.admin-auth-card,
.admin-panel,
.admin-toolbar,
.site-footer {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--panel);
}

.catalog-section--boxed {
  border: 2px solid rgba(201, 155, 58, 0.55);
  box-shadow: 0 22px 55px rgba(18, 15, 11, 0.12);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: -1rem;
}

.highlight-card {
  padding: 0.8rem 0.75rem;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.highlight-card .eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold);
}

.highlight-card h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  line-height: 1.2;
}

.highlight-card p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.highlight-card h2 {
  margin: 0 0 0.24rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  line-height: 1.05;
  font-style: italic;
  font-weight: 700;
}

.highlight-card p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  font-style: italic;
  font-weight: 700;
}

#men {
  margin-top: 2.5rem;
}

.collection-intro {
  text-align: center;
}

.collection-intro h1,
.section-heading h2,
.admin-auth-card h1,
.catalog-card__body h3,
.admin-panel h3,
.admin-product-item__body h3,
.empty-state h3,
.site-footer strong {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.collection-intro h1 {
  font-size: clamp(2.9rem, 6vw, 4.8rem);
}

.collection-intro p:last-child,
.section-heading p,
.catalog-card__body p,
.site-footer p,
.admin-auth-card p,
.admin-product-item__body p,
.admin-empty-state p {
  color: var(--muted);
}

.admin-product-item__note {
  margin: 0.35rem 0 0;
  color: var(--gold-bright);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow,
.catalog-card__eyebrow,
.admin-field span {
  margin: 0 0 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.9rem;
}

.section-heading h2,
.admin-auth-card h1 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(9, 9, 9, 0.95));
}

.catalog-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(8rem, 18vw, 11rem);
  padding: 0.8rem 0.8rem 1rem;
  background:
    radial-gradient(circle at top, rgba(212, 175, 105, 0.14), transparent 50%),
    #0f0f0f;
}

.catalog-card__media.is-scroll {
  padding: 0.65rem 0.65rem 0.85rem;
}

.media-scroll {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  align-items: center;
}

.media-scroll img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.2rem;
  scroll-snap-align: start;
}

.media-scroll::-webkit-scrollbar {
  height: 6px;
}

.media-scroll::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 105, 0.35);
  border-radius: 999px;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: clamp(6.5rem, 14vw, 9rem);
  padding: 0.2rem;
}

.catalog-card__media span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.catalog-card__body {
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem;
}

.catalog-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.catalog-card__size {
  flex: 0 0 auto;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 105, 0.28);
  background: rgba(212, 175, 105, 0.08);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card__media {
  cursor: pointer;
}

.catalog-card__flag {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.catalog-card__flag--sold {
  right: auto;
  left: 0.7rem;
  background: #c42a2a;
  color: #ffffff !important;
}

.catalog-card__flag--size {
  background: rgba(255, 255, 255, 0.96);
  color: var(--gold) !important;
  border: 1px solid rgba(201, 155, 58, 0.32);
  top: 0.34rem;
  right: 0.34rem;
  padding: 0.04rem 0.18rem;
  font-size: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.catalog-card__placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(212, 175, 105, 0.35);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.catalog-card__description {
  max-height: 2.9em;
  opacity: 1;
  overflow: hidden;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
  transition: max-height 0.35s ease;
}

.catalog-card__description::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.2em;
  background: linear-gradient(transparent, rgba(9, 9, 9, 0.98));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.catalog-card.is-description-open .catalog-card__description {
  max-height: 12rem;
}

.catalog-card.is-description-open .catalog-card__description::after {
  opacity: 0;
}

.catalog-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quantity-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.quantity-field input {
  width: 70px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #0c0c0c;
  color: var(--text);
  text-align: center;
}

.catalog-card__body h3,
.admin-panel h3,
.admin-product-item__body h3,
.empty-state h3 {
  font-size: 1.6rem;
}

.catalog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.catalog-card__meta strong {
  color: var(--gold-bright);
  font-size: 1rem;
}

.catalog-card__meta span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  border: 1px solid transparent;
}

.stock-badge--in {
  color: #d7f3c8;
  border-color: rgba(122, 179, 120, 0.35);
  background: rgba(78, 120, 76, 0.2);
}

.stock-badge--out {
  color: #f3c9c0;
  border-color: rgba(220, 120, 120, 0.35);
  background: rgba(120, 60, 60, 0.2);
}

.empty-state {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 4, 4, 0.82);
  backdrop-filter: blur(6px);
}

.media-lightbox__content {
  width: min(980px, 94vw);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(7, 7, 7, 0.96));
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.media-lightbox__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.media-lightbox__eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--muted);
}

.media-lightbox__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.media-lightbox__close {
  border: 1px solid rgba(212, 175, 105, 0.35);
  background: transparent;
  color: var(--gold-bright);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  cursor: pointer;
}

.media-lightbox__track {
  display: flex;
  width: 100%;
  height: clamp(240px, 55vw, 520px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(6, 6, 6, 0.85);
}

.media-lightbox__track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: center;
  border-radius: var(--radius-md);
  background: #050505;
  padding: 0.6rem;
}

.media-lightbox__hint {
  margin: 0.8rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.6rem;
  background: rgba(4, 4, 4, 0.86);
  backdrop-filter: blur(8px);
}

.product-modal__content {
  width: min(1120px, 95vw);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(7, 7, 7, 0.97));
  box-shadow: var(--shadow);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
}

.product-modal__media {
  background: radial-gradient(circle at top, rgba(212, 175, 105, 0.12), transparent 55%), #0b0b0b;
  border: 1px solid rgba(212, 175, 105, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  min-height: clamp(18rem, 40vw, 26rem);
  display: grid;
  place-items: center;
}

.product-modal__gallery {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
}

.product-modal__placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(212, 175, 105, 0.3);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.product-modal__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 100%;
}

.product-modal__scroll {
  width: 100%;
  height: 100%;
}

.product-modal__scroll img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.6rem;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 105, 0.35);
  background: rgba(6, 6, 6, 0.72);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-arrow span {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 600;
}

.gallery-arrow--prev {
  left: 0.6rem;
}

.gallery-arrow--next {
  right: 0.6rem;
}

.gallery-arrow:hover {
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(212, 175, 105, 0.6);
  transform: translateY(-50%) scale(1.03);
}

.product-modal__details {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.product-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.product-modal__eyebrow {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--gold);
}

.product-modal__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.product-modal__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.product-modal__size {
  flex: 0 0 auto;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 105, 0.28);
  background: rgba(212, 175, 105, 0.08);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-modal__description {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.product-modal__meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--gold-bright);
  font-size: 1.3rem;
}

.product-modal__meta span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.product-modal__hint {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 3, 0.62);
  z-index: 70;
  opacity: 0;
  transition: opacity 200ms ease;
}

.cart-overlay.is-visible {
  opacity: 1;
}

.cart-panel {
  position: fixed;
  right: 1.5rem;
  top: 6.5rem;
  width: min(420px, 92vw);
  max-height: 75vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.96);
  box-shadow: var(--shadow);
  z-index: 80;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.cart-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-panel__note {
  margin: -0.2rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.6;
}

.cart-panel__items {
  display: grid;
  gap: 0.8rem;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 105, 0.2);
}

.cart-item__placeholder {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px dashed rgba(212, 175, 105, 0.3);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.cart-item__body h4 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.cart-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-item__price {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
}

.cart-item__remove {
  border: none;
  background: none;
  color: #f3c9c0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
  cursor: pointer;
}

.cart-savings {
  display: grid;
  gap: 0.4rem;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 105, 0.18);
  background: rgba(12, 10, 6, 0.6);
}

.cart-savings__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.9rem;
  color: var(--gold-bright);
}

.cart-savings__current {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-savings__tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.cart-savings__tier {
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 105, 0.18);
  padding: 0.28rem 0.45rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.52rem;
  color: var(--muted);
  display: grid;
  gap: 0.15rem;
}

.cart-savings__tier strong {
  color: var(--gold-bright);
  font-size: 0.62rem;
}

.cart-savings__tier.is-active {
  border-color: rgba(212, 175, 105, 0.5);
  background: rgba(212, 175, 105, 0.12);
  color: var(--gold-bright);
  box-shadow:
    0 0 0 1px rgba(212, 175, 105, 0.18),
    0 0 18px rgba(212, 175, 105, 0.26),
    0 10px 24px rgba(212, 175, 105, 0.14);
}

.cart-savings__tier.is-active strong {
  color: #fff6db;
  text-shadow: 0 0 10px rgba(212, 175, 105, 0.45);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total strong {
  color: var(--gold-bright);
  font-size: 1.2rem;
}

.cart-empty p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  width: 100vw;
  margin: 2rem calc(50% - 50vw) 0;
  padding: 0;
  display: block;
  border-radius: 0 !important;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.96), rgba(5, 5, 5, 0.98));
  box-shadow: none;
}

.site-footer__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__brand {
  display: grid;
  gap: 0.18rem;
}

.site-footer__brand strong {
  display: block;
}

.site-footer__brand p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.site-footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
}

.site-footer__whatsapp .whatsapp-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-whatsapp__text {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__whatsapp {
    align-self: flex-start;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--solid {
  background: linear-gradient(135deg, #9f7a38 0%, #d4af69 100%);
  color: #090909;
  font-weight: 800;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button--small {
  min-height: 2.4rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
}

.button--danger {
  color: #f3c9c0;
}

.admin-toolbar {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.admin-main {
  display: grid;
  gap: 1.2rem;
}

.admin-auth-card {
  max-width: 44rem;
  margin: 2rem auto 0;
}

.admin-auth-form,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.admin-editing {
  margin: 0 0 0.8rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 105, 0.35);
  background: rgba(212, 175, 105, 0.1);
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-image-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-upload {
  display: grid;
  gap: 0.6rem;
}

.admin-dashboard {
  display: grid;
  gap: 1.2rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.admin-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(212, 175, 105, 0.18);
  border-radius: 999px;
  background: rgba(212, 175, 105, 0.08);
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.admin-field {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.admin-field--checkbox {
  align-items: start;
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.admin-checkbox input {
  width: 1rem;
  height: 1rem;
  accent-color: #c42a2a;
}

.admin-auth-form input,
.admin-field input:not([type="checkbox"]),
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.admin-auth-form input {
  flex: 1 1 14rem;
  border-radius: 999px;
}

.admin-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.admin-products-list {
  display: grid;
  gap: 1rem;
}

.admin-product-item {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  cursor: grab;
}

.admin-product-item.is-dragging {
  opacity: 0.6;
  cursor: grabbing;
}

.admin-drag-hint {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
}

.admin-product-item__actions {
  display: grid;
  gap: 0.6rem;
  justify-items: end;
}

.admin-product-item__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.admin-product-item__size {
  flex: 0 0 auto;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 105, 0.28);
  background: rgba(212, 175, 105, 0.08);
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-product-item__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(196, 42, 42, 0.18);
  border: 1px solid rgba(196, 42, 42, 0.45);
  color: #ffb3b3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-qty {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
}

.admin-qty input {
  width: 90px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  text-align: center;
}

.admin-product-item__media {
  overflow: hidden;
  border-radius: 1rem;
  min-height: 9rem;
}

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

.admin-product-item__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px dashed rgba(212, 175, 105, 0.3);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
}

.admin-empty-state {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.admin-feedback {
  min-height: 1.3rem;
  margin: 0.7rem 0 0;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

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

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

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

  .section-heading,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .product-modal__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-topbar {
    padding: 0.6rem 0.9rem;
    padding-left: 0.6rem;
    border-radius: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .topbar-left,
  .topbar-center,
  .topbar-right {
    justify-content: flex-start;
  }

  .site-shell {
    width: min(calc(100% - 18px), 1240px);
  }

  .header-actions {
    position: static;
    justify-content: center;
    margin-bottom: 0.6rem;
  }

  .header-controls {
    position: static;
    justify-content: center;
    margin-bottom: 0.6rem;
  }

  .header-menu__panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: auto;
    width: min(260px, 80vw);
    max-width: 280px;
    box-shadow: var(--shadow);
  }

  .menu-lines span {
    width: 20px;
  }

  .collection-nav,
  .admin-toolbar,
  .site-footer,
  .admin-auth-form,
  .admin-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

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

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

  .logo-showcase {
    padding-inline: 0.8rem;
  }

  .brand-pair {
    grid-template-columns: minmax(90px, 0.32fr) minmax(0, 1fr) minmax(90px, 0.32fr);
  }

  .brand-frame {
    max-width: 140px;
  }

  .brand-frame--admin {
    max-width: 170px;
  }

  .admin-product-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cart-panel {
    left: 0.9rem;
    right: 0.9rem;
    top: 5rem;
    width: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --ticker-height: 2.5rem;
    --topbar-height: 3.4rem;
  }

  .site-shell {
    padding-top: calc(var(--topbar-height, 3.4rem) + var(--ticker-height, 2.5rem));
  }
  .site-topbar {
    padding: 0.55rem 0.75rem;
    padding-left: 0.5rem;
    gap: 0.4rem;
  }

  .topbar-title {
    font-size: 0.62rem;
  }

  .lang-toggle {
    font-size: 0.58rem;
  }

  .cart-button {
    font-size: 0.58rem;
  }

  .topbar-title {
    font-size: 0.65rem;
  }

  .site-header {
    padding: 1.1rem 0.6rem 0.7rem;
  }

  .header-actions,
  .header-controls {
    width: 100%;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
  }

  .header-controls {
    flex-wrap: wrap;
  }

  .header-menu__panel {
    width: min(240px, 82vw);
    min-width: 0;
  }

  .logo-showcase {
    padding-inline: 0.4rem;
    gap: 0.3rem;
  }

  .brand-pair {
    grid-template-columns: minmax(70px, 0.3fr) minmax(0, 1fr) minmax(70px, 0.3fr);
    gap: 0.35rem;
  }

  .brand-frame {
    max-width: 90px;
  }

  .brand-logo {
    height: clamp(95px, 30vw, 135px);
  }

  .brand-statement {
    font-size: 0.92rem;
  }

  .collection-intro,
  .catalog-section,
  .admin-auth-card,
  .admin-panel,
  .admin-toolbar,
  .site-footer {
    padding: 0.85rem;
  }

  .section-heading {
    gap: 0.4rem;
  }

  .catalog-grid {
    gap: 0.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-nav {
    padding: 0.5rem;
    gap: 0.4rem;
  }

  .collection-nav a,
  .site-footer__links a {
    padding: 0.5rem 0.7rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .cart-button,
  .lang-toggle,
  .header-menu__toggle,
  .header-whatsapp {
    padding: 0.4rem 0.6rem;
    font-size: 0.6rem;
  }

  .cart-count {
    min-width: 1.35rem;
    height: 1.35rem;
    font-size: 0.6rem;
  }

  .highlight-card {
    padding: 0.65rem 0.6rem;
    min-height: 130px;
  }

  .scroll-hint {
    font-size: 0.95rem;
  }

  .ticker {
    top: auto;
  }

  .scroll-block {
    min-height: 85vh;
    padding-top: 14vh;
  }

  .coming-soon-banner {
    margin: -2.8rem 0 0.9rem;
  }

  .coming-soon-banner p {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
  }

  .ticker {
    font-size: 0.75rem;
  }

  .subcategory-heading h3 {
    font-size: 1.05rem;
  }

  .subcategory-heading p {
    font-size: 0.78rem;
  }

  .subcategory-block {
    padding: 0.7rem;
  }

  .catalog-card__media {
    min-height: clamp(6.2rem, 32vw, 7.8rem);
    padding: 0.55rem 0.55rem 0.7rem;
  }

  .catalog-card__body {
    padding: 0.55rem 0.6rem 0.65rem;
  }

  .catalog-card__body h3 {
    font-size: 0.95rem;
    line-height: 1.05;
  }

  .catalog-card__eyebrow {
    font-size: 0.6rem;
  }

  .catalog-card__description {
    font-size: 0.72rem;
  }

  .catalog-card__actions {
    gap: 0.4rem;
  }
}

/* Theme override: White + Gold */
:root {
  --bg: #ffffff;
  --bg-soft: #fff7ea;
  --panel: rgba(255, 255, 255, 0.98);
  --panel-soft: rgba(255, 255, 255, 0.96);
  --line: rgba(212, 175, 55, 0.28);
  --text: #2b2418;
  --muted: #7a6a54;
  --gold: #d4af37;
  --gold-bright: #e7c96a;
  --shadow: 0 18px 45px rgba(43, 27, 18, 0.12);
  --ticker-height: 2.2rem;
  --topbar-height: 3.2rem;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 40%),
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff7ea 100%);
  color: var(--text);
}

.announcement-bar {
  background: linear-gradient(90deg, #ffffff 0%, #fff0d5 50%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
}

.ticker {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  color: #000000;
}

.ticker__track,
.ticker__track span {
  color: #000000;
}

.site-header {
  background:
    radial-gradient(circle at 50% 4%, rgba(212, 175, 55, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 248, 240, 0.98));
}

.brand-frame {
  background: var(--gold) !important;
  border-color: rgba(212, 175, 55, 0.28);
}

.collection-nav {
  background: rgba(255, 255, 255, 0.98);
}

.site-topbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.collection-nav a,
.site-footer__links a {
  color: var(--muted);
}

.collection-nav a:hover,
.site-footer__links a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-bright);
}

.scroll-hint,
.catalog-card__meta span,
.quantity-field,
.product-modal__meta span,
.cart-item__body p,
.cart-savings__current,
.admin-field span,
.admin-qty,
.admin-image-hint,
.admin-empty-state p {
  color: var(--muted);
}

.collection-intro,
.catalog-section,
.admin-auth-card,
.admin-panel,
.admin-toolbar,
.site-footer,
.empty-state {
  background: var(--panel);
  border-color: var(--line);
}

.catalog-section {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.2);
}

.highlight-card {
  background: var(--panel-soft);
  border-color: var(--line);
}

.catalog-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 248, 240, 0.98));
  border-color: rgba(212, 175, 55, 0.12);
}

.catalog-section,
.catalog-section--boxed {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: none !important;
}

.catalog-card__media {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 62%),
    #ffffff;
}

.catalog-card__placeholder,
.product-modal__placeholder,
.admin-product-item__placeholder {
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--muted);
}

.catalog-card__description::after {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.98));
}

.media-lightbox,
.product-modal {
  background: rgba(36, 28, 16, 0.2);
}

.media-lightbox__content,
.product-modal__content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 248, 240, 0.98));
  border-color: var(--line);
}

.media-lightbox__track,
.product-modal__media {
  background: #ffffff;
  border-color: rgba(212, 175, 55, 0.2);
}

.media-lightbox__track img {
  background: #ffffff;
}

.cart-overlay {
  background: rgba(36, 28, 16, 0.2);
}

.cart-panel {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
}

.cart-item,
.cart-savings {
  background: rgba(255, 255, 255, 0.9);
}

/* Topbar compact controls (force) */
.site-topbar {
  padding-left: 0.25rem !important;
}

.site-topbar .topbar-left {
  gap: 0.3rem !important;
}

.site-topbar .header-menu__toggle {
  margin-left: -0.15rem !important;
  padding-left: 0.1rem !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.site-topbar .lang-toggle {
  font-size: 0 !important;
  padding: 0.3rem 0.45rem !important;
  min-height: 1.8rem !important;
  letter-spacing: 0 !important;
}

.site-topbar .lang-toggle::before {
  content: "English";
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

body[dir="rtl"] .site-topbar .lang-toggle::before {
  content: "العربية";
}

.site-topbar .lang-toggle::after {
  content: "" !important;
}

.site-topbar .header-whatsapp {
  padding: 0.3rem 0.45rem !important;
  min-height: 1.8rem !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  min-width: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
}

.site-topbar .header-whatsapp .whatsapp-text {
  display: none !important;
}

.site-topbar .header-whatsapp .whatsapp-icon {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}

.site-topbar .cart-button {
  padding: 0.3rem 0.45rem !important;
  min-height: 1.8rem !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.08em !important;
}

.site-topbar .cart-count {
  min-width: 1.2rem !important;
  height: 1.2rem !important;
  font-size: 0.6rem !important;
}

/* Theme override: Black + Gold (Override) */
:root {
  --bg: #0b0b0b;
  --bg-soft: #15110b;
  --panel: rgba(12, 12, 12, 0.96);
  --panel-soft: rgba(18, 18, 18, 0.94);
  --line: rgba(212, 175, 55, 0.35);
  --text: #f5e8c8;
  --muted: #c2b38e;
  --gold: #d4af37;
  --gold-bright: #f3d680;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

html,
body {
  background: #0b0b0b;
  color: var(--text);
}

.site-topbar {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--line);
}

body[dir="rtl"] .site-topbar,
body[dir="rtl"] .site-topbar .topbar-left,
body[dir="rtl"] .site-topbar .topbar-right {
  direction: ltr !important;
}

body[dir="rtl"] .site-topbar .topbar-title,
body[dir="rtl"] .site-topbar .header-menu__panel,
body[dir="rtl"] .site-topbar .header-menu__panel a,
body[dir="rtl"] .site-topbar .header-menu__group summary {
  direction: rtl;
  text-align: right;
}

.announcement-bar,
.ticker {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
}

.ticker__track,
.ticker__track span {
  color: var(--gold-bright);
}

.site-header {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(6, 6, 6, 0.96));
}

.collection-intro,
.catalog-section,
.site-footer,
.admin-panel,
.admin-toolbar,
.admin-auth-card,
.empty-state {
  background: var(--panel);
  border-color: var(--line);
}

.highlight-card {
  background: var(--panel-soft);
  border-color: var(--line);
}

.catalog-card {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.96));
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.catalog-card__media {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 62%),
    #0f0f0f;
}

.collection-nav {
  background: rgba(12, 12, 12, 0.9);
}

.collection-nav a,
.site-footer__links a {
  color: var(--muted);
}

.collection-nav a:hover,
.site-footer__links a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-bright);
}

.product-modal__media,
.media-lightbox__track,
.media-lightbox__content,
.product-modal__content,
.cart-panel,
.cart-item,
.cart-savings {
  background: rgba(12, 12, 12, 0.96);
  border-color: var(--line);
}

.cart-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.admin-auth-form input,
.admin-field input,
.admin-field select,
.admin-field textarea,
.admin-qty input {
  background: rgba(12, 12, 12, 0.96);
  border-color: var(--line);
  color: var(--text);
}

.admin-auth-form input,
.admin-field input,
.admin-field select,
.admin-field textarea,
.admin-qty input {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
  color: var(--text);
}

.button--solid {
  background: linear-gradient(135deg, #c79b2f 0%, #e7c96a 100%);
  color: #2b2418;
}

.button--ghost,
.lang-toggle,
.cart-button {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
  color: var(--gold-bright);
}

/* Theme override: White + Gold (Final Luxury) */
:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.98);
  --panel-soft: rgba(255, 255, 255, 0.96);
  --line: rgba(201, 155, 58, 0.3);
  --text: #120f0b;
  --muted: #3a2f24;
  --gold: #c89a3a;
  --gold-bright: #f2d58b;
  --shadow: 0 18px 55px rgba(18, 15, 11, 0.12);
}

body {
  background: #ffffff;
  color: var(--text);
}

html {
  background: #ffffff;
}

.page-glow {
  opacity: 0;
}

/* Professional polish */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

.site-shell {
  width: min(1240px, calc(100% - 36px));
}

main {
  gap: 1.5rem;
}

.collection-intro,
.catalog-section,
.site-footer,
.admin-panel,
.admin-toolbar,
.admin-auth-card {
  padding: 1.6rem;
}

.highlights {
  gap: 0.7rem;
}

.highlight-card {
  padding: 0.95rem 1.05rem;
  border-color: rgba(201, 155, 58, 0.22);
  box-shadow: 0 12px 30px rgba(18, 15, 11, 0.08);
}

.section-heading {
  margin-bottom: 1.2rem;
}

.catalog-grid {
  gap: 1rem;
}

.catalog-card {
  background: #ffffff;
  border-color: rgba(201, 155, 58, 0.18);
  box-shadow: 0 14px 34px rgba(18, 15, 11, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(18, 15, 11, 0.12);
}

.catalog-card__body {
  padding: 0.95rem 1rem 1.1rem;
}

.catalog-card__media {
  background: #ffffff;
}

.button--ghost,
.lang-toggle,
.cart-button,
.header-menu__toggle {
  border-width: 1px;
  border-style: solid;
}

.site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.98));
}

.announcement-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
}

.ticker {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
}

.brand-frame,
.catalog-card__media {
  background: #ffffff;
  border-color: rgba(201, 155, 58, 0.45);
}

.product-modal__media,
.media-lightbox__track {
  background: #ffffff;
  border-color: rgba(201, 155, 58, 0.24);
}

.collection-nav {
  background: rgba(255, 255, 255, 0.98);
}

.collection-nav a,
.site-footer__links a {
  color: var(--text);
}

.collection-nav a:hover,
.site-footer__links a:hover {
  background: #ffffff;
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(201, 155, 58, 0.3);
}

.collection-intro h1,
.section-heading h2,
.highlight-card h2,
.catalog-card__body h3,
.product-modal__title,
.media-lightbox__title,
.site-footer strong {
  color: var(--gold);
}

.eyebrow,
.scroll-hint,
.catalog-card__eyebrow,
.product-modal__hint,
.media-lightbox__hint {
  color: var(--gold);
}

.brand-statement,
.catalog-card__description,
.cart-item__body p,
.cart-savings__current,
.admin-field span,
.admin-qty,
.admin-image-hint,
.admin-empty-state p,
.quantity-field,
.product-modal__meta span {
  color: var(--text);
}

.catalog-card__description,
.cart-item__body p,
.cart-savings__current,
.admin-field span,
.admin-qty,
.admin-image-hint,
.admin-empty-state p,
.quantity-field,
.product-modal__meta span {
  color: var(--gold);
}

.button--solid {
  color: #ffffff;
}

.button--ghost,
.lang-toggle,
.cart-button,
.header-menu__toggle {
  color: var(--gold);
}

.header-whatsapp .whatsapp-text {
  color: var(--gold);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0 !important;
}

.site-shell > main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  background:
    linear-gradient(135deg, #c89b3a 0%, #f1d58f 38%, #d4af37 62%, #b8892a 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  color: #16110a !important;
}

.site-footer__inner {
  padding: 1.1rem 0 1rem;
}

.site-footer__brand strong,
.site-footer strong {
  color: #14110b !important;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__brand p,
.site-footer p {
  color: rgba(20, 16, 10, 0.82) !important;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 36rem;
}

.site-footer__whatsapp {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(22, 17, 10, 0.16) !important;
  box-shadow: 0 12px 28px rgba(92, 63, 8, 0.14);
}

.site-footer__whatsapp .whatsapp-icon {
  width: 20px;
  height: 20px;
}

.footer-whatsapp__text {
  color: #16110a !important;
  font-size: 0.74rem;
  font-weight: 800;
}

@media (max-width: 700px) {
  .site-footer {
    margin-top: 1.35rem !important;
  }

  .site-footer__inner {
    padding: 0.95rem 0 0.9rem;
  }

  .site-footer__brand strong,
  .site-footer strong {
    font-size: 1.45rem !important;
  }

  .site-footer__brand p,
  .site-footer p {
    font-size: 0.82rem;
  }
}

.catalog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
}

.catalog-card__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.55rem;
  min-height: 2.5rem;
}

.catalog-card__body h3 {
  min-width: 0;
}

.catalog-card__description {
  min-height: 3.1em;
}

.catalog-card__meta {
  margin-top: auto;
  padding-top: 0.2rem;
}

@media (max-width: 600px) {
  .catalog-card__title-row {
    gap: 0.4rem;
    min-height: 2.3rem;
  }

  .catalog-card__size {
    padding: 0.22rem 0.5rem;
    font-size: 0.58rem;
  }

  .catalog-card__description {
    min-height: 3.2em;
  }

  .catalog-card__meta strong {
    font-size: 0.82rem;
    line-height: 1.15;
  }
}

/* Outside card view only: keep details for the popup, hide them on the card */
.catalog-card__eyebrow,
.catalog-card__meta {
  display: none !important;
}

.catalog-card__title-row {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
}

.catalog-card__body {
  gap: 0.45rem;
}

.catalog-card__description {
  min-height: auto;
}

/* Admin solid buttons should stay gold, not black */
.admin-product-item__actions .button--solid,
.admin-actions .button--solid,
.admin-auth-form .button--solid {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%) !important;
  color: #120c05 !important;
  border-color: var(--gold) !important;
}

.admin-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.admin-thumb-row img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--line);
  object-fit: cover;
}

/* Final override: White + Gold (Restore) */
:root {
  --bg: #ffffff;
  --bg-soft: #fff7ea;
  --panel: rgba(255, 255, 255, 0.98);
  --panel-soft: rgba(255, 255, 255, 0.96);
  --line: rgba(201, 155, 58, 0.28);
  --text: #120f0b;
  --muted: #3a2f24;
  --gold: #c89a3a;
  --gold-bright: #f2d58b;
  --shadow: 0 18px 55px rgba(18, 15, 11, 0.12);
}

html,
body {
  background: #ffffff !important;
  color: var(--text) !important;
}

.site-topbar,
.site-header,
.announcement-bar,
.ticker,
.header-menu__panel,
.collection-nav {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: var(--line) !important;
}

.collection-intro,
.catalog-section,
.site-footer,
.admin-panel,
.admin-toolbar,
.admin-auth-card,
.empty-state,
.highlight-card,
.cart-panel,
.cart-item,
.cart-savings,
.admin-product-item,
.admin-empty-state,
.media-lightbox__content,
.product-modal__content {
  background: var(--panel) !important;
  border-color: var(--line) !important;
}

.catalog-card {
  background: #ffffff !important;
  border-color: rgba(201, 155, 58, 0.18) !important;
  box-shadow: 0 14px 34px rgba(18, 15, 11, 0.08) !important;
}

.catalog-card__media,
.product-modal__media,
.media-lightbox__track,
.brand-frame {
  background: #ffffff !important;
  border-color: rgba(201, 155, 58, 0.35) !important;
}

.catalog-card__description::after {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.98)) !important;
}

.cart-overlay,
.media-lightbox,
.product-modal {
  background: rgba(36, 28, 16, 0.18) !important;
}

.button--ghost,
.lang-toggle,
.cart-button,
.header-menu__toggle {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: var(--line) !important;
  color: var(--gold) !important;
  box-shadow: 0 8px 18px rgba(201, 155, 58, 0.12) !important;
}

.button--solid {
  background: #0f0b08 !important;
  color: var(--gold) !important;
  border-color: rgba(201, 155, 58, 0.45) !important;
}

.collection-nav a,
.site-footer__links a,
.scroll-hint,
.catalog-card__meta span,
.quantity-field,
.product-modal__meta span,
.cart-item__body p,
.cart-savings__current,
.admin-field span,
.admin-qty,
.admin-image-hint {
  color: var(--muted) !important;
}

/* Text color override: black text, gold titles only */
body,
p,
span,
label,
input,
textarea,
select,
button,
a,
.scroll-hint,
.cart-item__body p,
.cart-savings__current,
.admin-field span,
.admin-qty,
.admin-image-hint,
.catalog-card__description,
.subcategory-heading p,
.section-heading p,
.brand-statement,
.topbar-title,
.lang-toggle,
.cart-button,
.header-menu__panel a,
.header-menu__group summary,
.site-footer,
.site-footer__links a,
.quantity-field {
  color: #000000 !important;
}

.menu-lines span {
  background: #000000 !important;
}

.eyebrow,
.highlight-card .eyebrow,
.section-heading h2,
.collection-intro h1,
.highlight-card h2,
.catalog-card__body h3,
.subcategory-heading h3,
.site-footer strong,
.product-modal__title,
.media-lightbox__title {
  color: var(--gold) !important;
}

.site-topbar .topbar-title {
  color: var(--gold) !important;
}

.button--solid {
  color: #000000 !important;
}

.button--bag,
.product-modal [data-modal-add],
.catalog-card [data-add-to-bag] {
  background: linear-gradient(135deg, #9f7a38 0%, #d4af69 100%) !important;
  color: #090909 !important;
  border: 1px solid rgba(201, 155, 58, 0.45) !important;
}

#cart-whatsapp {
  background: #0f0b08 !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201, 155, 58, 0.45) !important;
}

.cart-notice {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translate(-50%, 1rem);
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  background: rgba(15, 11, 8, 0.92);
  color: #f7ecd6;
  border: 1px solid rgba(201, 155, 58, 0.35);
  box-shadow: 0 12px 30px rgba(15, 11, 8, 0.2);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 120;
}

.cart-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Stop all animations for a clean static layout */
.site-shell,
.site-topbar,
.brand-pair,
.brand-statement,
.highlight-card,
.catalog-section,
.brand-logo,
.intro-loader__logo {
  animation: none !important;
  transform: none !important;
  transition: none !important;
  opacity: 1 !important;
}

.subcategory-group {
  display: grid;
  gap: 1.1rem;
}

.subcategory-block {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 155, 58, 0.28);
  background: rgba(255, 255, 255, 0.95);
}

.subcategory-heading h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  color: var(--gold);
}

.subcategory-heading p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.empty-state--compact {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px dashed rgba(201, 155, 58, 0.3);
  color: var(--muted);
}


.highlight-card,
.collection-intro,
.catalog-section,
.admin-auth-card,
.admin-panel,
.admin-toolbar,
.site-footer,
.empty-state {
  background: var(--panel);
  border-color: var(--line);
}

.catalog-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.98));
  border-color: rgba(201, 155, 58, 0.18);
}

.catalog-card__description::after {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.98));
}

.media-lightbox,
.product-modal,
.cart-overlay {
  background: rgba(36, 28, 16, 0.18);
}

.media-lightbox__content,
.product-modal__content,
.cart-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 248, 240, 0.98));
  border-color: var(--line);
}

.cart-item,
.cart-savings,
.admin-product-item,
.admin-empty-state {
  background: rgba(255, 255, 255, 0.9);
}

.admin-auth-form input,
.admin-field input,
.admin-field select,
.admin-field textarea,
.admin-qty input,
.quantity-field input {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
  color: var(--text);
}

.button--solid {
  background: #0f0b08;
  color: var(--gold);
  border: 1px solid rgba(201, 155, 58, 0.45);
}

.button--ghost,
.lang-toggle,
.cart-button,
.header-menu__toggle {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
  color: var(--gold);
  box-shadow: 0 8px 18px rgba(201, 155, 58, 0.12);
}

.product-modal {
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.product-modal__content {
  max-height: calc(100dvh - 2rem);
  overflow-y: auto !important;
  overscroll-behavior: contain;
}

.product-modal__details {
  min-height: 0;
}

@media (max-width: 700px) {
  .product-modal {
    place-items: start center !important;
    padding: 0.75rem !important;
  }

  .product-modal__content {
    width: min(100%, 34rem) !important;
    max-height: calc(100dvh - 1.5rem) !important;
    padding: 0.9rem !important;
    gap: 0.9rem !important;
  }

  .product-modal__media {
    min-height: 14rem !important;
    padding: 0.8rem !important;
  }

  .product-modal__description {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .product-modal__actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding-top: 0.8rem;
    margin-top: 0.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(252, 248, 240, 0.98) 28%) !important;
  }
}

.header-menu__panel {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
}

.header-menu__panel a {
  color: var(--gold);
}

.header-menu__panel a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-bright);
}

.menu-lines span {
  background: var(--gold);
}

.header-whatsapp svg {
  fill: var(--gold);
}

.header-whatsapp .whatsapp-text {
  color: var(--gold);
}
