:root {
  --doszr-black: #000;
  --doszr-white: #fff;
  --doszr-bg: #fff;
  --doszr-text: #000;
  --doszr-muted: #666;
  --doszr-border: #e8e8e8;
  --doszr-soft: #f6f6f6;
  --doszr-radius-sm: 10px;
  --doszr-radius-md: 18px;
  --doszr-radius-lg: 28px;
  --doszr-max-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--doszr-bg);
  color: var(--doszr-text);
  font-family: "Nunito Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #000; outline-offset: 3px; }

.container {
  width: min(var(--doszr-max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--doszr-border);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 148px; }
.main-nav, .header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a, .cart-link {
  font-weight: 800;
  font-size: .95rem;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.count {
  min-width: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #000;
  font-size: .78rem;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-button span {
  width: 18px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--doszr-border);
  background: #fff;
}
.mobile-menu-nav {
  width: min(var(--doszr-max-width), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 8px;
  padding: 18px 0 24px;
}
.mobile-menu-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--doszr-border);
  font-weight: 900;
  font-size: 1.2rem;
}

.home-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--doszr-border);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
h1, h2, h3 {
  font-family: Fredoka, "Nunito Sans", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: .98;
}
h1 {
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 7.4rem);
  max-width: 850px;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}
.hero-subline {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--doszr-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid #000;
  border-radius: 999px;
  font-weight: 900;
}
.button-primary {
  background: #000;
  color: #fff;
}
.button-secondary {
  background: #fff;
  color: #000;
}
.hero-mark {
  border: 2px solid #000;
  border-radius: var(--doszr-radius-lg);
  padding: 44px;
  transform: rotate(-2deg);
}

.home-section, .product-page {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section-heading {
  margin-bottom: 28px;
}
.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.section-heading.split > a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.collection-card {
  min-height: 132px;
  padding: 24px;
  display: flex;
  align-items: end;
  border: 2px solid #000;
  border-radius: var(--doszr-radius-md);
  background: #fff;
  font-family: Fredoka, "Nunito Sans", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  display: block;
  border: 1px solid var(--doszr-border);
  border-radius: var(--doszr-radius-md);
  overflow: hidden;
  background: #fff;
}
.product-card:hover {
  text-decoration: none;
  border-color: #000;
}
.product-card .image {
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  background: var(--doszr-soft);
}
.product-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-meta,
.product-card .title,
.product-card .price {
  padding: 0 16px;
}
.product-card-meta {
  padding-top: 15px;
  padding-bottom: 17px;
}
.product-card .title {
  padding-top: 15px;
  font-weight: 900;
}
.product-card .price,
.price {
  padding-bottom: 17px;
  color: var(--doszr-muted);
  font-weight: 800;
}
.brand-strip {
  padding: 28px 0;
  background: #000;
  color: #fff;
  font-family: Fredoka, "Nunito Sans", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.6rem);
  font-weight: 700;
  text-align: center;
}
.about-strip {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--doszr-soft);
}
.about-strip-inner {
  max-width: 760px;
  text-align: center;
}
.about-strip p {
  color: var(--doszr-muted);
  font-size: 1.15rem;
}

.page-hero {
  padding: clamp(48px, 8vw, 88px) 0;
  border-bottom: 1px solid var(--doszr-border);
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 6rem); }
.page-hero p { max-width: 620px; color: var(--doszr-muted); font-size: 1.15rem; }
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pill-row a {
  padding: 10px 16px;
  border: 1px solid #000;
  border-radius: 999px;
  font-weight: 900;
}
.empty-state,
.empty-cart {
  padding: 42px;
  border: 1px solid var(--doszr-border);
  border-radius: var(--doszr-radius-md);
  text-align: center;
  color: var(--doszr-muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--doszr-muted);
  font-size: .92rem;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: start;
}
.main-image {
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  border-radius: var(--doszr-radius-lg);
  background: var(--doszr-soft);
  overflow: hidden;
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  border: 1px solid var(--doszr-border);
  border-radius: var(--doszr-radius-sm);
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.thumb.active { border-color: #000; }
.buy-box {
  position: sticky;
  top: 110px;
}
.buy-box h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.product-price {
  margin-top: 18px;
  font-size: 1.35rem;
  font-weight: 900;
}
.product-note { color: var(--doszr-muted); }
.product-form {
  margin-top: 26px;
  display: grid;
  gap: 22px;
}
.variant-group {
  margin: 0;
  padding: 0;
  border: 0;
}
.variant-group legend,
.qty-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}
.variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.variant-option {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}
.variant-option.active {
  background: #000;
  color: #fff;
}
.qty-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}
.qty-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #000;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
}
.product-details {
  margin-top: 28px;
  border-top: 1px solid var(--doszr-border);
}
.product-details details {
  border-bottom: 1px solid var(--doszr-border);
  padding: 16px 0;
}
.product-details summary {
  cursor: pointer;
  font-weight: 900;
}
.product-details p { color: var(--doszr-muted); }

.site-footer {
  background: #000;
  color: #fff;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 32px;
}
.footer-brand p {
  max-width: 280px;
  color: #ddd;
}
.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}
.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid #333;
  color: #ccc;
}

.flash {
  width: min(var(--doszr-max-width), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 16px;
  border-radius: var(--doszr-radius-sm);
  border: 1px solid #000;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.total { font-weight: 900; font-size: 1.15rem; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px; border-bottom: 1px solid var(--doszr-border); text-align: left; }
input, textarea, select {
  width: 100%;
  border: 1px solid #000;
  border-radius: var(--doszr-radius-sm);
  padding: 12px 14px;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-menu.is-open { display: block; }
  .hero-inner,
  .product-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .home-hero { min-height: auto; padding: 56px 0; }
  .hero-mark { padding: 24px; }
  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .buy-box { position: static; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--doszr-max-width)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 124px; }
  .header-actions { gap: 12px; }
  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }
  .qty-row {
    grid-template-columns: 1fr;
  }
}
