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

:root {
  --bg: #f7f1eb;
  --bg-strong: #efe2d2;
  --ivory: #fffaf5;
  --gold: #b98d5d;
  --gold-deep: #8b6039;
  --olive: #6f7c5b;
  --rose: #efcfc4;
  --text: #4a3b32;
  --muted: #6b5d50;
  --line: rgba(125, 100, 80, 0.25);
  --success: #2e8b57;
  --danger: #b55252;
  --shadow: 0 10px 35px rgba(102, 77, 58, 0.12);
  --shadow-lift: 0 24px 50px rgba(79, 55, 38, 0.18);
  --glass: rgba(255, 250, 245, 0.7);
  --glass-strong: rgba(255, 253, 250, 0.88);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  background-image: linear-gradient(115deg, rgba(255, 250, 245, 0.94), rgba(239, 226, 210, 0.68)), repeating-linear-gradient(0deg, rgba(116, 88, 61, 0.045) 0, rgba(116, 88, 61, 0.045) 1px, transparent 1px, transparent 5px);
  color: var(--text);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(105deg, #2b1b12, #513521 54%, #2e1d13);
  box-shadow: 0 12px 30px rgba(47, 34, 25, 0.28);
  border-bottom: 1px solid rgba(232, 194, 141, 0.42);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header.is-scrolled {
  background: linear-gradient(105deg, rgba(43, 27, 18, 0.76), rgba(81, 53, 33, 0.7) 54%, rgba(46, 29, 19, 0.76));
  box-shadow: 0 9px 24px rgba(47, 34, 25, 0.18);
  border-color: rgba(232, 194, 141, 0.25);
  backdrop-filter: blur(16px) saturate(1.08);
}
.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 96px;
  padding: 10px 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand-mark {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e7c185;
  background: #fffaf5;
  box-shadow: 0 0 0 5px rgba(231, 193, 133, 0.12), 0 8px 18px rgba(0, 0, 0, 0.3);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: contrast(1.22) saturate(1.16); }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  font-style: normal;
  font-weight: 600;
  color: #fffaf5;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.32);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-button {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fffaf5;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cart-button:hover { background: rgba(255, 250, 245, 0.14); box-shadow: 0 7px 16px rgba(0, 0, 0, 0.2); transform: translateY(-2px); }
.cart-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 20px;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  font-weight: bold;
}
.menu-button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}
.menu-button:hover { background: rgba(255, 250, 245, 0.14); box-shadow: 0 7px 16px rgba(0, 0, 0, 0.2); transform: translateY(-2px); }
.menu-button span {
  width: 26px;
  height: 3px;
  border-radius: 10px;
  background: #fffaf5;
  display: block;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 31, 27, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1200;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.side-menu {
  position: fixed;
  top: 0;
  left: -330px;
  width: min(320px, 86vw);
  height: 100vh;
  background: rgba(255, 253, 250, 0.72);
  backdrop-filter: blur(22px) saturate(1.12);
  box-shadow: 16px 0 42px rgba(47, 34, 25, 0.2);
  opacity: 0;
  transform: translateX(-12px);
  transition: left 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
  z-index: 1210;
  overflow-y: auto;
}
.side-menu.active { left: 0; opacity: 1; transform: translateX(0); }
.side-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 16px 18px 0;
}
.menu-close {
  border: none;
  background: transparent;
  font-size: 2.3rem;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
}
.menu-links {
  list-style: none;
  padding: 12px 18px 30px;
  margin: 0;
}
.menu-links li {
  border-bottom: 1px solid var(--line);
}
.menu-links a {
  display: block;
  padding: 16px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}
.menu-links a:hover { color: var(--text); padding-left: 16px; background: rgba(239, 207, 196, 0.22); }
.menu-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
}
.menu-submenu-toggle span { font-size: 1.25rem; font-weight: 400; }
.menu-submenu { display: none; list-style: none; margin: 0; padding: 0 0 10px 16px; }
.menu-has-submenu.expanded .menu-submenu { display: block; }
.menu-submenu li { border: 0; }
.menu-submenu a { padding: 8px 10px; color: var(--muted); font-size: 0.76rem; }

.page-shell {
  max-width: 1480px;
  margin: 0 auto;
  padding: 34px 24px 76px;
  animation: page-enter 0.7s ease both;
}
@keyframes page-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.hero {
  padding: 30px 0 20px;
  text-align: center;
}
.hero h1, .page-title, .section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0;
  color: var(--gold-deep);
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  margin: 0;
  text-shadow: 0 5px 16px rgba(139, 96, 57, 0.13);
}
.hero h1::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--gold);
}
.section-heading {
  text-align: center;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin: 16px 0 22px;
}
.lead-copy {
  text-align: center;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.03rem;
}

