/* ===================================
   NZ PRESTIGE — LUXURY DARK THEME
   =================================== */

:root {
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --bg-deep: #0a0a0a;
  --bg-dark: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-white: #f5f0e8;
  --text-muted: #888;
  --text-dim: #555;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* UTILS */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 20px 0 32px; }

/* FADE-IN ANIMATION */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================================
   HEADER
   =================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; cursor: default; }
.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('fond.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.35) 40%,
      rgba(10,10,10,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 24px 60px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 24px;
  text-shadow: 0 0 80px rgba(201,168,76,0.2);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.hero-cta span, .hero-cta { position: relative; }
.hero-cta:hover { color: var(--bg-deep); }
.hero-cta:hover::before { transform: scaleX(1); }
.hero-cta:hover { color: var(--bg-deep); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header { margin-bottom: 48px; }

/* ===================================
   COLLECTION
   =================================== */
.collection {
  padding: 100px 0;
  background: var(--bg-dark);
}

/* FILTERS */
.filters {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.search-wrap {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.search-input::placeholder { color: var(--text-dim); }
.search-input:focus {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.filter-selects { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-select {
  padding: 14px 40px 14px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  backdrop-filter: blur(8px);
}
.filter-select:focus { border-color: rgba(201,168,76,0.4); }
.filter-select option { background: #1a1a1a; color: var(--text-white); }

/* GRID */
.perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.perfume-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.perfume-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--shadow-gold);
  border-color: rgba(201,168,76,0.25);
}

/* IMAGE WRAPPER */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.perfume-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* OUT OF STOCK OVERLAY */
.oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.oos-overlay::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.25) 28px,
    rgba(0,0,0,0.25) 32px
  );
}
.oos-text {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  transform: rotate(-35deg);
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.5);
  padding: 8px 40px;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* CARD BODY */
.card-body {
  padding: 20px;
}
.card-brand {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-famille {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-style: italic;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}
.card-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.card-note { font-size: 0.8rem; color: var(--text-muted); }
.card-status-available {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4caf7d;
  font-weight: 500;
}
.card-status-oos {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e05252;
  font-weight: 500;
}

/* GENRE BADGE */
.genre-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  backdrop-filter: blur(6px);
  z-index: 3;
  pointer-events: none;
}
.genre-homme {
  background: rgba(180, 120, 40, 0.85);
  color: #fff;
  border: 1px solid rgba(201,168,76,0.5);
}
.genre-mixte {
  background: rgba(20, 20, 20, 0.75);
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.35);
}
/* Badge dans le modal (inline, pas absolute) */
.detail-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.detail-name-row .genre-badge {
  position: static;
  font-size: 0.6rem;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 80px 0;
  color: var(--text-dim);
  font-style: italic;
  font-size: 1rem;
}

/* ===================================
   ABOUT
   =================================== */
.about {
  padding: 120px 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 32px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.stat:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-gold);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}
.footer-brand p { margin-top: 12px; font-size: 0.8rem; color: var(--text-dim); font-style: italic; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }
.admin-btn {
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.4;
}
.admin-btn:hover { opacity: 1; border-color: var(--gold); color: var(--gold); }

/* ===================================
   ADMIN PANEL
   =================================== */
.admin-panel {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 200;
  width: 340px;
  max-height: 500px;
  background: #1a1a1a;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--shadow-gold);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.admin-panel-inner { display: flex; flex-direction: column; height: 100%; max-height: 500px; }
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--glass-border);
}
.admin-header h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); }
.admin-close {
  background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; line-height: 1;
  transition: color var(--transition);
}
.admin-close:hover { color: var(--text-white); }
.admin-list {
  overflow-y: auto;
  flex: 1;
  padding: 12px 0;
}
.admin-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 12px;
}
.admin-list li:last-child { border-bottom: none; }
.admin-name {
  font-size: 0.85rem;
  color: var(--text-white);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-toggle {
  position: relative;
  width: 44px; height: 24px;
  cursor: pointer;
  flex-shrink: 0;
}
.admin-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #333;
  border-radius: 24px;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #666;
  border-radius: 50%;
  transition: var(--transition);
}
.admin-toggle input:checked + .toggle-slider { background: rgba(201,168,76,0.3); }
.admin-toggle input:checked + .toggle-slider::before { transform: translateX(20px); background: var(--gold); }

/* ===================================
   MODAL (DETAIL PAGE)
   =================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  width: 100%;
  max-width: 900px;
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  margin: auto;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}
.modal-back {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 24px 28px 0;
  transition: opacity var(--transition);
}
.modal-back svg { width: 16px; height: 16px; }
.modal-back:hover { opacity: 0.7; }
.modal-content { padding: 32px; }

/* DETAIL LAYOUT */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.detail-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.detail-oos-overlay::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.25) 28px,
    rgba(0,0,0,0.25) 32px
  );
}
.detail-oos-text {
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  transform: rotate(-35deg);
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.5);
  padding: 10px 48px;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.detail-info {}
.detail-brand {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.detail-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.detail-famille {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.detail-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.detail-stars .stars { color: var(--gold); font-size: 1rem; }
.detail-stars .note-val { font-size: 0.85rem; color: var(--text-muted); }
.detail-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.detail-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.note-col {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 14px;
}
.note-col-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.note-col-label span { font-size: 0.9rem; }
.note-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.note-item:last-child { border-bottom: none; }
/* ACCORDS BARS */
.accords-bars {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.accord-bar-row {
  width: 100%;
}
.accord-bar {
  width: 0%;
  min-width: 90px;
  height: 32px;
  background: var(--bar-bg, #4a4440);
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
/* Subtil reflet interne */
.accord-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(255,255,255,0.10);
  border-radius: 0 8px 0 0;
  pointer-events: none;
}
.accord-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: lowercase;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.when-wear {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.when-wear-icon { font-size: 1.1rem; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .detail-img-wrap { max-width: 340px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 3rem; }
  .perfume-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-name { font-size: 0.95rem; }
  .filters { flex-direction: column; }
  .search-wrap { min-width: 100%; }
  .filter-selects { width: 100%; }
  .filter-select { flex: 1; }
  .about-stats { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 16px; }
  .admin-panel { width: calc(100vw - 48px); right: 24px; }
  .footer-top { flex-direction: column; }
  .nav-links { gap: 20px; }
}

@media (max-width: 400px) {
  .perfume-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
