@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/remixicon@4.6.0/fonts/remixicon.css");

:root {
  --bg: #f6f3ee;
  --surface: #fffdf9;
  --surface-2: #ece6dc;
  --ink: #1c1b19;
  --muted: #6f6b65;
  --line: #ded8ce;
  --accent: #bc5b32;
  --accent-dark: #8f3e20;
  --dark: #1d211f;
  --success: #44705a;
  --shadow: 0 18px 50px rgba(52, 43, 34, 0.09);
  --radius: 22px;
  --max: 1220px;
  --font: DM Sans, system-ui, sans-serif;
  --display: Manrope, system-ui, sans-serif;
}
[data-theme="dark"] {
  --bg: #171816;
  --surface: #20221f;
  --surface-2: #2a2c28;
  --ink: #f3eee7;
  --muted: #b5b0a8;
  --line: #393b36;
  --dark: #ede8df;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}
body.no-scroll {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--bg);
  padding: 0.7rem 1rem;
  border-radius: 8px;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.announcement {
  background: var(--dark);
  color: var(--bg);
  font-size: 0.82rem;
}
.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 34px;
}
.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  border-color: var(--line);
}
.nav-wrap {
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--bg);
  font-size: 1rem;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--muted);
  transition: 0.2s;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
}
.icon-btn:hover {
  background: var(--surface-2);
}
.menu-btn {
  display: none;
}
.cart-button {
  position: relative;
}
.cart-count {
  position: absolute;
  right: 1px;
  top: 0;
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--accent);
  color: white;
  border-radius: 20px;
  font-size: 0.66rem;
  font-weight: 700;
}
.hero {
  padding: 22px 0 34px;
}
.hero-shell {
  min-height: 630px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 76% 35%,
      rgba(188, 91, 50, 0.22),
      transparent 22%
    ),
    linear-gradient(135deg, #f0e8dc 0 54%, #d5c1aa 54% 72%, #bc5b32 72%);
  display: flex;
  align-items: center;
}
.hero-shell:before {
  content: "";
  position: absolute;
  right: 8%;
  width: min(32vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.08),
    0 0 0 110px rgba(255, 255, 255, 0.05);
}
.hero-shell:after {
  content: "PB";
  position: absolute;
  right: 9%;
  font: 800 clamp(9rem, 20vw, 18rem)/1 var(--display);
  letter-spacing: -0.12em;
  color: rgba(255, 255, 255, 0.2);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(610px, 58%);
  padding: 68px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 20px;
}
.hero h1,
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.01;
  letter-spacing: -0.065em;
  margin: 0;
}
.hero-copy {
  font-size: 1.06rem;
  color: #514b43;
  max-width: 480px;
  margin: 24px 0 30px;
}
.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 11px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn-light {
  background: rgba(255, 255, 255, 0.6);
  color: #211f1c;
  border-color: rgba(30, 27, 24, 0.16);
  backdrop-filter: blur(10px);
}
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-small {
  min-height: 40px;
  padding: 0 15px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border: 0;
}
.trust-item i {
  font-size: 1.35rem;
}
.trust-item strong {
  display: block;
  font-size: 0.86rem;
}
.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}
.section {
  padding: 78px 0;
}
.section-tight {
  padding: 48px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head.center {
  text-align: center;
  display: block;
}
.section-head h2,
.content-card h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 0;
}
.section-head p {
  color: var(--muted);
  max-width: 560px;
  margin: 8px 0 0;
}
.text-link {
  font-weight: 700;
  font-size: 0.88rem;
  border-bottom: 1px solid currentColor;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.category-card {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.2s;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.category-card i {
  font-size: 2rem;
  color: var(--accent);
}
.category-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 22px 0 4px;
}
.category-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}
.category-card span {
  font-size: 0.82rem;
  font-weight: 700;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-image {
  aspect-ratio: 1/1;
  background: #ebe7df;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.product-card:hover img {
  transform: scale(1.025);
}
.product-info {
  padding: 20px;
}
.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-info h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 9px 0 5px;
}
.product-description {
  color: var(--muted);
  font-size: 0.83rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  gap: 10px;
}
.price {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 99px;
  background: #e4eee8;
  color: #315642;
  font-size: 0.7rem;
  font-weight: 700;
}
.badge.out {
  background: #eee4e1;
  color: #854734;
}
.featured-banner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  background: #c9835c;
  border-radius: 26px;
  overflow: hidden;
  color: #211a16;
}
.banner-copy {
  padding: 58px;
}
.banner-copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 5px 0 18px;
}
.banner-art {
  background: linear-gradient(145deg, #e1b08c, #a85432);
  display: grid;
  place-items: center;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.65);
}
.page-hero {
  padding: 70px 0 42px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}
