:root {
  --ink: #0c0a08;
  --surface: #15110e;
  --orange: #ff5b1f;
  --orange-hot: #ff7b3d;
  --orange-soft: #ffb28d;
  --cream: #fff3e8;
  --muted: #bca79b;
  --line: #3a2921;
  --font-thai: "Kanit", "Tahoma", sans-serif;
  --font-latin: "Barlow Condensed", "Arial Narrow", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 91, 31, 0.13), transparent 30rem),
    radial-gradient(circle at 18% 72%, rgba(255, 91, 31, 0.05), transparent 28rem),
    var(--ink);
  color: var(--cream);
  font-family: var(--font-thai);
}

::selection { background: var(--orange); color: var(--ink); }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--orange-soft); outline-offset: 5px; }

.site-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(102, 69, 54, 0.52);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; }
.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 14px 14px;
  background: var(--orange);
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(255, 91, 31, 0.22);
}
.brand-mark svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.7; }
.brand-mark .bag { fill: currentColor; stroke: none; }
.brand-mark .handle, .brand-mark .swoosh { stroke: var(--orange); stroke-width: 2.4; }
.brand-copy { display: grid; gap: 3px; line-height: 1; }
.brand-copy strong { color: var(--cream); font-size: 1.22rem; letter-spacing: -0.04em; }
.brand-copy span, .header-note, .shop-intro, .site-footer { font-family: var(--font-latin); }
.brand-copy span { color: var(--orange-soft); font-size: 0.58rem; letter-spacing: 0.16em; }
.header-note { color: var(--muted); font-size: 0.74rem; letter-spacing: 0.1em; }
.header-note span { color: var(--orange); margin-left: 4px; }

.shop-main { padding: 72px 0 90px; }
.shop-intro { display: flex; justify-content: space-between; gap: 16px; color: var(--orange-soft); font-size: 0.66rem; letter-spacing: 0.14em; }
.shop-intro i, .site-footer i { width: 7px; height: 7px; display: inline-block; margin-right: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255, 91, 31, 0.12); }
h1 { max-width: 760px; margin: 22px 0 54px; color: var(--cream); font-size: clamp(3.8rem, 9vw, 8.5rem); font-weight: 700; letter-spacing: -0.065em; line-height: 0.9; }
h1 em { color: var(--orange); font-style: normal; }

.image-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.image-card { min-width: 0; position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3); }
.image-card::before { content: ""; position: absolute; inset: 14px; z-index: 1; border: 1px solid rgba(255, 243, 232, 0.2); opacity: 0; transform: scale(0.98); transition: opacity 220ms ease, transform 220ms ease; pointer-events: none; }
.image-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 58%, rgba(12, 10, 8, 0.36)); opacity: 0.55; pointer-events: none; }
.image-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 550ms cubic-bezier(.2,.8,.2,1), filter 550ms ease; }
.image-card:hover { border-color: var(--orange); }
.image-card:hover::before { opacity: 1; transform: scale(1); }
.image-card:hover img { transform: scale(1.045); filter: saturate(1.08) contrast(1.03); }
.image-arrow { position: absolute; right: 20px; bottom: 20px; z-index: 2; width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(255, 243, 232, 0.7); border-radius: 50%; background: rgba(12, 10, 8, 0.46); color: var(--cream); font-family: var(--font-latin); font-size: 1.4rem; opacity: 0; transform: translateY(8px); transition: opacity 200ms ease, transform 200ms ease, background 200ms ease; }
.image-card:hover .image-arrow, .image-card:focus-visible .image-arrow { opacity: 1; transform: translateY(0); }
.image-card:hover .image-arrow { background: var(--orange); color: var(--ink); }

.site-footer { min-height: 92px; display: flex; align-items: center; gap: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.68rem; letter-spacing: 0.07em; }
.site-footer span:first-child { color: var(--cream); }
.site-footer span:last-child { margin-left: auto; }

@media (max-width: 720px) {
  .site-shell { width: min(100% - 32px, 1180px); }
  .site-header { min-height: 74px; }
  .header-note { font-size: 0.65rem; }
  .shop-main { padding: 52px 0 64px; }
  .shop-intro { font-size: 0.61rem; }
  h1 { margin: 18px 0 34px; font-size: clamp(3.3rem, 16vw, 5.8rem); }
  .image-grid { grid-template-columns: 1fr; gap: 14px; }
  .image-card { aspect-ratio: 1 / 1; }
  .image-arrow { right: 14px; bottom: 14px; width: 40px; height: 40px; }
  .site-footer { min-height: 116px; display: grid; align-content: center; gap: 7px; }
  .site-footer span:last-child { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
