:root {
  --paper: #fbf8f6;
  --surface: #ffffff;
  --surface-soft: #f6efec;
  --rose: #f6e8ee;
  --berry: #7b294c;
  --berry-dark: #4a2036;
  --berry-deep: #311526;
  --ink: #211a1d;
  --muted: #756d71;
  --line: #e7dfe1;
  --success: #1f7a52;
  --warning: #965d12;
  --danger: #a52f32;
  --shadow: 0 18px 55px rgb(60 28 44 / 10%);
  --shadow-soft: 0 8px 30px rgb(60 28 44 / 8%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --sticky-content-offset: 128px;
  --shell: min(1180px, calc(100% - 40px));
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main [id] {
  scroll-margin-top: var(--sticky-content-offset);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgb(123 41 76 / 35%);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--berry-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

header[data-site-header] {
  position: sticky;
  z-index: 50;
  top: 0;
  isolation: isolate;
  transition: box-shadow .2s ease;
}

header[data-site-header].is-scrolled {
  box-shadow: 0 10px 28px rgb(50 22 36 / 11%);
}

.announcement {
  padding: 8px 20px;
  color: #fff;
  background: var(--berry-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-align: center;
}

.site-header {
  position: relative;
  border-bottom: 1px solid rgb(231 223 225 / 88%);
  background: rgb(251 248 246 / 94%);
  backdrop-filter: blur(18px);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .19em;
  line-height: 1.1;
}

.brand-tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding-block: 28px;
  color: #51494d;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--berry);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--berry);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.icon-button:hover {
  border-color: #c8b3bb;
  color: var(--berry);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-header-link {
  display: flex;
  gap: 0;
  overflow: visible;
  padding-inline: 0;
  transition: width .2s ease, min-width .2s ease, padding .2s ease,
    border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.cart-header-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  transition: max-width .2s ease, opacity .2s ease;
}

.cart-header-link.has-items {
  width: auto;
  min-width: 104px;
  gap: 7px;
  padding-inline: 13px 9px;
  border-color: var(--berry);
  border-radius: 999px;
  color: #fff;
  background: var(--berry);
}

.cart-header-link.has-items:hover {
  border-color: var(--berry-dark);
  color: #fff;
  background: var(--berry-dark);
}

.cart-header-link.has-items .cart-header-label {
  max-width: 58px;
  opacity: 1;
}

.cart-header-link.has-items .action-count {
  position: static;
  min-width: 19px;
  height: 19px;
  border: 0;
  color: var(--berry-dark);
  background: #fff;
}

.action-count {
  position: absolute;
  top: -4px;
  right: -3px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 20px;
  color: #fff;
  background: var(--berry);
  font-size: 9px;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.menu-backdrop {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--berry);
}

.button-primary:hover {
  background: var(--berry-dark);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-light {
  color: var(--berry-dark);
  background: #fff;
}

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .52;
  transform: none;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading p,
.page-intro p {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--muted);
}

.text-link {
  color: var(--berry);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

button.text-link {
  padding: 0;
  border: 0;
  background: transparent;
}

.hero {
  padding: 32px 0 68px;
}

.hero-card {
  position: relative;
  display: grid;
  min-height: 535px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 92% 4%, rgb(255 255 255 / 16%), transparent 24%),
    linear-gradient(130deg, #351426 0%, #6f2145 56%, #8f3659 100%);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
}

.launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 23%);
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.launch-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f6d49f;
  box-shadow: 0 0 0 5px rgb(246 212 159 / 14%);
  content: "";
}

.hero h1 {
  max-width: 690px;
  margin: 24px 0 18px;
  font-family: var(--serif);
  font-size: clamp(43px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 400px;
}

.hero-orbit,
.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
}

.hero-orbit {
  inset: 10% -20% -16% 0;
}

.hero-orbit::before {
  inset: 14%;
  content: "";
}

.hero-orbit::after {
  inset: 32%;
  content: "";
}

.hero-product {
  position: absolute;
  overflow: hidden;
  border: 6px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  background: var(--surface-soft);
  box-shadow: 0 28px 70px rgb(24 8 17 / 35%);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-main {
  right: 10%;
  bottom: 8%;
  width: min(74%, 360px);
  aspect-ratio: 1;
}

.hero-product-small {
  top: 14%;
  left: 4%;
  width: 36%;
  max-width: 170px;
  aspect-ratio: 1;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.trust-item {
  padding: 18px 22px;
  background: var(--surface);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.home-section {
  padding: 70px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .45s ease;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgb(26 12 19 / 78%));
  content: "";
}

.category-card-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #fff;
}

.category-card-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.category-card-copy span {
  display: block;
  margin-top: 4px;
  color: rgb(255 255 255 / 74%);
  font-size: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 16px;
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7e6da;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.025);
}

.wishlist-button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgb(255 255 255 / 91%);
  box-shadow: 0 5px 18px rgb(42 22 31 / 12%);
}

.wishlist-button[aria-pressed="true"] {
  color: #fff;
  background: var(--berry);
}

.wishlist-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.stock-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--danger);
  background: rgb(255 255 255 / 93%);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-meta {
  padding: 13px 3px 0;
}

.product-kicker {
  color: var(--berry);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-title {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-title-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.price {
  font-size: 17px;
  font-weight: 900;
}

.quick-add {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--berry);
  background: var(--surface);
  font-size: 12px;
  font-weight: 850;
}

.quick-add:hover {
  border-color: var(--berry);
  background: var(--rose);
}

.quick-add.is-carted,
.button.is-carted {
  border-color: #c9e3d7;
  color: var(--success);
  background: #edf8f2;
}

.quick-add.is-carted:hover,
.button.is-carted:hover {
  border-color: #add5c3;
  color: #155d3d;
  background: #e2f3ea;
}

.quick-add:disabled {
  color: var(--muted);
  background: #f0eceb;
}

.product-cart-action {
  display: flex;
  min-width: 0;
  justify-content: flex-end;
}

.product-cart-action-dialog {
  width: 100%;
}

.product-cart-action-dialog > .button {
  width: 100%;
}

.product-quantity-control {
  display: inline-grid;
  grid-template-columns: 32px minmax(25px, auto) 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--berry);
  border-radius: 10px;
  color: var(--berry);
  background: var(--surface);
}

.product-cart-action-dialog .product-quantity-control {
  width: 100%;
  grid-template-columns: 42px 1fr 42px;
}

.product-quantity-control button {
  width: 32px;
  height: 34px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  transition: color .15s ease, background .15s ease;
}

.product-cart-action-dialog .product-quantity-control button {
  width: 42px;
  min-height: 44px;
}

.product-quantity-control button:hover:not(:disabled) {
  color: #fff;
  background: var(--berry);
}

.product-quantity-control button:disabled {
  cursor: not-allowed;
  color: #b8afb3;
}

.product-quantity-control span {
  min-width: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.ai-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgb(255 255 255 / 13%), transparent 25%),
    var(--berry-dark);
}

