:root {
  --lmc-blush: #c98a83;
  --lmc-blush-dark: #a96860;
  --lmc-cream: #faf3ef;
  --lmc-ink: #2b2320;
}

.lmc-hero {
  background: linear-gradient(135deg, #fbeeea 0%, #f6e0d8 100%);
  padding: 72px 28px 64px;
  text-align: center;
}
.lmc-hero .eyebrow { color: var(--lmc-blush-dark); }
.lmc-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--lmc-ink);
  margin: 8px 0 16px;
}
.lmc-hero p { color: #6b5c56; max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }

.lmc-btn {
  display: inline-block;
  background: var(--lmc-blush-dark);
  color: #fff;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}
.lmc-btn:hover { background: #8f5049; }
.lmc-btn.ghost {
  background: transparent;
  color: var(--lmc-blush-dark);
  border: 1.5px solid var(--lmc-blush-dark);
}
.lmc-btn.ghost:hover { background: var(--lmc-blush-dark); color: #fff; }
.lmc-btn.small { padding: 9px 18px; font-size: 0.82rem; }
.lmc-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.lmc-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .lmc-category-grid { grid-template-columns: 1fr; } }
.lmc-category-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  background: linear-gradient(160deg, var(--lmc-blush) 0%, var(--lmc-blush-dark) 100%);
}
.lmc-category-tile h3 { font-family: Georgia, serif; font-style: italic; font-size: 1.7rem; margin: 0 0 6px; }
.lmc-category-tile p { margin: 0 0 14px; opacity: 0.92; font-size: 0.92rem; }
.lmc-category-tile .lmc-btn.ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.lmc-category-tile .lmc-btn.ghost:hover { background: #fff; color: var(--lmc-blush-dark); }

.lmc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
}
.lmc-product-card {
  background: #fff;
  border: 1px solid #eee0da;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lmc-product-card .lmc-img {
  aspect-ratio: 1/1;
  background: var(--lmc-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lmc-product-card .lmc-img img { width: 100%; height: 100%; object-fit: cover; }
.lmc-product-card .lmc-img .lmc-placeholder { color: #c9b6ae; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.lmc-product-card .lmc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.lmc-product-card h4 { margin: 0 0 6px; font-size: 1rem; font-weight: 600; color: var(--lmc-ink); }
.lmc-product-card .lmc-desc { color: #8a7a73; font-size: 0.85rem; margin: 0 0 12px; flex: 1; }
.lmc-product-card .lmc-price { font-weight: 700; color: var(--lmc-blush-dark); font-size: 1.05rem; margin-bottom: 12px; }
.lmc-empty-note { text-align: center; color: #8a7a73; padding: 40px 20px; }

/* Cart drawer */
.lmc-cart-toggle {
  position: fixed; top: 90px; right: 22px; z-index: 60;
  background: var(--lmc-blush-dark); color: #fff;
  border: none; border-radius: 30px; padding: 12px 20px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  box-shadow: 0 8px 20px rgba(169,104,96,0.35);
}
.lmc-cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--lmc-blush-dark);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.72rem; font-weight: 800; margin-left: 6px;
}
.lmc-cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 70;
  display: none;
}
.lmc-cart-overlay.open { display: block; }
.lmc-cart-drawer {
  position: fixed; top: 0; right: -400px; width: 380px; max-width: 92vw; height: 100%;
  background: #fff; z-index: 80; box-shadow: -12px 0 40px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  display: flex; flex-direction: column;
}
.lmc-cart-drawer.open { right: 0; }
.lmc-cart-header { padding: 22px 22px 16px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.lmc-cart-header h3 { margin: 0; font-size: 1.1rem; }
.lmc-cart-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #8a7a73; }
.lmc-cart-items { flex: 1; overflow-y: auto; padding: 12px 22px; }
.lmc-cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f2eae6; }
.lmc-cart-item .lmc-ci-name { font-weight: 600; font-size: 0.92rem; color: var(--lmc-ink); }
.lmc-cart-item .lmc-ci-meta { color: #8a7a73; font-size: 0.82rem; margin-top: 3px; }
.lmc-cart-item .lmc-ci-remove { color: #b04545; font-size: 0.78rem; cursor: pointer; margin-top: 6px; display: inline-block; }
.lmc-cart-footer { padding: 18px 22px 24px; border-top: 1px solid #eee; }
.lmc-cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 16px; font-size: 1.05rem; }
.lmc-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 0.9rem; }

/* Reviews */
.lmc-stars { color: var(--lmc-blush-dark); letter-spacing: 2px; }
.lmc-review-card { background: #fff; border: 1px solid #eee0da; border-radius: 10px; padding: 22px; }
.lmc-review-card .lmc-review-name { font-weight: 700; color: var(--lmc-ink); font-size: 0.92rem; }
.lmc-review-card .lmc-review-date { color: #b3a49d; font-size: 0.76rem; margin-left: 8px; }
.lmc-review-card p { color: #5c4f49; font-size: 0.92rem; margin: 8px 0 0; }

.lmc-section { padding: 64px 0; }
.lmc-section.alt { background: var(--lmc-cream); }
.lmc-section-heading { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.lmc-section-heading h2 { font-family: Georgia, serif; font-style: italic; font-size: 1.8rem; color: var(--lmc-ink); margin: 0 0 10px; }
.lmc-section-heading p { color: #8a7a73; margin: 0; }
