:root {
  --primary: #0d1b2a;
  --primary-light: #1b3a5c;
  --surface: #ede6da;
  --surface-soft: #f5f0e8;
  --light: #faf7f2;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-hover: #d4b87a;
  --cognac: #8b5e3c;
  --accent: #c9a96e;
  --accent-hover: #d4b87a;
  --text: #0d1b2a;
  --text-muted: #6b7280;
  --border: rgba(13, 27, 42, 0.08);
  --border-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 10px 28px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 20px 52px rgba(13, 27, 42, 0.10);
  --shadow-lg: 0 34px 90px rgba(13, 27, 42, 0.14);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  --transition: 0.28s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; background: none; cursor: pointer; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 24px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  color: var(--white);
}
.navbar.scrolled {
  padding: 10px 24px;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.18);
}
.navbar-inner {
  max-width: 1240px;
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  width: 154px;
  height: 56px;
  padding: 6px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-width: max-content;
}
.site-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.navbar-links a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.navbar-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.navbar-links a:hover { color: var(--white); }
.navbar-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}
.btn-nav,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-nav {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
}
.btn-nav:hover,
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(201, 169, 110, 0.22);
}
.btn-primary {
  padding: 0 30px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 18px 42px rgba(201, 169, 110, 0.2);
}
.btn-outline {
  padding: 0 28px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  padding: 88px 28px 40px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(28px, 11vw, 54px);
  font-weight: 900;
  line-height: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  color: var(--white);
  font-size: 32px;
}
.mobile-menu-brand {
  width: min(260px, 70vw);
  min-height: 110px;
  padding: 12px;
  border: 0 !important;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

/* ── Hero: Cheetah Panels ── */
.hero-cheetah {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero-cheetah-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.hero-panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 80px 48px;
  isolation: isolate;
  transition: flex var(--transition);
}
.hero-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: -2;
  transition: transform 0.8s ease;
}
.hero-panel:hover .hero-panel-img {
  transform: scale(1.04);
}
.hero-panel-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(13, 27, 42, 0.15) 0%,
    rgba(13, 27, 42, 0.1) 35%,
    rgba(13, 27, 42, 0.55) 65%,
    rgba(13, 27, 42, 0.88) 100%
  );
}
.hero-panel-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.hero-panel-label {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.hero-panel-title {
  margin-top: 20px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
}
.hero-panel-tagline {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}
.hero-panel-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.hero-panel:hover .hero-panel-cta {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 169, 110, 0.3);
}
.hero-brand-badge {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 20px;
  background: rgba(13, 27, 42, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 110, 0.3);
}
.hero-badge-logo {
  width: 120px;
  height: auto;
}
.hero-brand-badge span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* ── Brand Bar ── */
.brand-bar {
  background: var(--primary);
  padding: 22px 24px;
}
.brand-bar-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.brand-bar-track span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.brand-bar-dot {
  font-size: 7px !important;
  opacity: 0.4;
}

/* ── Cheetah Picks Sections ── */
.cheetah-picks {
  padding: 100px 24px;
  background: var(--light);
}
.cheetah-picks-alt {
  background: var(--surface-soft);
}
.cheetah-picks-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.cheetah-picks-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.cheetah-picks-header-right {
  justify-content: flex-end;
  text-align: right;
}
.cheetah-picks-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
  flex-shrink: 0;
}
.cheetah-picks-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
.cheetah-picks-grid .product-card:nth-child(1) {
  grid-column: auto;
  grid-row: auto;
}

