@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #f0f2f5;
  --bg-card: #f0f2f5;
  --shadow-out: 8px 8px 20px #d1d9e6, -8px -8px 20px #ffffff;
  --shadow-in: inset 4px 4px 10px #d1d9e6, inset -4px -4px 10px #ffffff;
  --shadow-hover: 12px 12px 28px #c8d0e0, -12px -12px 28px #ffffff;
  --shadow-sm: 4px 4px 10px #d1d9e6, -4px -4px 10px #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --pink: #f4a7b9;
  --pink-dark: #e8849a;
  --lavender: #b8a9d9;
  --lavender-dark: #9a8bc4;
  --beige: #e8d5c4;
  --beige-dark: #d4b896;
  --sage: #a8c5a0;
  --text: #4a4a5a;
  --text-light: #8a8a9a;
  --text-muted: #aaabb8;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}

.h-logo{
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(240,242,245,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(209,217,230,0.6), 0 -1px 0 rgba(255,255,255,0.8);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo span { color: var(--pink-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  position: relative;
}

.nav-icon-btn:hover {
  box-shadow: var(--shadow-out);
  transform: translateY(-1px);
}

.nav-icon-btn:active {
  box-shadow: var(--shadow-in);
  transform: translateY(0);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink-dark);
  color: white;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--bg);
  color: var(--pink-dark);
  box-shadow: var(--shadow-out);
}

.btn-primary:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--pink-dark);
}

.btn-primary:active {
  box-shadow: var(--shadow-in);
  transform: translateY(0);
}

.btn-pink {
  background: linear-gradient(135deg, #f4a7b9, #e8849a);
  color: white;
  box-shadow: 6px 6px 16px rgba(232,132,154,0.35), -2px -2px 8px rgba(255,255,255,0.8);
}

.btn-pink:hover {
  box-shadow: 8px 8px 20px rgba(232,132,154,0.45), -2px -2px 10px rgba(255,255,255,0.9);
  transform: translateY(-2px);
  color: white;
}

.btn-pink:active {
  box-shadow: inset 3px 3px 8px rgba(0,0,0,0.15);
  transform: translateY(0);
}

.btn-outline {
  background: var(--bg);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(209,217,230,0.5);
}

.btn-outline:hover {
  box-shadow: var(--shadow-out);
  color: var(--text);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-out);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-body { padding: 1.5rem; }
.card-body-sm { padding: 1rem; }

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-out);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #e8ddd5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.7);
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, #f0e8e0, #e8d5c4);
}

.product-card-body { padding: 1.25rem; }

.product-card-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-dark);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-current {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-badge {
  font-size: 0.7rem;
  background: linear-gradient(135deg, #f4a7b9, #e8849a);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-weight: 500;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--pink-dark);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-in);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.2s ease;
  outline: none;
}

.form-control:focus {
  box-shadow: inset 6px 6px 14px #c8d0e0, inset -6px -6px 14px #ffffff, 0 0 0 2px rgba(244,167,185,0.3);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control {
  cursor: pointer;
  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='%238a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
}

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

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header { margin-bottom: 3rem; }

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

/* ── PAGE LAYOUT UTILITIES ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.order-success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-order-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}

.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.admin-filter-row {
  display: flex;
  gap: 0.5rem;
}

.admin-status-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.admin-mobile-nav {
  display: none;
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(240,242,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem;
  box-shadow: 0 2px 12px rgba(209,217,230,0.6);
}

.admin-mobile-nav-list {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.admin-mobile-nav-list::-webkit-scrollbar { display: none; }

.admin-mobile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-light);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  white-space: nowrap;
}

.admin-mobile-link.active {
  color: var(--pink-dark);
  box-shadow: var(--shadow-out);
}

/* ── ALERTS ── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.alert-success { background: #e8f5e9; color: #388e3c; box-shadow: var(--shadow-sm); }
.alert-error { background: #fce4ec; color: #c2185b; box-shadow: var(--shadow-sm); }
.alert-info { background: #e3f2fd; color: #1565c0; box-shadow: var(--shadow-sm); }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--pink), transparent);
  top: -200px; right: -100px;
}

.hero-circle-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--lavender), transparent);
  bottom: -100px; left: -100px;
}

.hero-circle-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--beige), transparent);
  top: 30%; left: 30%;
  opacity: 0.08;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--pink-dark);
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--pink-dark);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.hero-stat { text-align: left; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  width: 420px;
  height: 500px;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  background: linear-gradient(135deg, #f0e8e0, #e8d5c4);
  box-shadow: 20px 20px 50px #d1d9e6, -20px -20px 50px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-floating-card {
  position: absolute;
  background: var(--bg);
  box-shadow: var(--shadow-out);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  font-size: 0.82rem;
  white-space: nowrap;
  animation: cardFloat 4s ease-in-out infinite;
}

.hero-floating-card.card-1 { top: 40px; left: -40px; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: 80px; right: -30px; animation-delay: 1.5s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── CATEGORIES ── */
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.category-chip:hover,
.category-chip.active {
  box-shadow: var(--shadow-out);
  color: var(--pink-dark);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  box-shadow: 0 -4px 20px rgba(209,217,230,0.5);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-brand span { color: var(--pink-dark); }

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 260px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--pink-dark); }

.footer-bottom {
  border-top: 1px solid rgba(209,217,230,0.5);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 8px 8px 20px rgba(37,211,102,0.4), -4px -4px 10px rgba(255,255,255,0.5);
  z-index: 999;
  transition: all 0.25s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 12px 12px 28px rgba(37,211,102,0.5), -4px -4px 12px rgba(255,255,255,0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 8px 8px 20px rgba(37,211,102,0.4), -4px -4px 10px rgba(255,255,255,0.5); }
  50% { box-shadow: 8px 8px 28px rgba(37,211,102,0.6), -4px -4px 10px rgba(255,255,255,0.5), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--bg);
  padding: 3rem 0 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(209,217,230,0.4);
}

.page-header-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a { text-decoration: none; color: var(--pink-dark); }

/* ── NEUMORPHIC PANEL ── */
.neu-panel {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-out);
  padding: 2rem;
}