.page-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}
.store-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 10px;
  margin-bottom: 28px;
}
.field-control {
  height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 11px;
  padding: 0 15px;
  outline: none;
}
.search-box {
  position: relative;
}
.search-box i {
  position: absolute;
  left: 15px;
  top: 14px;
  color: var(--muted);
}
.search-box input {
  width: 100%;
  padding-left: 42px;
}
.empty-state,
.loading-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.skeleton {
  height: 430px;
  background: linear-gradient(
    90deg,
    var(--surface),
    var(--surface-2),
    var(--surface)
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}
body.compact .product-grid {
  grid-template-columns: repeat(4, 1fr);
}
body.compact .product-info {
  padding: 15px;
}
.settings-panel,
.cart-panel {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 26px;
  transform: translateX(102%);
  transition: 0.3s;
  overflow: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}
.settings-panel.open,
.cart-panel.open {
  transform: none;
}
.panel-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(20, 18, 15, 0.42);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.panel-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.panel-head h2 {
  font-family: var(--display);
  margin: 0;
}
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.setting-row label {
  font-weight: 700;
  font-size: 0.9rem;
}
.setting-row small {
  display: block;
  color: var(--muted);
  font-weight: 400;
}
.segmented {
  display: flex;
  background: var(--surface-2);
  padding: 3px;
  border-radius: 9px;
}
.segmented button {
  border: 0;
  background: transparent;
  border-radius: 7px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 0.78rem;
}
.segmented button.active {
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}
.cart-item h3 {
  font-size: 0.88rem;
  margin: 0 0 4px;
}
.cart-item button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 24px 0;
}
.cart-note {
  font-size: 0.78rem;
  color: var(--muted);
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.content-card p,
.content-card li {
  color: var(--muted);
}
.content-card.full {
  grid-column: 1/-1;
}
.legal {
  max-width: 820px;
}
.legal h2 {
  font-family: var(--display);
  margin-top: 42px;
}
.legal p,
.legal li {
  color: var(--muted);
}
.login-shell {
  min-height: calc(100vh - 112px);
  display: grid;
  place-items: center;
  padding: 60px 20px;
}
.login-card {
  width: min(460px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 38px;
}
.login-card h1 {
  font-family: var(--display);
  letter-spacing: -0.04em;
  margin: 0;
}
.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 10px;
  padding: 12px;
}
.form-divider {
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  margin: 5px 0;
}
.form-status {
  font-size: 0.82rem;
  min-height: 20px;
  color: var(--accent-dark);
}
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: start;
  padding: 60px 0;
}
.product-gallery {
  position: sticky;
  top: 135px;
  aspect-ratio: 1;
  background: var(--surface-2);
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery i {
  font-size: 5rem;
  color: var(--muted);
}
.product-summary .eyebrow {
  margin-top: 20px;
}
.product-summary h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 0;
}
.product-summary .lead {
  font-size: 1rem;
  color: var(--muted);
}
.product-price {
  font: 800 2rem var(--display);
  margin: 24px 0;
}
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 25px 0;
}
.spec {
  background: var(--surface);
  padding: 15px;
}
.spec small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spec strong {
  font-size: 0.88rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
}
.site-footer {
  margin-top: 50px;
  background: var(--dark);
  color: var(--bg);
  padding: 58px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}
.footer-copy {
  color: color-mix(in srgb, var(--bg) 68%, transparent);
  max-width: 330px;
  font-size: 0.86rem;
}
.footer-col h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: color-mix(in srgb, var(--bg) 72%, transparent);
  margin: 9px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid color-mix(in srgb, var(--bg) 15%, transparent);
  padding-top: 23px;
  margin-top: 45px;
  color: color-mix(in srgb, var(--bg) 58%, transparent);
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 112px;
    left: 20px;
    right: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    gap: 5px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 10px;
  }
  .menu-btn {
    display: grid;
  }
  .hero-shell {
    min-height: 580px;
  }
  .hero-content {
    width: 70%;
    padding: 45px;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-item:nth-child(2) {
    border: 0;
  }
  .category-grid,
  .product-grid,
  body.compact .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
  .featured-banner {
    grid-template-columns: 1fr;
  }
  .banner-art {
    min-height: 220px;
  }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .content-card.full {
    grid-column: auto;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-gallery {
    position: static;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .announcement {
    font-size: 0.72rem;
  }
  .nav-wrap {
    height: 68px;
    gap: 8px;
  }
  .nav-actions .account-link {
    display: none;
  }
  .main-nav {
    top: 102px;
  }
  .hero {
    padding-top: 8px;
  }
  .hero-shell {
    min-height: 610px;
    align-items: flex-end;
    background: linear-gradient(
      150deg,
      #f0e8dc 0 64%,
      #d5c1aa 64% 80%,
      #bc5b32 80%
    );
  }
  .hero-shell:before {
    top: 5%;
    right: -18%;
    width: 78vw;
  }
  .hero-shell:after {
    top: 8%;
    right: 5%;
    font-size: 10rem;
  }
  .hero-content {
    width: 100%;
    padding: 32px 26px;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-copy {
    font-size: 0.93rem;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    justify-content: flex-start;
    padding: 0 6px;
  }
  .section {
    padding: 55px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .category-grid,
  .product-grid,
  body.compact .product-grid {
    grid-template-columns: 1fr;
  }
  .store-toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .search-box {
    grid-column: 1/-1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .featured-banner .banner-copy {
    padding: 35px;
  }
  .page-hero {
    padding: 48px 0 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
[data-motion="off"] * {
  scroll-behavior: auto !important;
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
}