/* ── Common Section Styles ── */
.section-label {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section,
.benefits-section,
.stores-section,
.reviews-section {
  padding: 112px 24px;
}
.section,
.benefits-section,
.reviews-inner,
.stores-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-title {
  margin-top: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 400;
}
.section-copy {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 17px;
}

/* ── Catalog ── */
.catalog-section {
  position: relative;
  background: var(--light);
}
.catalog-section::before {
  content: '';
  position: absolute;
  inset: 34px 24px auto;
  height: 220px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.34);
  pointer-events: none;
}
.catalog-section > * {
  position: relative;
}
.category-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  margin-bottom: 52px;
}
.filter-btn {
  min-height: 148px;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 230, 218, 0.9));
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  text-align: left;
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  font-weight: 400;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.filter-btn::before {
  content: 'Colecție';
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.filter-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.filter-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}
.product-card {
  min-width: 0;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.product-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  margin: 10px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.36), rgba(237,230,218,0.78)),
    var(--surface);
}
.product-card:nth-child(1) .product-card-image { aspect-ratio: 1.5 / 1; }
.product-card-image::before {
  content: 'Pasul Tău';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13, 27, 42, 0.2));
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-action {
  position: static;
  transform: none;
  opacity: 1;
  min-width: 0;
}
.product-card-action a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(13, 27, 42, 0.12);
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition);
}
.product-card-action a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}
.product-card-info {
  padding: 10px 24px 24px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.product-card-category {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card-name {
  min-height: 54px;
  color: var(--primary);
  font-family: 'DM Serif Display', serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.02;
}
.product-card-description {
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-purchase {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 27, 42, 0.06);
}
.product-card-price {
  justify-self: start;
  margin-top: 0;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.product-card-price span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}
.loading,
.empty-state {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-xl);
  color: var(--text-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.loading::after {
  content: '';
  width: 24px;
  height: 24px;
  border: 3px solid rgba(201, 169, 110, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ── Style Tips ── */
.style-tips-section {
  padding: 112px 24px;
  background: var(--primary);
  color: var(--white);
}
.style-tips-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.style-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.style-tip-card {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: transform var(--transition), background var(--transition);
}
.style-tip-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}
.style-tip-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.style-tip-card h3 {
  margin-top: 20px;
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
.style-tip-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Benefits ── */
.benefits-section,
.stores-section,
.reviews-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.benefits-section {
  width: 100%;
  max-width: none;
  background: var(--surface);
  color: var(--primary);
}
.benefits-section .section-header,
.benefits-grid {
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.benefits-section .section-title { color: var(--primary); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(13, 27, 42, 0.06);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
}
.benefit-card h3 {
  margin-top: 42px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.08;
}
.benefit-card p {
  margin-top: 13px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Stores ── */
.stores-section {
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--surface-soft) 100%);
}
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.store-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.store-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.store-card h3 {
  margin-top: 52px;
  color: var(--primary);
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}
.store-card p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Reviews ── */
.reviews-section {
  background: var(--surface-soft);
}
.reviews-rating-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.reviews-rating-stars,
.review-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}
.reviews-rating-score {
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
}
.reviews-rating-count {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.review-card-quote {
  position: absolute;
  right: 22px;
  top: 8px;
  color: rgba(201, 169, 110, 0.18);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}
.review-text {
  position: relative;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 15px;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.review-author-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--gold);
  font-weight: 900;
}
.review-author-name {
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}
.review-author-meta {
  color: var(--text-muted);
  font-size: 12px;
}

/* ── Footer ── */
.footer {
  padding: 76px 24px 30px;
  background: var(--primary);
  color: var(--white);
}
.footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}
.footer-brand p {
  max-width: 470px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-site-logo {
  width: min(280px, 80vw);
  height: 110px;
  padding: 10px;
  border-radius: 22px;
  background: var(--white);
  object-fit: contain;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px 36px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  transition: color var(--transition), transform var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-copy {
  width: min(1240px, 100%);
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-tooltip {
  width: min(280px, calc(100vw - 48px));
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  animation: bounceIn 0.45s ease both;
}
.wa-tooltip-close {
  position: absolute;
  right: 10px;
  top: 8px;
  color: var(--text-muted);
  font-size: 18px;
}
.wa-tooltip-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wa-tooltip-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s ease 3;
}
.wa-tooltip p {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
}
.wa-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.42);
}
.wa-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 22px;
  border: 2px solid rgba(37, 211, 102, 0.36);
  animation: ping 2s 3;
}
.wa-btn svg {
  position: relative;
  width: 30px;
  height: 30px;
}
.wa-btn .badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--gold);
}