.neu-panel-sm { padding: 1.25rem; }

/* ── TABLE ── */
.neu-table { width: 100%; border-collapse: collapse; }

.neu-table th {
  background: var(--bg);
  box-shadow: var(--shadow-in);
  padding: 0.85rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-align: left;
}

.neu-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(209,217,230,0.4);
  font-size: 0.9rem;
  color: var(--text);
  vertical-align: middle;
}

.neu-table tr:last-child td { border-bottom: none; }
.neu-table tr:hover td { background: rgba(209,217,230,0.1); }

/* ── STATUS BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pending { background: #fff3cd; color: #856404; }
.badge-processing { background: #cfe2ff; color: #084298; }
.badge-shipped { background: #d1ecf1; color: #0c5460; }
.badge-delivered { background: #d4edda; color: #155724; }
.badge-cancelled { background: #f8d7da; color: #842029; }
.badge-paid { background: #d4edda; color: #155724; }
.badge-cod { background: #e2e3e5; color: #383d41; }

/* ── QUANTITY CONTROL ── */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  box-shadow: var(--shadow-in);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.qty-btn:hover { color: var(--pink-dark); background: rgba(244,167,185,0.1); }

.qty-display {
  padding: 0 1rem;
  font-weight: 500;
  color: var(--text);
  min-width: 40px;
  text-align: center;
}

/* ── ADMIN SIDEBAR ── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--bg);
  box-shadow: 6px 0 20px rgba(209,217,230,0.5);
  padding: 2rem 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}

.admin-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.admin-logo span { color: var(--pink-dark); }

.admin-role {
  font-size: 0.75rem;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(209,217,230,0.5);
}

.admin-nav { list-style: none; }

.admin-nav-item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.88rem;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.admin-nav-item a:hover,
.admin-nav-item a.active {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  color: var(--pink-dark);
}

.admin-content {
  flex: 1;
  padding: 2rem;
  overflow: auto;
}

/* ── STAR RATING ── */
.stars { color: #f4a7b9; font-size: 0.9rem; letter-spacing: 0.05em; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .navbar { padding: 0 1rem; }
  .hero-grid,
  .product-layout { gap: 2.25rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .admin-order-layout { grid-template-columns: 1fr; }
  .cart-summary,
  .checkout-summary { position: static !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 2.25rem 0; }
  .nav-links { display: none; }
  .nav-inner { height: 64px; gap: 0.75rem; }
  .nav-logo { font-size: 1.3rem; }
  .page-header { padding: 2rem 0 1.5rem; margin-bottom: 2rem; }
  .page-header-title { font-size: 2rem; }
  .hero { min-height: auto; padding: 4rem 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-image-wrap { display: none; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .hero-actions .btn-lg { width: 100%; }
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .product-thumb-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .order-success-grid,
  .admin-order-layout { grid-template-columns: 1fr; }
  .cart-summary,
  .checkout-summary { position: static !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .neu-panel { padding: 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .admin-layout { display: block; }
  .admin-sidebar { display: none; }
  .admin-mobile-nav { display: block; }
  .admin-content { padding: 1rem; }
  .admin-page-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .admin-filter-row { flex-wrap: wrap; }
  .admin-status-form { flex-direction: column; align-items: stretch; }
  .hero-img-frame { width: 280px; height: 340px; }
}

@media (max-width: 480px) {
  .btn { padding: 0.65rem 1rem; }
  .btn-lg { padding: 0.8rem 1.25rem; font-size: 0.92rem; }
  .hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.9rem; }
  .page-header-title { font-size: 1.7rem; }
  .neu-table th,
  .neu-table td { padding: 0.75rem 0.8rem; font-size: 0.82rem; white-space: nowrap; }
  .whatsapp-btn { width: 50px; height: 50px; font-size: 1.25rem; right: 1rem; bottom: 1rem; }
}
