:root {
  --accent: #f49ac1;
  --accent-soft: #fdeff5;
  --accent-strong: #e8368f;
  --accent-mid: #ec5aa0;
  --ink: #1a1a1a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fdf6f9;
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

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

.text-\[\#E8368F\] { color: #e8368f; }
.text-\[\#1A1A1A\] { color: #1a1a1a; }
.text-\[\#F49AC1\] { color: #f49ac1; }
.text-white { color: #fff; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-accent-600 { color: #e8368f; }
.text-accent-700 { color: #be185d; }

.bg-\[\#FDF6F9\] { background: #fdf6f9; }
.bg-\[\#FDEFF5\] { background: #fdeff5; }
.bg-\[\#E8368F\] { background: #e8368f; }
.bg-white { background: #fff; }
.bg-gray-300 { background: #d1d5db; }
.bg-black\/25 { background: rgba(0, 0, 0, 0.25); }
.bg-accent-50 { background: #fff7fb; }

.border-\[\#F49AC1\] { border-color: #f49ac1; }
.border-\[\#E8368F\] { border-color: #e8368f; }
.border-accent-100 { border-color: #fdeff5; }
.border-accent-200 { border-color: #f6bfd8; }

.rounded-full { border-radius: 999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-\[0\.24em\] { letter-spacing: 0.24em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.15; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.contents { display: contents; }

.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.place-items-center { place-items: center; }
.self-center { align-self: center; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.min-w-5 { min-width: 1.25rem; }
.min-w-\[12rem\] { min-width: 12rem; }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-20 { width: 5rem; }
.w-full { width: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.right-0 { right: 0; }
.top-0 { top: 0; }
.-right-1 { right: -0.25rem; }
.-top-1 { top: -0.25rem; }
.bottom-5 { bottom: 1.25rem; }
.left-1\/2 { left: 50%; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }

.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-full { transform: translateX(100%); }
.transition-transform { transition-property: transform; }
.duration-300 { transition-duration: 0.3s; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-8 { padding: 2rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }

.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom: 1px solid; }
.border-t { border-top: 1px solid; }

.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }
.shadow-accent-100 { box-shadow: 0 18px 34px rgba(232, 54, 143, 0.13); }
.shadow-accent-200 { box-shadow: 0 14px 24px rgba(232, 54, 143, 0.22); }

.overflow-y-auto { overflow-y: auto; }
.overflow-hidden { overflow: hidden; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.object-cover { object-fit: cover; }
.outline-none { outline: 0; }
.opacity-70 { opacity: 0.7; }
.col-span-full { grid-column: 1 / -1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.font-\[\'Fraunces\'\] { font-family: "Playfair Display", Georgia, serif; }

.disabled\:opacity-50:disabled { opacity: 0.5; }
.focus\:border-\[\#E8368F\]:focus { border-color: #e8368f; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-\[1\.1fr_0\.9fr\] {
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .lg\:grid-cols-\[minmax\(0\,1\.55fr\)_minmax\(280px\,0\.85fr\)\] {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  }
}

/* ===== LOGO ===== */
.logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.78;
  text-transform: uppercase;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-wordmark {
    font-size: 1.5rem;
  }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid rgba(244, 154, 193, 0.3);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header-inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  flex-wrap: nowrap;
}

@media (min-width: 640px) {
  .site-header-inner {
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
}

@media (min-width: 768px) {
  .site-header-inner {
    gap: 1rem;
    padding: 0.85rem 1.5rem;
  }
}

/* ===== SEARCH ===== */
.site-search {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 320px;
  display: none;
}

@media (min-width: 640px) {
  .site-search {
    display: block;
  }
}

@media (min-width: 768px) {
  .site-search {
    max-width: 400px;
  }
}

.site-search-input {
  width: 100%;
  height: 2.4rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: white;
  padding: 0 2.75rem 0 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-search-input:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(232, 54, 143, 0.1);
}

.site-search-input::placeholder {
  color: #f9a8d4;
  font-size: 0.72rem;
}

.site-search-btn {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  transition: background 0.2s;
}

.site-search-btn:hover {
  background: var(--accent-mid);
}

/* ===== NAV ACTIONS ===== */
.store-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid rgba(244, 154, 193, 0.4);
  border-radius: 999px;
  background: #fff7fb;
  padding: 0.15rem;
  box-shadow: 0 2px 8px rgba(232, 54, 143, 0.06);
  flex-shrink: 0;
  margin-left: auto;
}

@media (min-width: 640px) {
  .store-nav-actions {
    margin-left: 0;
  }
}

.cart-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  color: var(--accent-strong);
  transition: background 0.2s;
  flex-shrink: 0;
}

.cart-button:hover {
  background: var(--accent-soft);
}

.cart-count {
  position: absolute;
  right: -0.2rem;
  top: -0.2rem;
  min-width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0 0.25rem;
}

.nav-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.8rem;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0 0.5rem;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .nav-text-link {
    font-size: 0.7rem;
    padding: 0 0.65rem;
    height: 2rem;
  }
}

.nav-text-link:hover {
  background: var(--accent-soft);
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
  display: inline-flex;
  flex-shrink: 0;
}

.language-selector select {
  height: 1.8rem;
  min-width: 3.8rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  cursor: pointer;
  font-size: 0.6rem;
  font-weight: 800;
  border: none;
  outline: none;
  padding: 0 1.3rem 0 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.35rem center;
  background-size: 0.6rem;
}

@media (min-width: 640px) {
  .language-selector select {
    height: 2rem;
    min-width: 4.5rem;
    font-size: 0.7rem;
    padding: 0 1.5rem 0 0.65rem;
    background-position: right 0.5rem center;
    background-size: 0.7rem;
  }
}

/* ===== MOBILE SEARCH BAR ===== */
.mobile-search {
  display: block;
  padding: 0 0.8rem 0.6rem;
}

.mobile-search .site-search {
  display: block;
  max-width: 100%;
}

@media (min-width: 640px) {
  .mobile-search {
    display: none;
  }
}

/* ===== MESSAGES ===== */
.messages-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 0.75rem;
}

.message {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero-panel {
  position: relative;
  min-height: 38vh;
  overflow: hidden;
  background:
    repeating-conic-gradient(
      from -8deg at 50% 58%,
      #fbb8d3 0deg 10deg,
      #f9a8ce 10deg 20deg
    ),
    radial-gradient(circle at 50% 58%, #fdeff5 0%, #f49ac1 72%, #ec5aa0 100%);
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.35);
  padding: 2rem 1rem 3rem;
}

@media (min-width: 768px) {
  .hero-panel {
    min-height: 42vh;
    padding: 3rem 1.5rem 4rem;
  }
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.55), transparent 42%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.28), transparent 24%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  max-width: 1152px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.8fr);
    gap: 2rem;
  }
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 22px rgba(232, 54, 143, 0.25);
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.78rem;
    padding: 0.3rem 1rem;
  }
}

.hero-title {
  font-family: "Abril Fatface", "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  color: white;
  text-shadow:
    0 2px 0 #f49ac1,
    0 6px 0 #ec5aa0,
    0 14px 24px rgba(232, 54, 143, 0.35);
  -webkit-text-stroke: 1px rgba(232, 54, 143, 0.45);
  margin: 0;
}

.hero-script {
  display: inline-block;
  color: var(--accent-strong);
  font-family: "Pacifico", cursive;
  font-size: clamp(1.6rem, 5vw, 4.5rem);
  line-height: 1;
  text-shadow: 0 2px 0 white, 0 5px 10px rgba(232, 54, 143, 0.28);
  transform: rotate(-4deg);
  margin-top: -0.25rem;
}

/* ===== HERO CATEGORIES ===== */
.hero-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .hero-categories {
    gap: 0.75rem;
  }
}

.category-shortcut {
  display: block;
  text-align: center;
  color: var(--accent-strong);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 900;
  transition: transform 0.2s;
}

@media (min-width: 768px) {
  .category-shortcut {
    font-size: 1.25rem;
  }
}

.category-shortcut:hover {
  transform: scale(1.05);
}

.category-shortcut img {
  aspect-ratio: 1;
  width: 100%;
  border: 2px solid var(--accent);
  border-radius: 999px;
  object-fit: cover;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2) 28%, transparent 54%),
    linear-gradient(145deg, #fdeff5, #f49ac1);
  box-shadow: inset 0 8px 18px rgba(255, 255, 255, 0.45), 0 8px 20px rgba(232, 54, 143, 0.14);
  margin-bottom: 0.3rem;
}

.category-shortcut span {
  display: block;
  font-size: 0.65rem;
}

@media (min-width: 768px) {
  .category-shortcut span {
    font-size: inherit;
  }
}

/* ===== SECTION PILL ===== */
.section-pill {
  display: inline-block;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-weight: 900;
  font-size: 0.7rem;
  padding: 0.35rem 1rem;
  box-shadow: 0 6px 16px rgba(232, 54, 143, 0.2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-pill {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .product-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ===== PRODUCT CARD ===== */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, #fff, #fdeff5);
  box-shadow: 0 8px 20px rgba(232, 54, 143, 0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 54, 143, 0.12);
}

.product-card.sold-out {
  opacity: 0.7;
}

.product-card-link {
  display: block;
}

.product-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  margin: 0.4rem;
  border-radius: 0.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 15%, rgba(255, 255, 255, 0.9), transparent 28%),
    repeating-linear-gradient(135deg, rgba(249, 168, 206, 0.35) 0 20px, rgba(251, 184, 211, 0.35) 20px 40px);
}

@media (min-width: 768px) {
  .product-photo-wrap {
    margin: 0.7rem;
    border-radius: 0.8rem;
  }
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.new-badge,
.sold-badge {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 3;
  border-radius: 0.35rem;
  padding: 0.2rem 0.45rem;
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.new-badge {
  background: var(--accent-strong);
}

.sold-badge {
  background: var(--ink);
}

.product-info {
  padding: 0.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-info {
    padding: 0.75rem 1rem 1rem;
  }
}

.product-name {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--accent-strong);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

.price-pill {
  display: inline-block;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.18rem 0.55rem;
  box-shadow: 0 4px 12px rgba(232, 54, 143, 0.2);
  margin-top: auto;
  width: fit-content;
}

@media (min-width: 768px) {
  .price-pill {
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
  }
}

/* ===== QUICK ADD BUTTON ===== */
.quick-add-form {
  display: contents;
}

.quick-add-btn {
  position: absolute;
  right: 0.6rem;
  bottom: 4.2rem;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  background: var(--accent-strong);
  color: white;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(232, 54, 143, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-add-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(232, 54, 143, 0.4);
}

@media (min-width: 768px) {
  .quick-add-btn {
    width: 2.5rem;
    height: 2.5rem;
    right: 1rem;
    bottom: 5rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
  }
}

/* ===== HOME LAYOUT ===== */
.fetch-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .fetch-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
    align-items: start;
    gap: 1.5rem;
  }
}

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

@media (min-width: 640px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.callout {
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(232, 54, 143, 0.06);
}

@media (min-width: 768px) {
  .callout {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .callout {
    position: sticky;
    top: 6rem;
  }
}

.callout h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  color: var(--accent-strong);
  margin: 0 0 0.75rem;
}

.callout-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-style: normal;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.callout-arrow::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.16rem solid white;
  border-top: 0.16rem solid white;
  transform: rotate(45deg);
}

.callout p {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-open .cart-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  height: 100%;
  height: 100dvh;
  width: 100%;
  max-width: 420px;
  background: white;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.cart-brand {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  margin: 0;
}

.cart-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}

.cart-close-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.5rem;
  font-weight: 700;
  transition: background 0.2s;
}

.cart-close-btn:hover {
  background: #fde0ee;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fdf6f9;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  align-items: center;
}

.cart-item-image {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 0.25rem;
}

.cart-item-price {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-strong);
  margin: 0;
}

.cart-item-stock {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0.15rem 0 0;
}

.cart-remove-btn {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: white;
  color: var(--accent-strong);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cart-remove-btn:hover {
  background: var(--accent-soft);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.cart-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.cart-empty-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 0.5rem;
}

.cart-empty-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin: 0;
}

.cart-footer {
  border-top: 1px solid var(--gray-100);
  padding: 1.25rem;
  flex-shrink: 0;
  background: white;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.cart-summary-row.total {
  font-size: 1.1rem;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--gray-100);
}

.cart-summary-value {
  color: var(--accent-strong);
}

.cart-summary-label.muted {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.cart-delivery-select {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  background: white;
  font-size: 0.8rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
  margin-top: 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e8368f' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.cart-delivery-select:focus {
  border-color: var(--accent-strong);
}

.cart-delivery-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-strong);
  margin-bottom: 0.3rem;
  margin-top: 0.75rem;
}

.cart-delivery-note {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  font-style: italic;
  margin: 0.5rem 0 0;
}

.cart-checkout-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 0.75rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(232, 54, 143, 0.3);
}

.cart-checkout-btn:hover:not(:disabled) {
  background: #d42d80;
  transform: translateY(-1px);
}

.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cart-action-form {
  display: contents;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }
}

.product-detail-image-wrap {
  border-radius: var(--radius-2xl);
  border: 2px solid var(--accent);
  background: white;
  padding: 1rem;
  box-shadow: 0 15px 35px rgba(232, 54, 143, 0.1);
}

.product-detail-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-category {
  display: inline-block;
  margin-bottom: 1rem;
}

.product-detail-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1rem;
}

.product-detail-price {
  display: inline-block;
  margin-bottom: 1rem;
}

.product-detail-desc {
  font-weight: 500;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.product-detail-specs {
  display: grid;
  gap: 0.75rem;
  background: white;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(232, 54, 143, 0.06);
  border: 1px solid rgba(244, 154, 193, 0.3);
  margin: 0;
}

.product-detail-spec {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.product-detail-spec dt {
  color: var(--accent-strong);
}

.product-detail-spec dd {
  text-align: right;
  margin: 0;
}

.add-to-cart-btn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(232, 54, 143, 0.3);
  border: none;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background: #d42d80;
  transform: translateY(-1px);
}

.sold-out-btn {
  background: var(--gray-300);
  color: white;
  cursor: not-allowed;
  box-shadow: none;
}

.sold-out-btn:hover {
  background: var(--gray-300);
  transform: none;
}

/* ===== CHECKOUT HANDOFF ===== */
.checkout-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .checkout-section {
    padding: 4rem 1.5rem;
  }
}

.checkout-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(232, 54, 143, 0.1);
  border: 1px solid rgba(244, 154, 193, 0.3);
}

@media (min-width: 768px) {
  .checkout-card {
    padding: 2.5rem;
  }
}

.checkout-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin: 1rem 0 0.75rem;
}

.checkout-desc {
  color: var(--gray-500);
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem;
  border-radius: 999px;
  background: #25D366;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  transition: background 0.2s;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #20ba57;
}

.clear-cart-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 999px;
  border: 2px solid var(--accent-strong);
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  cursor: pointer;
}

.clear-cart-btn:hover {
  background: var(--accent-strong);
  color: white;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: var(--accent-strong);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(232, 54, 143, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-0.25rem);
}

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  background: var(--accent);
  color: white;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 2.5rem 1.5rem;
    margin-top: 4rem;
  }
}

.site-footer-inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand-text {
  font-size: 0.8rem;
  font-weight: 500;
  max-width: 400px;
  opacity: 0.9;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer-brand-text {
    font-size: 0.85rem;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-links {
    font-size: 0.85rem;
  }
}

.footer-links a {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

/* ===== CATEGORY & SEARCH PAGES ===== */
.page-header {
  text-align: center;
  padding: 1rem;
}

@media (min-width: 768px) {
  .page-header {
    padding: 2rem 1.5rem;
  }
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-strong);
  border: 2px dashed var(--accent);
  margin: 0;
}

/* ===== ADMIN STYLES (preserved from original) ===== */
.store-admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28rem),
    linear-gradient(135deg, #fff7fb, #fff 44%, #f8d7e7);
  display: grid;
}

@media (min-width: 900px) {
  .store-admin-body {
    grid-template-columns: 16rem minmax(0, 1fr);
  }
}

.store-admin-sidebar {
  padding: 1.25rem;
  background: linear-gradient(180deg, #d92a80, #b91b68);
  color: white;
}

@media (min-width: 900px) {
  .store-admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 1.5rem;
  }
}

.store-admin-brand {
  display: inline-flex;
  flex-direction: column;
  color: white;
  font-weight: 900;
  line-height: 0.82;
  font-size: 1.3rem;
}

.store-admin-nav {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.store-admin-nav a {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  font-weight: 800;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  transition: background 0.2s;
  text-decoration: none;
}

.store-admin-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.store-admin-main {
  min-width: 0;
  padding: 1rem;
}

@media (min-width: 900px) {
  .store-admin-main {
    padding: 1.5rem;
  }
}

.store-admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid rgba(232, 54, 143, 0.15);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(128, 42, 86, 0.06);
  padding: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .store-admin-topbar {
    padding: 1.25rem;
  }
}

.store-admin-topbar h1 {
  color: var(--accent-strong);
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 0.95;
  margin: 0;
}

.store-admin-kicker {
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-admin-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.store-admin-user button {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.35rem 0.6rem;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
}

.store-admin-user button:hover {
  background: #fde0ee;
}

.store-admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .store-admin-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.store-admin-stats article {
  border: 1px solid rgba(232, 54, 143, 0.1);
  border-radius: 0.75rem;
  background: white;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(232, 54, 143, 0.06);
}

.store-admin-stats span {
  color: var(--accent-strong);
  font-size: 1.8rem;
  font-weight: 900;
  display: block;
}

.store-admin-stats p {
  margin: 0.2rem 0 0;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gray-600);
}

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

@media (min-width: 1024px) {
  .store-admin-grid {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.6fr);
  }
}

.store-admin-panel {
  border: 1px solid rgba(232, 54, 143, 0.15);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(128, 42, 86, 0.06);
  padding: 1rem;
}

.store-admin-panel h2 {
  color: var(--accent-strong);
  font-size: 1rem;
  margin: 0 0 1rem;
}

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

.store-admin-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(232, 54, 143, 0.08);
  border-radius: 0.75rem;
  background: #fffafd;
  padding: 0.6rem;
}