.story {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  padding: clamp(28px, 4vw, 44px);
  margin-top: 26px;
}
.story h2 {
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--gold);
  text-align: center;
  margin: 0 0 18px;
}
.story p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.08rem;
  text-align: center;
  color: var(--text);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }
.feature-card h3 {
  margin: 0 0 10px;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  color: var(--gold);
  font-size: 2.1rem;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
}

.store-hero-image {
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.store-hero-image img {
  width: 100%;
  height: min(60vh, 620px);
  object-fit: contain;
  background: var(--ivory);
}

.product-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 12px; }
.product-card {
  position: relative;
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 9px 24px rgba(102, 77, 58, 0.11), inset 0 1px rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  animation: card-reveal 0.5s ease both;
  backdrop-filter: blur(13px);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.product-card::before { content: ''; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,0.5), transparent 28%, transparent 72%, rgba(239,207,196,0.23)); opacity: 0; transition: opacity 0.35s ease; }
.product-card:hover { border-color: rgba(185, 141, 93, 0.5); box-shadow: var(--shadow-lift); transform: translateY(-7px); }
.product-card:hover::before { opacity: 1; }
.product-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(n + 5) { animation-delay: 0.2s; }
@keyframes card-reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.product-image-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--ivory);
  cursor: zoom-in;
  overflow: hidden;
}
.product-image-trigger img { transition: transform 0.55s ease, filter 0.55s ease; }
.product-card:hover .product-image-trigger img { filter: saturate(1.08) contrast(1.03); transform: scale(1.035); }
.product-card img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.product-body {
  padding: 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}