.ai-panel h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.ai-panel p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgb(255 255 255 / 74%);
}

.ai-date {
  display: grid;
  min-width: 170px;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: 50%;
  background: rgb(255 255 255 / 8%);
  text-align: center;
}

.ai-date strong {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.ai-date span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.editorial-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.editorial-card:first-child {
  color: #fff;
  background: var(--ink);
}

.editorial-card h3 {
  max-width: 540px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 500;
  line-height: 1.1;
}

.editorial-card p {
  max-width: 520px;
  margin: 12px 0 22px;
  color: inherit;
  opacity: .72;
}

.about-zeshek {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.about-zeshek h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.about-zeshek-copy {
  align-self: center;
}

.about-zeshek-copy p {
  margin: 0;
  color: var(--muted);
}

.about-zeshek-copy p + p {
  margin-top: 14px;
}

.about-zeshek-copy a {
  color: var(--berry);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgb(123 41 76 / 24%);
  text-underline-offset: 3px;
}

.page-intro {
  padding: 58px 0 30px;
}

.page-intro h1 {
  font-size: clamp(40px, 6vw, 66px);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px;
}

.filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  min-height: 39px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.filter-chip[aria-pressed="true"] {
  border-color: var(--berry);
  color: #fff;
  background: var(--berry);
}

.sort-select,
.field-control {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--surface);
}

.sort-select:focus,
.field-control:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgb(123 41 76 / 10%);
}

.catalog-section {
  padding-bottom: 88px;
}

.catalog-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  padding: 60px 24px;
  border: 1px dashed #d4c4ca;
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: center;
}

.empty-state h2,
.empty-state h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.empty-state p {
  max-width: 480px;
  margin: 10px auto 22px;
  color: var(--muted);
}

