:root {
  --ink: #161312;
  --muted: #746b66;
  --line: #eadfd8;
  --paper: #fffaf7;
  --panel: #ffffff;
  --accent: #b94b5f;
  --accent-dark: #843442;
  --accent-soft: #f9e7eb;
  --gold: #b9853a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185, 75, 95, 0.13), transparent 32rem),
    linear-gradient(180deg, #fffaf7 0%, #fff 38%, #fffaf7 100%);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.navbar {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 10px 30px rgba(44, 28, 26, 0.08);
}

.navbar-brand {
  font-size: 1.35rem;
  letter-spacing: 0;
}

.nav-link {
  color: #3e3734;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding-inline: 1.2rem;
}

.btn-dark {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.btn-dark:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.btn-outline-dark {
  border-color: rgba(22, 19, 18, 0.28);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 54px;
  background: linear-gradient(135deg, #fff5f7 0%, #f7ede7 48%, #f5f0e8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 52%;
  height: 420px;
  background: radial-gradient(circle, rgba(185, 133, 58, 0.16), transparent 68%);
  pointer-events: none;
}

.hero h1,
.section-title h1,
.section-title h2,
main h1 {
  font-weight: 900;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.45rem, 4.8vw, 5.4rem);
  max-width: 820px;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 620px;
  margin: 18px 0 28px;
}

.hero-img,
.rounded-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(80, 45, 39, 0.22);
}

.hero-img {
  aspect-ratio: 4 / 5;
}

.rounded-img {
  aspect-ratio: 5 / 4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.section {
  padding: 78px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.product-card {
  height: 100%;
  border: 1px solid rgba(234, 223, 216, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 44px rgba(52, 35, 32, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 75, 95, 0.35);
  box-shadow: 0 26px 60px rgba(52, 35, 32, 0.14);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #f3ece7;
}

.product-media img,
.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 6px 11px;
  box-shadow: 0 8px 20px rgba(40, 28, 25, 0.12);
}

.product-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
}

.product-card p {
  color: var(--muted);
  min-height: 3rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  font-size: 1.16rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.service-band {
  padding: 54px 0;
  background: #2b211f;
  color: #fff;
}

.service-band h3 {
  font-size: 1.12rem;
  font-weight: 900;
}

.service-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.site-footer {
  padding: 32px 0;
  background: #15110f;
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffdbe4;
}

.form-panel,
.summary-panel,
.contact-box,
.cart-row,
.order-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(52, 35, 32, 0.09);
}

.form-control,
.form-select {
  border-color: var(--line);
  border-radius: 8px;
  padding: 0.78rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.22rem rgba(185, 75, 95, 0.13);
}

.cart-row {
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.cart-row img {
  width: 104px;
  height: 116px;
  object-fit: cover;
  border-radius: 8px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button,
.qty-control span {
  width: 38px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #fff;
}

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

.total-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
  font-weight: 900;
  font-size: 1.16rem;
}

.empty-state {
  background: rgba(255, 255, 255, 0.92);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 38px;
  text-align: center;
}

@media (max-width: 767px) {
  .hero,
  .section {
    padding: 52px 0;
  }

  .hero-img {
    aspect-ratio: 4 / 4.6;
  }

  .cart-row {
    grid-template-columns: 78px 1fr;
  }

  .cart-row img {
    width: 78px;
    height: 88px;
  }

  .cart-actions {
    grid-column: 1 / -1;
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