.product-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}
.product-description {
  color: var(--muted);
  font-size: 0.96rem;
  flex: 1;
}
.product-price {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}
.product-controls {
  display: grid;
  grid-template-columns: auto minmax(132px, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.quantity-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--ivory);
}
.quantity-picker button {
  border: none;
  background: transparent;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text);
}
.quantity-picker input {
  width: 42px;
  border: none;
  text-align: center;
  background: transparent;
  font-weight: 700;
  color: var(--text);
}
.add-cart-btn {
  border: none;
  background: linear-gradient(135deg, var(--gold-deep), #a87645);
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  min-height: 42px;
  padding: 10px 16px;
  white-space: nowrap;
  box-shadow: 0 7px 14px rgba(139, 96, 57, 0.2);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.add-cart-btn:hover { filter: brightness(1.1); box-shadow: 0 10px 18px rgba(139, 96, 57, 0.3); transform: translateY(-2px); }
.grid-cols-4 .product-card img {
  object-fit: contain;
  background: var(--ivory);
}
.grid-cols-7 .product-card img { height: 180px; }
.grid-cols-7 .product-body { padding: 13px; gap: 7px; }
.grid-cols-7 .product-name { font-size: 1rem; }
.grid-cols-7 .product-description { font-size: 0.83rem; }
.grid-cols-7 .product-controls { grid-template-columns: 1fr; }

.product-image-viewer {
  display: none;
  position: fixed;
  z-index: 1300;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(47, 34, 25, 0.82);
  backdrop-filter: blur(12px);
}
.product-image-viewer.active { display: flex; }
.product-image-dialog {
  position: relative;
  max-width: min(920px, 100%);
  max-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}
.product-image-dialog img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  background: var(--ivory);
}
.product-image-close {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.info-banner {
  margin-top: 26px;
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid rgba(185, 141, 93, 0.38);
  padding: 18px 28px;
  font-size: 0.96rem;
  color: var(--text);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(102, 77, 58, 0.08), inset 0 1px rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.inline-cta {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--olive), #83916a);
  color: white;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 10px 18px rgba(66, 76, 51, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.inline-cta:hover { filter: brightness(1.08); box-shadow: 0 14px 24px rgba(66, 76, 51, 0.28); transform: translateY(-2px); }

.shop-hero {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-left: 3px solid var(--gold);
  padding: 22px 24px;
  margin-top: 8px;
  box-shadow: 0 12px 28px rgba(102, 77, 58, 0.08);
  backdrop-filter: blur(14px);
}
.shop-hero p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}

.discount-notice {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  margin: 24px 0 28px;
  background: linear-gradient(135deg, rgba(185, 141, 93, 0.58), rgba(239, 207, 196, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}
.discount-notice > div, .discount-notice > p {
  margin: 0;
  padding: 20px 22px;
  background: rgba(255, 250, 245, 0.76);
  backdrop-filter: blur(14px);
}
.discount-notice-label {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.discount-notice strong, .discount-notice span { display: block; }
.discount-notice strong { color: var(--text); font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; }
.discount-notice span { color: var(--olive); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; }
.discount-notice-detail { grid-column: 1 / -1; color: var(--muted); font-size: 0.86rem; }
.wholesale-notice { background: linear-gradient(135deg, rgba(111, 124, 91, 0.7), rgba(185, 141, 93, 0.46)); border-color: rgba(255, 255, 255, 0.7); }
.wholesale-notice .discount-notice-label { color: var(--olive); }

.souvenir-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.souvenir-category {
  position: relative;
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  color: var(--gold);
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.souvenir-category:hover {
  border-color: rgba(185, 141, 93, 0.6);
  box-shadow: var(--shadow-lift);
  transform: translateY(-7px);
}
.souvenir-category img {
  aspect-ratio: 1 / 1.08;
  object-fit: contain;
  width: 100%;
  background: var(--ivory);
}
.souvenir-category span {
  display: block;
  padding: 10px 12px 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(239,207,196,0.35));
}

.footer {
  background: rgba(255, 253, 250, 0.82);
  border-top: 1px solid var(--line);
  padding: 34px 18px 52px;
  text-align: center;
  backdrop-filter: blur(14px);
}
.footer-brand {
  width: 144px;
  height: 144px;
  margin: 0 auto 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(185,141,93,0.4);
}
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-tagline {
  margin: 10px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--gold);
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text);
  font-weight: 600;
}
.contact-links a {
  color: var(--text);
}
.footer-disclaimer {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.admin-link span { font-size: 1.1rem; }
.admin-link:hover { color: var(--olive); }

.admin-page { min-height: 100vh; }
.admin-shell { width: min(1100px, calc(100% - 36px)); margin: 0 auto; padding: 42px 0 70px; }
.admin-back { display: inline-block; color: var(--olive); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.admin-login { width: min(460px, 100%); margin: 54px auto; padding: 44px; background: rgba(255, 250, 245, 0.9); border: 1px solid var(--line); box-shadow: var(--shadow); text-align: center; }
.admin-login > img { width: 116px; height: 116px; margin: 0 auto 22px; border: 1px solid var(--line); object-fit: contain; }
.admin-login h1, .admin-dashboard h1, .password-panel h2 { margin: 0; color: var(--gold-deep); font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.1; }
.admin-login h1 { font-size: 3rem; }
.admin-login form, .password-panel form { display: grid; gap: 16px; margin-top: 30px; text-align: left; }
.admin-login label, .password-panel label { display: grid; gap: 6px; color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.admin-login input, .password-panel input { width: 100%; padding: 12px; border: 1px solid var(--line); background: #fff; color: var(--text); }
.admin-login button, .password-panel button { border: 0; background: var(--olive); color: white; cursor: pointer; min-height: 46px; font: inherit; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.admin-message { min-height: 24px; margin: 14px 0 0; color: var(--danger); font-size: 0.9rem; }
.admin-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 34px 0 26px; }
.admin-heading h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
.admin-logout { border: 1px solid var(--line); background: transparent; color: var(--text); cursor: pointer; padding: 10px 14px; font: inherit; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.orders-list { display: grid; gap: 16px; }
.order-card { padding: 24px; background: rgba(255, 250, 245, 0.9); border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(102, 77, 58, 0.08); }
.order-card-heading { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.order-card-heading span, .order-card-heading strong { display: block; }
.order-card-heading span { color: var(--gold-deep); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.order-card-heading strong { color: var(--text); font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; }
.order-card-heading b { color: var(--olive); font-size: 1.15rem; white-space: nowrap; }
.order-status { display: grid; justify-items: end; gap: 9px; }
.complete-order { border: 1px solid var(--olive); background: transparent; color: var(--olive); cursor: pointer; padding: 7px 10px; font: inherit; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.complete-order:hover { background: var(--olive); color: white; }
.order-card.is-completed { border-left: 4px solid var(--olive); }
.order-card.is-completed .complete-order { background: var(--olive); color: white; }
.delete-order { border: 0; background: transparent; color: var(--danger); cursor: pointer; padding: 3px; font: inherit; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.email-status { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.status-sent { color: var(--olive); }
.status-failed, .status-not_configured { color: var(--danger); }
.order-card p { margin: 14px 0; color: var(--muted); }
.order-card p a { color: var(--gold-deep); font-weight: 700; }
.order-card ul { display: grid; gap: 6px; margin: 0; padding: 14px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); list-style: none; }
.order-card li { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 0.92rem; }
.order-card li strong { color: var(--text); white-space: nowrap; }
.order-totals { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; margin-top: 13px; color: var(--muted); font-size: 0.85rem; }
.password-panel { max-width: 620px; margin-top: 52px; padding: 32px; border-top: 2px solid var(--gold); background: rgba(255, 255, 255, 0.52); }
.password-panel h2 { font-size: 2rem; }
.empty-orders { padding: 30px; background: rgba(255, 250, 245, 0.75); color: var(--muted); text-align: center; }

.home-page {
  max-width: 1600px;
  padding-top: 30px;
}
.home-hero {
  min-height: 690px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 86px rgba(74, 59, 50, 0.3);
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 26, 18, 0.82) 0%, rgba(38, 26, 18, 0.56) 36%, rgba(38, 26, 18, 0.1) 72%), linear-gradient(0deg, rgba(38, 26, 18, 0.42), transparent 50%);
}
.home-hero::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 244, 230, 0.38);
  box-shadow: inset 0 0 0 8px rgba(255, 250, 245, 0.035);
}
.home-hero > img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.08) contrast(1.06);
  transform: scale(1.02);
  animation: hero-focus 14s ease-in-out infinite alternate;
}
@keyframes hero-focus { to { transform: scale(1.08); } }
.home-hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(30px, 7vw, 110px);
  width: min(600px, calc(100% - 56px));
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(255, 244, 230, 0.42);
  background: linear-gradient(135deg, rgba(47, 34, 25, 0.62), rgba(47, 34, 25, 0.22));
  box-shadow: 0 24px 48px rgba(17, 10, 6, 0.22), inset 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(9px);
  color: #fffaf5;
  transform: translateY(-50%);
}
.home-eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.home-hero h1, .home-collections h2, .home-story h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}
.home-hero h1 {
  color: #fffaf5;
  font-size: clamp(4.4rem, 9vw, 9rem);
  line-height: 0.88;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}
.home-hero h1::after { display: none; }
.home-hero-content > p:not(.home-eyebrow) {
  max-width: 420px;
  margin: 28px 0 34px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}
.hero-cta {
  display: inline-block;
  padding: 14px 22px;
  background: linear-gradient(135deg, #c79b67, var(--gold-deep));
  color: #fffaf5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta:hover { filter: brightness(1.12); box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3); transform: translateY(-3px); }
.home-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: clamp(30px, 8vw, 120px);
  margin: 90px auto;
  max-width: 1220px;
  padding: clamp(36px, 5vw, 72px);
  border: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(102, 77, 58, 0.1);
  background: rgba(255, 250, 245, 0.5);
  backdrop-filter: blur(14px);
}
.home-story h2 { color: var(--gold-deep); font-size: clamp(2.8rem, 4.4vw, 4.5rem); line-height: 1.04; }
.home-story p { margin: 0; text-align: left; font-size: 1.1rem; line-height: 1.9; }
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  max-width: 1220px;
  margin: 0 auto 90px;
  padding: clamp(36px, 5vw, 68px);
  background: linear-gradient(135deg, #647050, var(--olive) 48%, #7d684c);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.contact-section::after { content: ''; position: absolute; width: 420px; height: 420px; right: -160px; top: -230px; border: 1px solid rgba(255, 250, 245, 0.25); border-radius: 50%; }
.contact-section .home-eyebrow { color: #e5bc83; }
.contact-section h2 { margin: 0 0 14px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.6rem, 4vw, 4rem); font-weight: 500; line-height: 1; }
.contact-section p:not(.home-eyebrow) { max-width: 460px; margin: 0; color: rgba(255, 250, 245, 0.84); }
.contact-methods { display: grid; align-content: center; gap: 14px; position: relative; z-index: 1; }
.contact-methods a { border-bottom: 1px solid rgba(255, 250, 245, 0.35); padding: 12px 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.4rem, 2vw, 1.8rem); transition: color 0.2s ease, padding-left 0.2s ease; }
.contact-methods a:hover { color: #e5bc83; padding-left: 10px; }
.contact-methods span { display: block; color: #e5bc83; font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; }
.home-collections { margin: 0 auto 84px; max-width: 1420px; }
.collection-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; }
.collection-heading .home-eyebrow { margin: 0 0 6px; }
.home-collections h2 { color: var(--gold-deep); font-size: clamp(2.6rem, 4vw, 4rem); line-height: 1; }
.collection-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.collection-link { position: relative; min-height: 340px; overflow: hidden; color: #fffaf5; border: 1px solid rgba(255, 255, 255, 0.56); box-shadow: 0 16px 32px rgba(74, 59, 50, 0.16); transition: transform 0.45s ease, box-shadow 0.45s ease; }
.collection-link-large { grid-column: span 2; grid-row: span 2; min-height: 698px; }
.collection-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28, 18, 12, 0.9), rgba(45, 32, 22, 0.06) 72%); transition: background 0.4s ease; }
.collection-link:hover { box-shadow: 0 26px 48px rgba(74, 59, 50, 0.3); transform: translateY(-8px); }
.collection-link:hover::after { background: linear-gradient(0deg, rgba(63, 42, 27, 0.92), rgba(45, 32, 22, 0.2) 72%); }
.collection-link img { width: 100%; height: 100%; position: absolute; object-fit: cover; background: var(--ivory); transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.5s ease; }
.collection-link:hover img { filter: saturate(1.1) contrast(1.06); transform: scale(1.08); }
.collection-link span { position: absolute; z-index: 1; left: 26px; right: 22px; bottom: 26px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.45rem, 2.1vw, 2.35rem); line-height: 1; text-shadow: 0 3px 13px rgba(0, 0, 0, 0.32); }
.collection-link small { display: block; margin-bottom: 10px; color: #ebc99a; font-family: 'DM Sans', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; }
.product-inclusion { color: var(--olive); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(400px, 92vw);
  height: 100vh;
  background: rgba(255, 250, 245, 0.88);
  box-shadow: -20px 0 48px rgba(47, 34, 25, 0.2);
  backdrop-filter: blur(20px) saturate(1.12);
  transition: right 0.3s ease;
  z-index: 1220;
  display: flex;
  flex-direction: column;
}
.cart-panel.active { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}
.cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--gold);
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
}
.cart-close {
  border: none;
  background: transparent;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  padding-top: 42px;
  font-size: 1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--ivory);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.cart-item-info {
  min-width: 0;
}
.cart-item-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.cart-item-meta {
  font-size: 0.8rem;
  color: var(--muted);
}
.cart-item-subtotal {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: right;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
}
.cart-item-controls button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}
.cart-item-controls span {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
}
.remove-item {
  color: var(--danger);
  font-size: 1.1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0 4px;
}
.cart-footer {
  border-top: 1px solid var(--line);
  padding: 18px;
  background: rgba(255,255,255,0.56);
}
.cart-totals {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.cart-totals .line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cart-totals .grand-total {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 1.08rem;
  font-weight: 700;
}
.cart-coupon {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.cart-coupon input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: white;
}
.cart-coupon button, .primary-action {
  padding: 10px 14px;
  border: none;
  background: linear-gradient(135deg, var(--olive), #87966e);
  color: white;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.primary-action {
  width: 100%;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--success), #5f9c79);
}
.primary-action.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 18px rgba(18, 140, 126, 0.2);
}

@media (max-width: 780px) {
  .header-inner { padding: 10px 14px; }
  .brand-mark { width: 68px; height: 68px; }
  .brand-text { font-size: 1.35rem; }
  .product-controls { grid-template-columns: 1fr; }
  .souvenir-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discount-notice { grid-template-columns: 1fr; }
  .discount-notice-detail { grid-column: auto; }
  .grid-cols-2, .grid-cols-3, .grid-cols-4, .grid-cols-7 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-7 { gap: 14px; }
  .grid-cols-7 .product-card img { height: 220px; }
  .home-page { padding: 16px 14px 54px; }
  .home-hero { min-height: 520px; }
  .home-hero > img { height: 520px; }
  .home-story { grid-template-columns: 1fr; gap: 24px; margin: 58px 0; padding: 34px 4px; }
  .home-story p { text-align: left; font-size: 1rem; }
  .contact-section { grid-template-columns: 1fr; gap: 28px; margin-bottom: 58px; padding: 34px 26px; }
  .admin-shell { width: min(100% - 28px, 1100px); padding-top: 28px; }
  .admin-login { padding: 32px 24px; }
  .admin-heading { align-items: start; flex-direction: column; }
  .order-card { padding: 20px; }
  .order-card-heading { align-items: start; }
  .collection-heading { display: block; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-link, .collection-link-large { min-height: 380px; }
  .collection-link-large { grid-column: auto; grid-row: auto; }
}

@media (min-width: 781px) and (max-width: 1180px) {
  .grid-cols-7 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .grid-cols-7 .product-card img { height: 235px; }
  .grid-cols-7 .product-controls { grid-template-columns: auto minmax(120px, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-link-large { grid-column: span 2; grid-row: auto; min-height: 460px; }
}