.site-footer {
  margin-top: 80px;
  color: #fff;
  background: var(--berry-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
  padding: 58px 0 42px;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: #fff;
}

.footer-brand .brand-tagline,
.footer-copy {
  color: rgb(255 255 255 / 63%);
}

.footer-copy {
  max-width: 330px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-column h2 {
  margin: 0 0 15px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: rgb(255 255 255 / 67%);
  font-size: 13px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgb(255 255 255 / 11%);
  color: rgb(255 255 255 / 52%);
  font-size: 11px;
}

.search-dialog,
.product-dialog {
  width: min(720px, calc(100% - 24px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 30px 90px rgb(24 10 17 / 32%);
}

.product-dialog {
  width: min(900px, calc(100% - 24px));
}

.search-dialog::backdrop,
.product-dialog::backdrop {
  background: rgb(32 15 24 / 58%);
  backdrop-filter: blur(5px);
}

.dialog-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.dialog-top input {
  min-width: 0;
  flex: 1;
  padding: 8px 3px;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.dialog-top > span {
  display: grid;
  place-items: center;
}

.dialog-top > span svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dialog-close {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  font-size: 19px;
}

.search-results {
  max-height: min(64vh, 560px);
  padding: 8px;
  overflow-y: auto;
}

.search-hint {
  padding: 34px 20px;
  color: var(--muted);
  text-align: center;
}

.search-result {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 9px;
  border-radius: 13px;
}

.search-result:hover {
  background: var(--surface-soft);
}

.search-result img {
  width: 68px;
  height: 68px;
  border-radius: 11px;
  object-fit: cover;
}

.search-result strong,
.search-result span {
  display: block;
}

.search-result span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.search-result-price {
  font-weight: 900;
}

.product-dialog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-dialog-image {
  min-height: 430px;
  background: #f7e6da;
}

.product-dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-dialog-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 54px);
}

.product-dialog-copy .dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.product-dialog-copy h2 {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.product-dialog-copy .price {
  margin: 8px 0 18px;
  font-size: 23px;
}

.product-dialog-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.product-dialog-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.toast-region {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: min(360px, calc(100% - 36px));
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 13px 15px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  animation: toast-in .2s ease both;
}

.toast-error {
  background: var(--danger);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 28px;
  padding-bottom: 80px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.card-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.cart-line {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-line:last-child {
  border-bottom: 0;
}

.cart-line img {
  width: 96px;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-line h3 {
  margin: 0;
  font-size: 15px;
}

.cart-line p {
  margin: 4px 0 10px;
  color: var(--muted);
  font-size: 12px;
}

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

.quantity-control button {
  width: 34px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.quantity-control span {
  min-width: 30px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.cart-line-total {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.remove-link {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
}

.summary-card {
  position: sticky;
  top: var(--sticky-content-offset);
  align-self: start;
  padding: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
}

.summary-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.cod-box {
  display: flex;
  gap: 12px;
  margin: 22px 0;
  padding: 15px;
  border: 1px solid #d7e8dd;
  border-radius: 12px;
  color: #1e5d40;
  background: #f0f8f3;
  font-size: 12px;
}

.cod-box strong,
.cod-box span {
  display: block;
}

.cod-box span {
  margin-top: 2px;
  opacity: .78;
}

.summary-card .button {
  width: 100%;
}

.checkout-panel {
  margin-top: 24px;
}

.checkout-form {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-size: 12px;
  font-weight: 800;
}

.field textarea {
  min-height: 86px;
  resize: vertical;
}

.field-help,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.pincode-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.pincode-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.pincode-status.success {
  color: var(--success);
}

.pincode-status.error,
.form-error {
  color: var(--danger);
}

.location-button {
  justify-self: start;
  min-height: 42px;
  padding: 9px 13px;
}

.checkout-submit {
  width: 100%;
  margin-top: 22px;
}

.sign-in-gate {
  padding: 34px 24px;
  text-align: center;
}

.sign-in-gate h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.sign-in-gate p {
  max-width: 500px;
  margin: 10px auto 20px;
  color: var(--muted);
}

.success-panel {
  display: grid;
  justify-items: center;
  padding: 52px 28px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 30px;
}

.success-panel h2 {
  margin: 20px 0 8px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.success-panel p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.order-reference {
  margin: 20px 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 800;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.auth-page {
  min-height: calc(100vh - 300px);
  display: grid;
  place-items: center;
  padding: 70px 20px;
}

.auth-card {
  width: min(460px, 100%);
  padding: clamp(28px, 6vw, 48px);
  text-align: center;
}

.auth-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: var(--ink);
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 700;
}

.auth-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 500;
}

.auth-card > p {
  margin: 12px 0 26px;
  color: var(--muted);
}

.google-button {
  width: 100%;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 6px 20px rgb(50 28 39 / 8%);
}

.google-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  font-size: 11px;
  font-weight: 900;
}

.auth-fine-print {
  margin-top: 20px !important;
  font-size: 11px;
}

.account-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
}

.account-avatar {
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--berry);
  font-size: 21px;
  font-weight: 900;
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-hero h2,
.account-hero p {
  margin: 0;
}

.account-hero p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.account-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding-bottom: 80px;
}

.account-menu {
  display: grid;
  padding: 10px;
}

.account-menu a,
.account-menu button {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.account-menu a:hover,
.account-menu button:hover {
  background: var(--surface-soft);
}

.orders-card {
  min-height: 400px;
}

.orders-list {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.order-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.order-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}

.order-top h3,
.order-top p {
  margin: 0;
}

.order-top p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.status-pill {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--success);
  background: #e9f5ee;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.status-pill-danger {
  color: var(--danger);
  background: #fbebeb;
}

.order-items {
  margin: 14px 0;
  padding: 12px 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.order-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}

.legal-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 26px;
  padding-bottom: 80px;
}

.prose-card {
  padding: clamp(24px, 5vw, 48px);
}

.prose-card h2 {
  margin: 30px 0 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.prose-card h2:first-child {
  margin-top: 0;
}

.prose-card p,
.prose-card li {
  color: #5f575b;
  font-size: 14px;
}

.prose-card a {
  color: var(--berry);
  font-weight: 800;
}

.support-card {
  position: sticky;
  top: var(--sticky-content-offset);
  padding: 24px;
}

.support-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.support-card p {
  color: var(--muted);
  font-size: 13px;
}

.custom-hero {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 50px 20px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgb(255 255 255 / 15%), transparent 25%),
    linear-gradient(130deg, var(--berry-deep), var(--berry));
  text-align: center;
}

.custom-hero-copy {
  max-width: 730px;
}

.custom-hero h1 {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 500;
  line-height: 1;
}

.custom-hero p {
  max-width: 610px;
  margin: 0 auto 25px;
  color: rgb(255 255 255 / 73%);
}

.custom-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.custom-step {
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 16px;
  background: rgb(255 255 255 / 7%);
}

.custom-step strong,
.custom-step span {
  display: block;
}

.custom-step strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.custom-step span {
  margin-top: 5px;
  color: rgb(255 255 255 / 64%);
  font-size: 11px;
}

@media (max-width: 980px) {
  .header-row {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 80;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(330px, 86vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    padding: 94px 22px 28px;
    background: var(--surface);
    box-shadow: 20px 0 60px rgb(35 14 25 / 20%);
    transform: translateX(-110%);
    transition: transform .25s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: block;
    border: 0;
    background: rgb(32 15 24 / 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .menu-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-card {
    grid-template-columns: 1fr .72fr;
  }

  .hero-copy {
    padding: 46px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cart-layout,
  .account-layout,
  .legal-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .summary-card,
  .support-card {
    position: static;
  }

  .account-layout {
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 24px, 1180px);
  }

  .announcement {
    font-size: 10px;
  }

  .header-row {
    min-height: 68px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-tagline {
    display: none;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .cart-header-link.has-items {
    min-width: 88px;
    gap: 5px;
    padding-inline: 9px 7px;
  }

  .cart-header-link.has-items .cart-header-label {
    max-width: 50px;
    font-size: 11px;
  }

  .account-header-link,
  .wishlist-header-link {
    display: none;
  }

  .hero {
    padding: 18px 0 45px;
  }

  .hero-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 34px 24px 25px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-product-main {
    right: 8%;
    width: 62%;
  }

  .hero-product-small {
    top: 7%;
    left: 10%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 50px 0;
  }

  .section-heading {
    align-items: start;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card,
  .category-card img {
    min-height: 220px;
  }

  .category-card-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .category-card-copy strong {
    font-size: 20px;
  }

  .product-grid {
    gap: 24px 10px;
  }

  .product-image-wrap {
    border-radius: 14px;
  }

  .quick-add {
    width: 36px;
    overflow: hidden;
    padding-inline: 0;
    color: transparent;
    white-space: nowrap;
  }

  .quick-add::after {
    color: var(--berry);
    content: "+";
    font-size: 19px;
  }

  .quick-add.is-carted::after {
    color: var(--success);
    content: "✓";
  }

  .quick-add:disabled::after {
    color: var(--muted);
    content: "—";
  }

  .product-quantity-control {
    grid-template-columns: 28px 23px 28px;
  }

  .product-quantity-control button {
    width: 28px;
  }

  .product-cart-action-dialog .product-quantity-control {
    grid-template-columns: 40px 1fr 40px;
  }

  .product-cart-action-dialog .product-quantity-control button {
    width: 40px;
  }

  .ai-panel {
    grid-template-columns: 1fr;
  }

  .ai-date {
    min-width: 0;
    width: 130px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .about-zeshek {
    grid-template-columns: 1fr;
  }

  .page-intro {
    padding-top: 40px;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-select {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .product-dialog-layout {
    grid-template-columns: 1fr;
  }

  .product-dialog-image {
    min-height: 0;
    aspect-ratio: 1 / .88;
  }

  .product-dialog-copy {
    padding: 26px 22px;
  }

  .product-dialog-copy .dialog-close {
    top: -48px;
    color: #fff;
    background: rgb(33 26 29 / 74%);
  }

  .cart-line {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 15px;
  }

  .cart-line img {
    width: 76px;
    height: 84px;
  }

  .cart-line-total {
    grid-column: 2;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .custom-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 410px) {
  .header-actions {
    gap: 5px;
  }

  .category-card,
  .category-card img {
    min-height: 190px;
  }

  .product-title {
    font-size: 13px;
  }

  .price {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