/* ── Animations ── */
.reveal,
.card-animate {
  animation: fadeInUp 0.7s ease both;
}
.benefit-card:nth-child(2),
.review-card:nth-child(2),
.style-tip-card:nth-child(2) { animation-delay: 0.08s; }
.benefit-card:nth-child(3),
.review-card:nth-child(3),
.style-tip-card:nth-child(3) { animation-delay: 0.16s; }
.benefit-card:nth-child(4) { animation-delay: 0.24s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: 0.35; } }
@keyframes ping {
  80%, 100% { transform: scale(1.22); opacity: 0; }
}

/* ── Discount Badge ── */
.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

/* ── Out of Stock ── */
.product-card.out-of-stock { opacity: 0.7; }
.stock-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(13, 27, 42, 0.5);
  border-radius: inherit;
}
.stock-overlay span {
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stock-return {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  padding: 12px 0;
}

/* ── Category Homepage Section ── */
.category-home-section {
  margin-bottom: 72px;
}
.category-home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.category-home-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1;
}
.category-see-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.category-see-more:hover {
  background: var(--primary);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--gold);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ── Category Page Title ── */
.category-page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.96;
  margin-bottom: 48px;
}

/* ── Geo Banner ── */
.geo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: fit-content;
}
.geo-banner svg { flex-shrink: 0; }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Responsive: Tablet ── */
@media (max-width: 1080px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero-cheetah-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-panel {
    padding: 60px 32px;
  }
  .hero-brand-badge { bottom: 20px; padding: 14px 24px; }
  .hero-badge-logo { width: 90px; }
  .product-grid, .benefits-grid, .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .cheetah-picks-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .style-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .style-tips-grid .style-tip-card:nth-child(3) { grid-column: 1 / -1; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 760px) {
  .navbar { padding: 10px 16px; }
  .navbar-logo {
    width: 126px;
    height: 48px;
    padding: 5px 8px;
  }
  .hero-cheetah { min-height: auto; }
  .hero-cheetah-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-panel {
    min-height: 70svh;
    padding: 40px 24px;
  }
  .hero-panel-title {
    font-size: clamp(36px, 10vw, 52px);
  }
  .hero-brand-badge {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
    padding: 16px 28px;
    border-radius: 0;
    background: var(--primary);
    border: none;
    width: 100%;
    border-radius: 0;
  }
  .brand-bar-track { gap: 16px; }
  .brand-bar-track span { font-size: 9px; letter-spacing: 0.14em; }
  .cheetah-picks { padding: 64px 16px; }
  .cheetah-picks-header { gap: 16px; }
  .cheetah-picks-header-right { flex-direction: row-reverse; text-align: left; }
  .cheetah-picks-avatar { width: 64px; height: 64px; }
  .cheetah-picks-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .section,
  .benefits-section,
  .stores-section,
  .reviews-section,
  .style-tips-section { padding: 78px 16px; }
  .section-header { margin-bottom: 34px; }
  .section-title { font-size: clamp(34px, 11vw, 48px); }
  .category-filters { grid-template-columns: 1fr 1fr; gap: 10px; }
  .filter-btn { min-height: 82px; padding: 15px; font-size: 16px; border-radius: 22px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card:nth-child(1) { grid-column: 1 / -1; }
  .product-card { border-radius: 18px; }
  .product-card-image { margin: 7px; border-radius: 15px; }
  .product-card-image::before { display: none; }
  .product-card-info { padding: 13px; }
  .product-card-name { min-height: auto; font-size: 24px; }
  .product-card-description { font-size: 13px; -webkit-line-clamp: 2; }
  .product-card-category { font-size: 9px; }
  .product-card-purchase {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }
  .product-card-price {
    padding: 10px 10px;
    font-size: 13px;
  }
  .product-card-action a {
    min-height: 38px;
    padding: 0 9px;
    font-size: 9px;
    gap: 5px;
    width: 100%;
  }
  .product-card-action svg { width: 13px; height: 13px; }
  .style-tips-grid { grid-template-columns: 1fr; }
  .style-tips-grid .style-tip-card:nth-child(3) { grid-column: auto; }
  .benefits-grid,
  .stores-grid,
  .reviews-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .benefit-card,
  .store-card,
  .review-card { min-height: auto; }
  .benefit-card h3,
  .store-card h3 { margin-top: 26px; }
  .footer-links { grid-template-columns: 1fr; }
  .wa-float { right: 16px; bottom: 16px; }
  .wa-btn { width: 58px; height: 58px; border-radius: 18px; }
  .category-home-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .category-see-more { min-height: 42px; padding: 0 22px; font-size: 11px; }
  .discount-badge { top: 10px; right: 10px; padding: 4px 10px; font-size: 10px; }
}

@media (max-width: 420px) {
  .category-filters { grid-template-columns: 1fr; }
  .cheetah-picks-grid { grid-template-columns: 1fr !important; }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-card:nth-child(1) { grid-column: auto; }
  .product-card-purchase { grid-template-columns: auto minmax(150px, 1fr); }
  .product-card-action a {
    min-height: 42px;
    font-size: 11px;
    letter-spacing: 0;
  }
}

/* ══════════════════════════════════ */
/* ══ Admin Styles (unchanged) ═════ */
/* ══════════════════════════════════ */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding: 24px;
}
.admin-login-box { width: 100%; max-width: 380px; }
.admin-login-box h1 {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}
.admin-login-box .subtitle {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}
.admin-login-box input {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
}
.admin-login-box input:focus { border-color: var(--primary); }
.admin-login-box button {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 10px;
}
.admin-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.admin-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.admin-nav-brand {
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}
.admin-nav-brand span { color: var(--text-muted); font-weight: 500; }
.admin-nav-tabs {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.admin-nav-tab {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  color: var(--text-muted);
}
.admin-nav-tab.active {
  background: var(--primary);
  color: var(--white);
}
.admin-logout,
.admin-btn {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 8px;
}
.admin-logout {
  border: 1px solid var(--border);
  padding: 8px 16px;
}
.admin-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.admin-section-title {
  font-size: 22px;
  font-weight: 900;
}
.admin-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  white-space: nowrap;
}
.admin-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.admin-btn-danger,
.admin-btn-edit {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
}
.admin-btn-danger {
  border: 1px solid #fca5a5;
  color: #ef4444;
}
.admin-btn-edit { border: 1px solid var(--border); }
.admin-form {
  background: var(--primary);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}
.admin-form-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 16px;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.admin-form-grid .full { grid-column: 1 / -1; }
.admin-form label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
}
.admin-form textarea { resize: none; }
.admin-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.admin-form-actions .save-btn,
.admin-form-actions .cancel-btn {
  padding: 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.admin-form-actions .save-btn {
  flex: 1;
  background: var(--white);
  color: var(--primary);
}
.admin-form-actions .cancel-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.66);
}
.admin-list { display: flex; flex-direction: column; gap: 6px; }
.admin-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.admin-list-item.active {
  background: var(--primary);
  border-color: var(--primary);
}
.admin-list-item.active .item-name { color: var(--white); }
.admin-list-item.active .item-meta { color: rgba(255, 255, 255, 0.58); }
.item-info { flex: 1; min-width: 0; }
.item-name {
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-meta {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.item-actions {
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.admin-list-item:hover .item-actions { opacity: 1; }
.item-thumb,
.item-thumb-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}
.item-thumb { object-fit: cover; }
.item-thumb-placeholder {
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 800;
}
.admin-empty {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}
.admin-empty p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
}
.upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
}
.upload-area span,
.upload-area p {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.upload-area img {
  max-height: 120px;
  max-width: 100%;
  border-radius: 6px;
  object-fit: contain;
}
.upload-area.drag-over {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.upload-toggle { margin-top: 6px; }
.upload-toggle button {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}
.admin-btn-ai {
  background: linear-gradient(135deg, #8e44ad, #6c3483);
  color: white;
  width: 100%;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.admin-btn-ai:disabled { opacity: 0.5; cursor: not-allowed; }
.ai-status {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
  margin-top: 6px;
  min-height: 16px;
}
.ai-btn-icon {
  font-size: 14px;
  display: inline-block;
}
.ai-btn-icon.spinning {
  animation: spin 1s linear infinite;
}
.ai-actions-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  margin-top: 4px;
}
.ai-actions-row {
  display: flex;
  gap: 8px;
}
.reorder-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.reorder-btn {
  width: 28px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 10px;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.reorder-btn:hover:not([disabled]) {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.reorder-btn[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.status-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.badge-active {
  background: #dcfce7;
  color: #16a34a;
}
.badge-inactive {
  background: #fee2e2;
  color: #dc2626;
}
.admin-list-item.inactive {
  opacity: 0.55;
}
.layout-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.layout-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.layout-section-header:hover {
  background: var(--light);
}
.layout-arrow {
  font-size: 10px;
  color: var(--text-muted);
  width: 14px;
}
.layout-section-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.layout-section-body {
  padding: 0 20px 20px;
}
.layout-section-body .admin-form-grid {
  gap: 10px;
}
.layout-section-body label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.layout-section-body input,
.layout-section-body textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition);
}
.layout-section-body input:focus,
.layout-section-body textarea:focus {
  border-color: var(--primary);
}
.layout-section-body textarea {
  resize: vertical;
  min-height: 60px;
}

@media (max-width: 768px) {
  .admin-grid,
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-nav-tabs { display: none; }
  .admin-section-header { align-items: flex-start; flex-direction: column; }
  .reorder-col { flex-direction: row; }
}

/* ══════════════════════════════════ */
/* ══ Studio Foto Styles ════════════ */
/* ══════════════════════════════════ */
.studio-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.studio-modal-box {
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  max-height: 800px;
  background: #0d1b2a;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(7, 15, 23, 0.6);
}
.studio-modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.studio-modal-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.studio-modal-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.44);
  margin-top: 2px;
}
.studio-close-btn {
  color: rgba(255, 255, 255, 0.5);
  font-size: 26px;
  padding: 4px 10px;
  cursor: pointer;
  transition: color var(--transition);
}
.studio-close-btn:hover {
  color: #ffffff;
}
.studio-modal-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 350px;
  overflow: hidden;
}
.studio-workspace {
  background: #060e17;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.studio-canvas-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 460px;
  max-height: 460px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.4);
}
.studio-canvas-checkered {
  background-image: 
    linear-gradient(45deg, #121c27 25%, transparent 25%), 
    linear-gradient(-45deg, #121c27 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #121c27 75%), 
    linear-gradient(-45deg, transparent 75%, #121c27 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  background-color: #0b121a;
}
.studio-canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.studio-workspace-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
}
.studio-tool-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition);
}
.studio-tool-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.studio-tool-btn.active {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}
.studio-sidebar {
  background: #08111c;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.studio-sidebar::-webkit-scrollbar {
  width: 6px;
}
.studio-sidebar::-webkit-scrollbar-track {
  background: #08111c;
}
.studio-sidebar::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.3);
  border-radius: 3px;
}
.studio-control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}
.studio-control-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.studio-control-group-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.studio-presets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.studio-preset-card {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  cursor: pointer;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
}
.studio-preset-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(255, 255, 255, 0.04);
}
.studio-preset-card.active {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.studio-preset-thumb {
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: 4px;
  margin-bottom: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.studio-preset-label {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.studio-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.studio-slider-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}
.studio-slider-val {
  color: var(--gold);
}
.studio-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  margin: 6px 0;
}
.studio-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.1s ease;
}
.studio-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}
.studio-modal-footer {
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.studio-footer-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.studio-save-btn {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
}
.studio-save-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}
.studio-cancel-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
}
.studio-cancel-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
.brush-preview-circle {
  position: absolute;
  border: 1px solid #ffffff;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
  transform: translate(-50%, -50%);
  display: none;
  z-index: 100;
}

/* Color picker cursor & picker container */
.studio-color-picker-btn {
  background: rgba(255, 255, 255, 0.03);
}
.studio-color-display {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
}

/* Responsive modal */
@media (max-width: 900px) {
  .studio-modal-box {
    height: 95vh;
    max-height: none;
  }
  .studio-modal-content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 280px;
  }
  .studio-sidebar {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
  }
  .studio-canvas-container {
    max-width: 340px;
    max-height: 340px;
  }
}