.store-admin-row img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.store-admin-row strong {
  font-weight: 800;
  font-size: 0.8rem;
}

.store-admin-row small {
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 600;
}

.store-admin-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.store-admin-flags span {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
}

.store-admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  transition: background 0.2s;
  border: none;
}

.store-admin-button:hover {
  background: #d42d80;
}

.store-admin-button.secondary {
  background: white;
  color: var(--accent-strong);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.store-admin-button.secondary:hover {
  background: var(--accent-soft);
}

.store-admin-search {
  display: flex;
  gap: 0.4rem;
  flex: 1;
}

.store-admin-search input {
  flex: 1;
  min-width: 0;
  border: 2px solid #f6bfd8;
  border-radius: 0.5rem;
  background: white;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.55rem 0.75rem;
  outline: none;
}

.store-admin-search input:focus {
  border-color: var(--accent-strong);
}

.store-admin-search button {
  border-radius: 999px;
  background: var(--accent-strong);
  color: white;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  border: none;
  white-space: nowrap;
}

.store-admin-form-panel {
  border: 1px solid rgba(232, 54, 143, 0.15);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(128, 42, 86, 0.06);
  padding: 1rem;
}

.store-admin-form-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .store-admin-form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.store-admin-form-grid label,
.store-admin-stack label {
  display: grid;
  gap: 0.3rem;
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-admin-input {
  width: 100%;
  border: 2px solid #f6bfd8;
  border-radius: 0.5rem;
  background: white;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.6rem 0.75rem;
  outline: none;
}

.store-admin-input:focus {
  border-color: var(--accent-strong);
}

.store-admin-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.store-admin-empty {
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
}

.store-admin-messages p {
  margin: 0 0 0.5rem;
  border-radius: 0.75rem;
  background: white;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.65rem 0.9rem;
}

.store-admin-checkouts article {
  border: 1px solid rgba(232, 54, 143, 0.1);
  border-radius: 0.75rem;
  background: #fffafd;
  padding: 0.9rem;
  margin-bottom: 0.6rem;
}

.store-admin-checkouts header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.store-admin-checkouts pre {
  white-space: pre-wrap;
  font: 600 0.82rem/1.5 "Poppins", system-ui, sans-serif;
  color: var(--gray-700);
  margin: 0;
}

.store-admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
  gap: 0.6rem;
}

.store-admin-image-grid figure {
  margin: 0;
  border: 1px solid rgba(232, 54, 143, 0.1);
  border-radius: 0.75rem;
  background: #fffafd;
  padding: 0.6rem;
}

.store-admin-image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.store-admin-image-grid figcaption {
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 639px) {
  .site-header-inner {
    flex-wrap: nowrap;
  }
  
  /* Hide search on smallest screens, show in mobile-search div */
  .site-search {
    display: none;
  }
  
  .store-nav-actions {
    margin-left: auto;
    gap: 0.15rem;
    padding: 0.12rem;
  }
  
  .cart-button {
    width: 1.9rem;
    height: 1.9rem;
  }
  
  .nav-text-link {
    height: 1.7rem;
    font-size: 0.6rem;
    padding: 0 0.4rem;
  }
  
  .language-selector select {
    height: 1.7rem;
    min-width: 3.5rem;
    font-size: 0.58rem;
    padding: 0 1.2rem 0 0.4rem;
  }
  
  .product-grid {
    gap: 0.6rem;
  }
  
  .product-photo-wrap {
    margin: 0.3rem;
    border-radius: 0.6rem;
  }
  
  .product-info {
    padding: 0.5rem;
  }
  
  .product-name {
    font-size: 0.75rem;
  }
  
  .price-pill {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
  }
  
  .quick-add-btn {
    width: 1.75rem;
    height: 1.75rem;
    right: 0.5rem;
    bottom: 3.8rem;
    font-size: 0.85rem;
  }
  
  .hero-panel {
    min-height: auto;
    padding: 1.25rem 0.75rem 1.75rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 12vw, 4rem);
  }
  
  .hero-script {
    font-size: clamp(1.2rem, 6vw, 2.5rem);
  }
  
  .cart-drawer {
    max-width: 100%;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}