@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,700&display=swap");
:root {
  --yellow: #f5bd24;
  --cream: #fffaf0;
  --ink: #181818;
  --muted: #6d675d;
  --line: #e8e0d4;
  --white: #fff;
  --shadow: 0 18px 55px rgba(38, 30, 15, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  transition: 0.2s ease;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 24px;
  margin-right: auto;
}
.site-header nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.cart-btn {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
}
.cart-btn span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}
.hero {
  min-height: 650px;
  padding: 80px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  background: radial-gradient(
    circle at 85% 40%,
    rgba(245, 189, 36, 0.28),
    transparent 35%
  );
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #9a6d00;
}
.hero h1,
.section-head h2,
.custom h2,
.faq h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  margin: 0.2em 0;
}
.hero h1 {
  font-size: clamp(3rem, 6.7vw, 6.7rem);
  max-width: 900px;
}
.hero h1 em {
  font-style: normal;
  color: #b57a00;
}
.hero-copy > p:not(.kicker) {
  max-width: 650px;
  font-size: 1.16rem;
  color: var(--muted);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}
.primary,
.secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.primary {
  background: var(--ink);
  color: #fff;
}
.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.secondary {
  color: var(--ink);
  background: transparent;
}
.mini {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}
.mini span:before {
  content: "✓";
  font-weight: 900;
  color: #aa7900;
  margin-right: 6px;
}
.hero-logo {
  display: grid;
  place-items: center;
}
.logo-disc {
  width: min(480px, 40vw);
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 12%;
}
.logo-disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pricing-strip {
  padding: 17px clamp(20px, 5vw, 72px);
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--yellow);
  font-size: 0.9rem;
}
.shop {
  padding: 90px clamp(20px, 5vw, 72px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.section-head h2,
.custom h2,
.faq h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}
.controls {
  display: flex;
  gap: 10px;
}
.controls input,
.controls select,
label input,
label select,
label textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
.controls input:focus,
label input:focus,
label select:focus,
label textarea:focus {
  border-color: #bb8500;
  box-shadow: 0 0 0 3px rgba(245, 189, 36, 0.22);
}
.filters {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 30px 0 22px;
}
.filter {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  cursor: pointer;
}
.filter.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(40, 30, 10, 0.05);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card button {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}
.card-img {
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-copy {
  padding: 16px;
}
.card-copy .cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9a6d00;
  font-weight: 800;
}
.card-copy h3 {
  font-size: 1rem;
  margin: 6px 0 9px;
  min-height: 2.4em;
}
.card-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.custom {
  margin: 40px clamp(20px, 5vw, 72px) 90px;
  padding: clamp(34px, 6vw, 80px);
  border-radius: 34px;
  background: var(--yellow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.custom p {
  max-width: 600px;
  line-height: 1.6;
}
.custom-art {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transform: rotate(-3deg);
}
.custom-art span {
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  box-shadow: var(--shadow);
}
.faq {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}
.faq details p {
  color: var(--muted);
  line-height: 1.6;
}
footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 38px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}
footer img {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
}
footer p {
  margin: 3px 0;
  color: #bbb;
}
footer a {
  margin-left: auto;
  color: var(--yellow);
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 49;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(460px, 94vw);
  background: #fff;
  z-index: 50;
  transform: translateX(105%);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.drawer.open {
  transform: none;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head button,
.x {
  border: 0;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}
.drawer #cartItems {
  overflow: auto;
  flex: 1;
}
.cart-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cart-item p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.remove {
  border: 0;
  background: none;
  color: #a33131;
  cursor: pointer;
}
.cart-summary {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.cart-summary .grand {
  font-size: 1.25rem;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.wide {
  width: 100%;
}
dialog {
  width: min(760px, 94vw);
  border: 0;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.x {
  position: absolute;
  right: 18px;
  top: 12px;
}
.dialog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.dialog-layout > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--line);
}
dialog label {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  font-weight: 700;
}
label textarea {
  min-height: 90px;
  resize: vertical;
}
.price {
  color: var(--muted);
}
.preview {
  aspect-ratio: 2/1;
  border: 2px dashed var(--line);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--muted);
  overflow: hidden;
  background: #fafafa;
}
.preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.notice {
  padding: 12px;
  border-radius: 12px;
  background: #fff3cf;
  font-size: 0.9rem;
}
.fine {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.thankyou {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}
.thankyou-card {
  text-align: center;
  background: #fff;
  padding: 60px;
  max-width: 620px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.thankyou-card img {
  width: 130px;
}
.admin-link {
  font-size: 0.8rem;
  color: #999;
}
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
    min-height: auto;
  }
  .hero-logo {
    order: -1;
  }
  .logo-disc {
    width: 240px;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }
  .controls {
    flex-direction: column;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .card-copy {
    padding: 12px;
  }
  .card-copy h3 {
    font-size: 0.9rem;
  }
  .custom {
    grid-template-columns: 1fr;
  }
  .dialog-layout {
    grid-template-columns: 1fr;
  }
  .pricing-strip {
    justify-content: flex-start;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions a {
    text-align: center;
  }
}
