/* ============================================
   CROCHET HAVEN — Main Stylesheet
   Soft pastel, handmade, artisan aesthetic
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --pink:        #f7c5d0;
  --pink-deep:   #e8a0b0;
  --blush:       #fde8ed;
  --cream:       #fdf6ee;
  --beige:       #f5ead8;
  --beige-dark:  #e8d5b7;
  --sage:        #b5c9b0;
  --brown:       #7c5c42;
  --brown-light: #a47c5b;
  --text:        #3d2b1f;
  --text-muted:  #8a6b57;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(124,92,66,.10);
  --shadow-hover:0 8px 40px rgba(124,92,66,.18);
  --radius:      18px;
  --radius-sm:   10px;
  --transition:  all .28s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--brown);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--beige-dark); border-radius: 99px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: rgba(253,246,238,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--beige-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brown);
  font-style: italic;
}

.nav-logo .logo-icon { font-size: 1.6rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--pink-deep);
  border-radius: 99px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--brown); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-search {
  display: flex;
  align-items: center;
  background: var(--beige);
  border: 1.5px solid var(--beige-dark);
  border-radius: 99px;
  padding: .35rem .9rem;
  gap: .5rem;
  transition: var(--transition);
}

.nav-search:focus-within {
  border-color: var(--pink-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,160,176,.2);
}

.nav-search input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  width: 180px;
  outline: none;
}

.nav-search input::placeholder { color: var(--text-muted); }

.nav-search .search-icon { color: var(--text-muted); font-size: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 99px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush) 0%, var(--beige) 50%, var(--cream) 100%);
  padding: 5rem 2rem 4rem;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(247,197,208,.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(181,201,176,.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--pink);
  color: var(--brown);
  font-size: .8rem;
  font-weight: 500;
  padding: .3rem .8rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--brown);
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 99px;
  font-size: .95rem;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid var(--brown);
}

.btn-primary:hover {
  background: var(--brown-light);
  border-color: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,92,66,.25);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  padding: .75rem 1.8rem;
  border-radius: 99px;
  font-size: .95rem;
  font-weight: 500;
  border: 2px solid var(--brown);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}

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

.hero-blob {
  width: 340px; height: 340px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--beige) 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  animation: blobmorph 8s ease-in-out infinite alternate;
  box-shadow: 0 20px 60px rgba(247,197,208,.5);
}

@keyframes blobmorph {
  0%   { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%  { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  66%  { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; }
  100% { border-radius: 50% 50% 60% 40% / 60% 50% 50% 40%; }
}

.hero-stats {
  position: absolute;
  bottom: -10px; left: -20px;
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: float 4s ease-in-out infinite;
}

.hero-stats-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 700;
}

.hero-stats-label { font-size: .75rem; color: var(--text-muted); }

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

/* ============================================
   SECTION WRAPPER
   ============================================ */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--pink-deep);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 99px;
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brown);
  margin-bottom: .4rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: .95rem;
}

/* ============================================
   CATEGORY FILTERS
   ============================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  color: var(--text-muted);
  padding: .45rem 1.2rem;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--pink-deep);
  color: var(--brown);
  background: var(--blush);
}

.filter-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--beige-dark);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--beige);
}

.card-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  loading: lazy;
}

.product-card:hover .card-image-wrap img { transform: scale(1.07); }

.card-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--beige-dark);
}

.badge-discount, .badge-featured, .badge-new {
  position: absolute;
  top: 10px; left: 10px;
  padding: .2rem .7rem;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.badge-discount {
  background: var(--pink-deep);
  color: var(--white);
}

.badge-featured {
  background: var(--brown);
  color: var(--white);
}

.badge-new {
  background: var(--sage);
  color: var(--white);
}

.card-body {
  padding: 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: .25rem;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: .4rem;
  line-height: 1.3;
}

.card-price {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
  margin-top: auto;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
}

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

.card-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25D366;
  color: var(--white);
  padding: .55rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  width: 100%;
}

.card-wa-btn:hover {
  background: #1aab52;
  transform: scale(1.02);
}

/* ---- Loading state ---- */
.product-grid.loading {
  pointer-events: none;
}

.skeleton-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--beige-dark);
  overflow: hidden;
}

