@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #181a17;
  --muted: #686b62;
  --paper: #f4f2ec;
  --paper-deep: #e7e2d8;
  --line: rgba(24, 26, 23, 0.14);
  --acid: #d8ff55;
  --orange: #ff6a3d;
  --navy: #142134;
  --white: #fffef9;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
}

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

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

.announcement {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 24px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-detail {
  color: #a8ab9f;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy);
  color: var(--white);
}

.brand {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.cart-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

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

.icon-button svg,
.search-field svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.cart-trigger {
  gap: 8px;
  padding: 9px 0 9px 14px;
  font-size: 13px;
}

.cart-count {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100vh - 110px));
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(64px, 8vw, 130px) clamp(28px, 6vw, 96px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 255, 85, 0.1);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #7b7e72;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 6.6vw, 108px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.hero-intro {
  max-width: 520px;
  margin: 34px 0 38px;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 22px;
  border: 0;
  border-radius: 2px;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover {
  background: #e4ff87;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent 42%),
    #ceda56;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 33, 52, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 52, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(20, 33, 52, 0.22);
  border-radius: 50%;
}

.orbit-one {
  top: 10%;
  right: -16%;
  width: 77%;
  aspect-ratio: 1;
}

.orbit-two {
  bottom: -28%;
  left: -10%;
  width: 70%;
  aspect-ratio: 1;
}

.hero-object-main {
  position: absolute;
  top: 18%;
  left: 22%;
  width: 38%;
  transform: rotate(-8deg);
  filter: drop-shadow(30px 44px 26px rgba(20, 33, 52, 0.22));
}

.bottle-cap {
  width: 42%;
  height: 56px;
  margin: 0 auto -3px;
  border-radius: 14px 14px 7px 7px;
  background:
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(255, 255, 255, 0.14) 8px 9px),
    var(--ink);
}

.bottle-body {
  display: flex;
  height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 28% 28% 24% 24% / 12% 12% 9% 9%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 20% 75%, rgba(0, 0, 0, 0.12)),
    #f26b45;
  color: var(--navy);
}

.bottle-body span {
  font-family: "Manrope", sans-serif;
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.1em;
}

.bottle-body small {
  margin-top: 50px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-object-card {
  position: absolute;
  right: 7%;
  bottom: 17%;
  display: flex;
  width: 235px;
  height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(20, 33, 52, 0.18);
  background: #f4f0e8;
  box-shadow: 22px 30px 48px rgba(20, 33, 52, 0.18);
  color: var(--navy);
  transform: rotate(7deg);
}

.hero-object-card > span,
.hero-object-card small {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.hero-object-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-note {
  position: absolute;
  bottom: 6%;
  left: 6%;
  display: flex;
  width: 210px;
  align-items: flex-start;
  gap: 16px;
  color: rgba(20, 33, 52, 0.75);
  font-size: 12px;
  line-height: 1.55;
}

.hero-note span {
  font-size: 10px;
  font-weight: 700;
}

.hero-note p {
  margin: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip article {
  display: flex;
  min-height: 154px;
  align-items: center;
  gap: 20px;
  padding: 30px clamp(12px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.proof-strip article:first-child {
  padding-left: 0;
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-number {
  color: #a1a398;
  font-size: 10px;
  font-weight: 700;
}

.proof-strip h2 {
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.shop-section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 64px);
  background: var(--paper);
}

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

.section-heading h2,
.story-copy h2,
.architecture-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-button {
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  transition: border 160ms ease, background 160ms ease;
}

.filter-button:hover {
  border-color: var(--line);
}

.filter-button.active {
  background: var(--ink);
  color: var(--white);
}

.search-field {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ink);
}

.search-field svg {
  width: 17px;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}

.search-field input::placeholder {
  color: #8e9187;
}

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

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

.product-image {
  position: relative;
  aspect-ratio: 0.84;
  overflow: hidden;
  background: #dfddd5;
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 9px;
  background: rgba(255, 254, 249, 0.9);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-view-trigger {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quick-add {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 0;
  background: rgba(24, 26, 23, 0.94);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--navy);
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 12px;
  padding-top: 16px;
}

.product-category {
  grid-column: 1 / -1;
  margin: 0;
  color: #85887d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-price {
  font-size: 13px;
  font-weight: 500;
}

.product-skeleton {
  aspect-ratio: 0.84;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent),
    #dfddd5;
  background-size: 220% 100%;
  animation: skeleton 1.2s infinite linear;
}

@keyframes skeleton {
  to {
    background-position: -220% 0;
  }
}

.empty-state {
  padding: 70px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state p {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.empty-state button,
.cart-empty button {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.story-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  background: var(--white);
}

.story-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  background: #ff714b;
}

.story-visual::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 26, 23, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 26, 23, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.story-visual > span {
  position: relative;
  z-index: 3;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5.3vw, 86px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.84;
  text-align: center;
}

.story-shape {
  position: absolute;
  z-index: 2;
  border: 2px solid rgba(20, 33, 52, 0.75);
}

.story-shape-one {
  width: 47%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-35%, -30%);
}

.story-shape-two {
  width: 42%;
  height: 62%;
  transform: translate(45%, 20%) rotate(24deg);
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px);
}

.story-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.story-copy > p + p:not(.eyebrow) {
  margin-top: 14px;
}

.story-copy > a {
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}

.story-copy > a span {
  margin-left: 24px;
}

.architecture-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 120px);
  padding: clamp(90px, 11vw, 170px) clamp(20px, 6vw, 96px);
  background: var(--navy);
  color: var(--white);
}

.architecture-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.architecture-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.architecture-flow article {
  display: flex;
  width: 180px;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.architecture-flow article:last-child {
  border-color: rgba(216, 255, 85, 0.55);
  background: rgba(216, 255, 85, 0.06);
}

.architecture-flow span {
  color: var(--acid);
  font-size: 10px;
}

.architecture-flow strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.architecture-flow small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.4;
}

.architecture-flow i {
  color: var(--acid);
  font-style: normal;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 140px;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: var(--white);
}

footer p,
footer > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

footer > span {
  justify-self: end;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(12, 15, 17, 0.52);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  display: flex;
  width: min(500px, 100%);
  height: 100dvh;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.18);
  transform: translateX(104%);
  transition: transform 350ms cubic-bezier(0.22, 0.7, 0.22, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.close-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 92px;
  height: 110px;
  object-fit: cover;
  background: var(--paper-deep);
}

.cart-item h3 {
  margin: 4px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.cart-item small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
}

.quantity-control button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 22px;
  text-align: center;
  font-size: 11px;
}

.cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 12px;
}

.remove-item {
  border: 0;
  background: transparent;
  color: #8e9187;
  cursor: pointer;
  font-size: 10px;
  text-decoration: underline;
}

.cart-empty {
  display: grid;
  flex: 1;
  place-content: center;
  justify-items: center;
  padding: 50px 20px;
  text-align: center;
}

.cart-empty > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #a4a69c;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.cart-empty h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.cart-empty p {
  max-width: 280px;
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cart-summary {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.cart-summary > div strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.cart-summary p,
.cart-summary small {
  color: var(--muted);
  font-size: 10px;
}

.checkout-button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 10px;
  padding: 0 20px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.modal-backdrop {
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop[hidden] {
  display: none;
}

.product-modal {
  position: relative;
  display: grid;
  width: min(900px, 100%);
  max-height: calc(100dvh - 40px);
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  background: var(--white);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  background: rgba(255, 254, 249, 0.88);
}

.modal-image {
  min-height: 570px;
  background: var(--paper-deep);
}

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

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 80px);
}

.modal-copy h2 {
  margin: 12px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.modal-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.modal-footer > strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.source-product-link {
  align-self: flex-start;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
}

.source-product-link span {
  margin-left: 12px;
}

.dark-button {
  min-width: 150px;
  background: var(--ink);
  color: var(--white);
}

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

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 15px 18px;
  background: var(--ink);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  color: var(--white);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-object-main {
    left: 16%;
    width: 44%;
  }

  .hero-object-card {
    right: 4%;
    width: 190px;
    height: 255px;
  }

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

  .architecture-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .announcement-detail,
  .desktop-nav,
  .icon-button {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

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

  .hero-copy {
    min-height: 650px;
  }

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

  .hero-object-main {
    top: 15%;
    left: 20%;
    width: 39%;
  }

  .bottle-body {
    height: 330px;
  }

  .hero-object-card {
    right: 8%;
    bottom: 15%;
    width: 180px;
    height: 235px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .proof-strip article:first-child {
    min-height: 115px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
    min-width: 0;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding: 80px 28px;
  }

  .architecture-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .architecture-flow article {
    width: 100%;
    min-height: 140px;
  }

  .architecture-flow i {
    align-self: center;
    transform: rotate(90deg);
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  footer > span {
    justify-self: start;
  }

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

  .modal-image {
    min-height: 390px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

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

  .quick-add {
    opacity: 1;
    transform: none;
  }

  .filter-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-object-main {
    left: 8%;
    width: 48%;
  }

  .hero-object-card {
    right: 4%;
  }

  .cart-drawer {
    padding: 24px 20px;
  }
}

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