:root {
  --ink: #161712;
  --soft-ink: #4c5146;
  --paper: #f6f4ee;
  --panel: #fffdf8;
  --line: #ded9cc;
  --lime: #c9f24b;
  --olive: #43551b;
  --rose: #ff7a6b;
  --blue: #bfe2ff;
  --shadow: 0 22px 70px rgba(22, 23, 18, 0.14);
  --soft-shadow: 0 16px 42px rgba(22, 23, 18, 0.09);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --display-font: "Inter Tight", sans-serif;
  --body-font: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 8% 6%, rgba(201, 242, 75, 0.28), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(191, 226, 255, 0.34), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.site-header {
  align-items: center;
  background: rgba(246, 244, 238, 0.92);
  border: 1px solid rgba(222, 217, 204, 0.84);
  border-radius: 999px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 14px clamp(12px, 3vw, 34px) 0;
  padding: 10px 14px;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand img {
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.nav-links { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.nav-links a { border: 1px solid transparent; background: transparent; border-radius: 999px; padding: 9px 12px; }
.nav-links a:hover { background: var(--lime); border-color: var(--lime); }
.insta-link { background: var(--ink) !important; border-color: var(--ink) !important; color: #fff; }
.wish-count { background: var(--lime); border-radius: 999px; display: inline-block; min-width: 22px; padding: 1px 6px; text-align: center; }

.drop-banner {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: flex;
  gap: 14px;
  justify-content: center;
  overflow: hidden;
  margin: 14px clamp(12px, 3vw, 34px) 0;
  padding: 10px 16px;
}
.drop-banner span {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 900;
  padding-right: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.drop-banner span:first-child { color: var(--lime); }
.drop-banner span:last-child { border-right: 0; }

.hero {
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  min-height: calc(100vh - 142px);
  padding: clamp(28px, 5vw, 70px) clamp(16px, 4vw, 52px);
}

.hero-copy {
  align-self: center;
  max-width: 660px;
}

.eyebrow {
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: var(--display-font);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  max-width: 780px;
}

.hero-text {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin: 0;
}

.hero-actions,
.card-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.primary-button,
.ghost-button,
.search-form button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  text-transform: uppercase;
}

.primary-button { background: var(--ink); color: #fff; }
.primary-button:hover { background: var(--olive); border-color: var(--olive); }
.primary-button.muted { background: var(--olive); border-color: var(--olive); }
.ghost-button { background: var(--panel); color: var(--ink); }
.ghost-button:hover { background: var(--lime); border-color: var(--lime); }
.ghost-button.light { background: transparent; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.hero-proof span {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
}

.hero-showcase {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 190px);
  min-height: 560px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid rgba(222, 217, 204, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.showcase-main,
.showcase-stack a {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}
.showcase-main img,
.showcase-stack img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}
.showcase-main:hover img,
.showcase-stack a:hover img { transform: scale(1.045); }
.showcase-main span,
.showcase-stack span {
  background: rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  position: absolute;
}
.showcase-stack {
  display: grid;
  gap: 14px;
  grid-template-rows: repeat(3, 1fr);
}

.collection-note {
  align-items: end;
  background:
    linear-gradient(90deg, var(--lime), var(--blue) 55%, #ffe6dc);
  border: 1px solid rgba(22, 23, 18, 0.1);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  margin: 0 clamp(16px, 4vw, 52px);
  padding: clamp(28px, 5vw, 56px);
}
.collection-note h2 {
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.collection-note p {
  color: #293023;
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.how-it-works {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  background: transparent;
  padding: clamp(16px, 4vw, 52px);
}
.how-it-works article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 138px;
  padding: clamp(18px, 3vw, 30px);
}
.how-it-works span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}
.how-it-works h3 {
  display: inline;
  font-size: 22px;
  margin: 0 0 0 10px;
}
.how-it-works p {
  color: var(--soft-ink);
  line-height: 1.5;
  margin: 14px 0 0;
}

.catalog-shell {
  padding: clamp(38px, 6vw, 78px) clamp(16px, 4vw, 52px);
}
.catalog-shell.compact { padding-top: 34px; }
.section-heading {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  margin-bottom: 20px;
}
.section-heading h2,
.wishlist-hero h1,
.detail-copy h1 {
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
}

.search-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  padding: 5px;
  box-shadow: 0 10px 30px rgba(22, 23, 18, 0.05);
}
.search-form input,
.notify-form input {
  background: transparent;
  border: 0;
  color: var(--ink);
  flex: 1;
  min-height: 42px;
  min-width: 0;
  padding: 10px 12px;
}
.search-form button { min-height: 42px; }

.catalog-toolbar {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 28px;
}
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-pills a,
.mini-wishlist {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
  text-transform: uppercase;
}
.category-pills a.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.mini-wishlist { white-space: nowrap; }

.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  overflow: hidden;
  padding: 8px;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.product-card:hover {
  border-color: rgba(67, 85, 27, 0.26);
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}
.product-image {
  aspect-ratio: 4 / 5;
  background: #ebe7dc;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  position: relative;
}
.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}
.product-card:hover .product-image img { transform: scale(1.04); }
.status {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  left: 10px;
  padding: 6px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
}
.status-out_of_stock { background: #ffe5df; }
.status-coming_soon { background: var(--blue); }
.product-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}
.product-meta {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.category-label {
  color: var(--olive);
  font-size: 10px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}
.product-body h3 {
  font-size: 20px;
  line-height: 1.12;
  margin: 0;
}
.price,
.detail-price {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  white-space: nowrap;
}
.description {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}
.card-actions { margin-top: 4px; }
.card-actions form { flex: 1; }
.card-actions a,
.card-actions button { width: 100%; }

.detail-layout {
  display: grid;
  gap: clamp(24px, 5vw, 66px);
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.8fr);
  padding: clamp(30px, 5vw, 72px) clamp(16px, 4vw, 52px);
}
.detail-image {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  position: relative;
}
.detail-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.detail-copy { align-self: center; }
.detail-copy p { color: var(--soft-ink); line-height: 1.7; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tag-row span {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}
.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.notify-form input {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.wishlist-hero {
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: #fff;
  margin: clamp(16px, 4vw, 52px);
  padding: clamp(42px, 7vw, 88px) clamp(16px, 4vw, 52px);
}
.wishlist-hero .eyebrow { color: var(--lime); }
.wishlist-hero p {
  color: #eeeade;
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
}
.empty-state {
  background: var(--panel);
  border: 1px dashed #bdb6a7;
  border-radius: var(--radius-md);
  grid-column: 1 / -1;
  padding: 44px;
  text-align: center;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 26px clamp(16px, 4vw, 52px);
}
.site-footer p {
  color: #d9d5c8;
  margin: 6px 0 0;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header {
    border-radius: var(--radius-md);
  }
  .hero,
  .collection-note,
  .detail-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .showcase-main { aspect-ratio: 1; }
  .showcase-stack {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }
  .showcase-stack a { aspect-ratio: 1; }
  .how-it-works { grid-template-columns: 1fr; }
  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .category-pills {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .category-pills a {
    white-space: nowrap;
  }
  .collection-note {
    margin-inline: clamp(12px, 3vw, 24px);
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 12% 2%, rgba(201, 242, 75, 0.22), transparent 24%),
      var(--paper);
  }
  .site-header {
    gap: 12px;
    margin: 10px 10px 0;
    padding: 10px;
    position: relative;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    height: 40px;
    width: 40px;
  }
  .drop-banner {
    border-radius: var(--radius-md);
    justify-content: flex-start;
    margin: 10px 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drop-banner span {
    font-size: 11px;
  }
  .nav-links { width: 100%; }
  .nav-links a {
    flex: 1 1 calc(50% - 6px);
    padding: 10px 8px;
    text-align: center;
  }
  .hero {
    gap: 22px;
    padding: 28px 12px 34px;
  }
  .hero-copy {
    max-width: none;
  }
  .showcase-stack { display: none; }
  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.98;
    margin-bottom: 16px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .hero-proof {
    gap: 6px;
    margin-top: 18px;
  }
  .hero-proof span {
    font-size: 11px;
    padding: 7px 9px;
  }
  .hero-showcase {
    border-radius: var(--radius-md);
    padding: 8px;
  }
  .showcase-main {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }
  .showcase-main span {
    border-radius: 14px;
    bottom: 10px;
    font-size: 12px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
  .collection-note {
    border-radius: var(--radius-md);
    margin: 0 10px;
    padding: 24px 18px;
  }
  .collection-note h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1;
  }
  .collection-note p {
    font-size: 15px;
  }
  .how-it-works {
    gap: 10px;
    padding: 20px 10px;
  }
  .how-it-works article {
    border-radius: 16px;
    min-height: auto;
    padding: 18px;
  }
  .how-it-works h3 {
    font-size: 20px;
  }
  .catalog-shell {
    padding: 30px 10px;
  }
  .section-heading {
    gap: 16px;
  }
  .section-heading h2,
  .wishlist-hero h1,
  .detail-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1;
  }
  .search-form {
    border-radius: var(--radius-md);
    flex-direction: column;
  }
  .search-form button { width: 100%; }
  .catalog-toolbar {
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
  }
  .mini-wishlist {
    text-align: center;
    width: 100%;
  }
  .product-grid { grid-template-columns: 1fr; }
  .product-card {
    border-radius: 18px;
    padding: 7px;
  }
  .product-image {
    aspect-ratio: 1 / 1.08;
    border-radius: 14px;
  }
  .product-body {
    padding: 13px 10px 10px;
  }
  .product-meta {
    align-items: flex-start;
  }
  .product-body h3 {
    font-size: 19px;
  }
  .card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .detail-layout {
    gap: 22px;
    padding: 22px 10px 34px;
  }
  .detail-image {
    border-radius: 18px;
  }
  .detail-copy {
    padding-inline: 4px;
  }
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .notify-form {
    display: grid;
    grid-template-columns: 1fr;
  }
  .notify-form input {
    border-radius: var(--radius-md);
  }
  .wishlist-hero {
    margin: 12px;
    padding: 34px 18px;
    border-radius: var(--radius-md);
  }
  .wishlist-hero p {
    font-size: 15px;
  }
  .empty-state {
    padding: 28px 16px;
  }
  .site-footer {
    padding: 24px 16px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 36px;
  }
  .brand {
    font-size: 20px;
  }
  .nav-links {
    font-size: 11px;
  }
  .card-actions {
    grid-template-columns: 1fr;
  }
}