.skeleton {
  background: linear-gradient(90deg, var(--beige) 25%, var(--beige-dark) 50%, var(--beige) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state .empty-icon { font-size: 3.5rem; margin-bottom: .8rem; }
.empty-state h3 { font-family: 'Playfair Display', serif; color: var(--brown); margin-bottom: .4rem; }

/* ============================================
   FEATURED STRIP
   ============================================ */
.featured-strip {
  background: linear-gradient(135deg, var(--blush), var(--beige));
  padding: 3rem 2rem;
  border-top: 1.5px solid var(--beige-dark);
  border-bottom: 1.5px solid var(--beige-dark);
}

/* ============================================
   PRODUCT MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61,43,31,.55);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  color: var(--text-muted);
}

.modal-close:hover { background: var(--blush); color: var(--brown); }

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-gallery {
  position: relative;
  background: var(--beige);
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
}

.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: .4rem;
  padding: .6rem;
  overflow-x: auto;
}

.gallery-thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-thumb.active { border-color: var(--brown); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-info { padding: 2rem; overflow-y: auto; }

.modal-category {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: .4rem;
}

.modal-title {
  font-size: 1.7rem;
  color: var(--brown);
  margin-bottom: .8rem;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: 1.2rem;
}

.modal-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
}

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

.modal-save {
  font-size: .8rem;
  background: var(--blush);
  color: var(--pink-deep);
  padding: .15rem .6rem;
  border-radius: 99px;
  font-weight: 600;
}

.modal-desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.2rem; line-height: 1.7; }

.modal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.2rem; }

.meta-item {
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: .5rem .8rem;
}

.meta-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: .15rem;
}

.meta-value { font-size: .9rem; color: var(--brown); font-weight: 500; }

.chips-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }

.chip {
  background: var(--blush);
  color: var(--brown);
  border: 1px solid var(--pink);
  border-radius: 99px;
  padding: .2rem .65rem;
  font-size: .8rem;
  font-weight: 500;
}

.modal-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: #25D366;
  color: var(--white);
  padding: .85rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  text-decoration: none;
  margin-top: .5rem;
}

.modal-wa-btn:hover { background: #1aab52; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: linear-gradient(135deg, var(--blush), var(--beige));
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: .8rem;
}

.about-hero p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow);
}

.about-text h2 { margin-bottom: 1rem; font-size: 1.8rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

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

.value-icon { font-size: 2rem; margin-bottom: .6rem; }
.value-card h4 { color: var(--brown); margin-bottom: .3rem; font-size: 1rem; }
.value-card p { font-size: .85rem; color: var(--text-muted); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--blush), var(--beige));
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover { border-color: var(--pink); box-shadow: var(--shadow); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card h4 { color: var(--brown); margin-bottom: .2rem; }
.contact-card p { color: var(--text-muted); font-size: .9rem; }

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; color: var(--brown); margin-bottom: .4rem; }

.form-control {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--pink-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,160,176,.2);
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--brown);
  color: rgba(255,255,255,.75);
  padding: 3rem 2rem 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .8rem;
  font-style: italic;
}

.footer-brand-sub { font-size: .88rem; line-height: 1.65; }

.footer-col h5 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: .8rem; font-family: 'DM Sans', sans-serif; letter-spacing: .04em; text-transform: uppercase; }

.footer-col a { display: block; font-size: .88rem; margin-bottom: .4rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.toast {
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  min-width: 240px;
  box-shadow: var(--shadow-hover);
  animation: toastIn .35s ease;
}

.toast.success { border-left: 4px solid #25D366; }
.toast.error   { border-left: 4px solid var(--pink-deep); }
.toast.info    { border-left: 4px solid var(--sage); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================
   ADMIN PAGE
   ============================================ */
.admin-layout {
  min-height: 100vh;
  background: var(--cream);
}

.admin-header {
  background: var(--white);
  border-bottom: 1.5px solid var(--beige-dark);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header h1 {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.admin-body {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2rem;
  align-items: start;
}

.admin-panel {
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.admin-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1.5px solid var(--beige-dark);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }

.form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-muted);
}

.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--brown);
}

.form-section-title {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 600;
  margin: 1rem 0 .5rem;
  padding: .4rem 0;
  border-bottom: 1px dashed var(--beige-dark);
}

.admin-btn-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
  margin-top: 1.2rem;
}

.btn-clear {
  background: var(--beige);
  color: var(--text-muted);
  padding: .7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-clear:hover { background: var(--beige-dark); color: var(--brown); }

.btn-submit {
  background: var(--brown);
  color: var(--white);
  padding: .7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.btn-submit:hover { background: var(--brown-light); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

/* Admin Product List */
.admin-products h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.product-count {
  font-size: .8rem;
  background: var(--beige);
  color: var(--text-muted);
  padding: .2rem .7rem;
  border-radius: 99px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.admin-product-table {
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.apt-header {
  display: grid;
  grid-template-columns: 56px 1fr 100px 90px 90px 110px;
  padding: .6rem 1rem;
  background: var(--beige);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 1.5px solid var(--beige-dark);
}

.apt-row {
  display: grid;
  grid-template-columns: 56px 1fr 100px 90px 90px 110px;
  padding: .7rem 1rem;
  align-items: center;
  border-bottom: 1px solid var(--beige);
  font-size: .88rem;
  transition: background .15s;
}

.apt-row:last-child { border-bottom: none; }
.apt-row:hover { background: var(--cream); }

.apt-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.apt-thumb img { width: 100%; height: 100%; object-fit: cover; }

.apt-name { font-weight: 500; color: var(--brown); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-right: .5rem; }
.apt-cat  { color: var(--text-muted); font-size: .82rem; }
.apt-price { font-weight: 600; color: var(--brown); }
.apt-stock { font-size: .82rem; }

.apt-actions { display: flex; gap: .4rem; }

.btn-edit, .btn-delete {
  padding: .3rem .7rem;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-edit {
  background: var(--beige);
  color: var(--brown);
  border: 1px solid var(--beige-dark);
}

.btn-edit:hover { background: var(--brown); color: var(--white); }

.btn-delete {
  background: var(--blush);
  color: var(--pink-deep);
  border: 1px solid var(--pink);
}

.btn-delete:hover { background: var(--pink-deep); color: var(--white); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 2000;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-family: 'Playfair Display', serif; color: var(--brown); border-bottom: 1px solid var(--beige-dark); padding-bottom: 1rem; }

.mobile-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: var(--beige);
  border: 1.5px solid var(--beige-dark);
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-cta          { justify-content: center; }
  .hero-visual       { display: none; }
  .modal-grid        { grid-template-columns: 1fr; }
  .modal-gallery     { border-radius: var(--radius) var(--radius) 0 0; }
  .about-grid        { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
  .admin-body        { grid-template-columns: 1fr; }
  .admin-panel       { position: static; max-height: none; }
  .apt-header, .apt-row { grid-template-columns: 56px 1fr 90px 90px; }
  .apt-cat, .apt-stock { display: none; }
}

@media (max-width: 620px) {
  .nav-links, .nav-search { display: none; }
  .hamburger { display: flex; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .values-grid  { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}
