:root {
  --ink: #111111;
  --coal: #161513;
  --night: #252735;
  --paper: #f7f2ea;
  --shell: #fffaf2;
  --mist: #e7e1d7;
  --gold: #c69b54;
  --rose: #b85f64;
  --teal: #2f7770;
  --fresh: #dae9df;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.18);
  --line: rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.cart-lock {
  overflow: hidden;
}

body.menu-lock {
  overflow: hidden;
}

body.confirmation-lock {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px 32px;
  color: var(--shell);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(247, 242, 234, 0.92);
  box-shadow: 0 10px 35px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.primary-nav,
.header-actions,
.hero-actions,
.filter-group,
.newsletter-row,
.cart-header,
.total-row,
.cart-qty {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--shell);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.site-header[data-elevated="true"] .brand-mark {
  color: var(--shell);
  background: var(--ink);
  border-color: var(--ink);
}

.primary-nav {
  justify-content: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav a {
  opacity: 0.86;
}

.primary-nav a:hover {
  opacity: 1;
}

.menu-toggle,
.mobile-menu,
.mobile-menu-scrim {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  order: -1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
}

.site-header[data-elevated="true"] .menu-toggle {
  border-color: var(--line);
  background: var(--shell);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu-scrim:not([hidden]) {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(17, 17, 17, 0.42);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 41;
  display: grid;
  width: min(84vw, 340px);
  height: 100dvh;
  align-content: start;
  gap: 32px;
  padding: 24px;
  color: var(--shell);
  background: var(--coal);
  box-shadow: -18px 0 45px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header,
.social-links {
  display: flex;
  align-items: center;
}

.mobile-menu-header {
  justify-content: space-between;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu-close {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--shell);
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  gap: 8px;
}

.mobile-menu-links a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--shell);
  font-size: 1.2rem;
  font-weight: 750;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.search-box {
  display: grid;
  grid-template-columns: 22px minmax(110px, 190px);
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header[data-elevated="true"] .search-box {
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.88);
}

.search-box input {
  width: 100%;
  min-width: 0;
  color: inherit;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-box input::placeholder {
  color: currentColor;
  opacity: 0.7;
}

.icon-button {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.site-header[data-elevated="true"] .icon-button,
.cart-header .icon-button {
  border-color: var(--line);
  background: var(--shell);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  color: var(--shell);
  background: var(--rose);
  border: 2px solid var(--shell);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--shell);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.84), rgba(13, 13, 12, 0.52) 42%, rgba(13, 13, 12, 0.1)),
    linear-gradient(0deg, rgba(13, 13, 12, 0.35), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 40px));
  align-self: center;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 5.2rem;
  line-height: 0.94;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: 1.2rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.icon-button:hover,
.filter-button:hover,
.category-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--shell);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.hero .button-primary {
  color: var(--ink);
  background: var(--shell);
}

.button-secondary {
  color: var(--shell);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.ticker span {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 18px;
  background: var(--shell);
  font-weight: 850;
  text-align: center;
}

.shop-section,
.ritual-section,
.story-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.shop-section {
  padding: 86px 0 48px;
}

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

h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.05;
}

.filter-group {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button,
.category-button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--shell);
  font-weight: 850;
}

.filter-button.active,
.category-button.active {
  color: var(--shell);
  background: var(--ink);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 8px;
  background: var(--shell);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}

.product-shot {
  min-height: 0;
  aspect-ratio: 4 / 5;
  background-image: url("assets/collection-grid.png");
  background-repeat: no-repeat;
  background-size: 210% 210%;
}

.product-shot[data-shot="noir"] {
  background-position: left top;
}

.product-shot[data-shot="citrus"] {
  background-position: right top;
}

.product-shot[data-shot="rose"] {
  background-position: left bottom;
}

.product-shot[data-shot="teal"] {
  background-position: right bottom;
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.price-row,
.cart-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.price-row strong,
.cart-price-row strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.was-price {
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: line-through;
}

.discount-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--rose);
  font-size: 0.75rem;
  font-weight: 950;
}

.detail-card .product-info {
  gap: 16px;
  padding: 22px;
}

.product-topline,
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-title {
  min-width: 0;
}

.product-title h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.product-title span,
.scent-notes,
.checkout-note,
.form-status {
  color: rgba(17, 17, 17, 0.64);
}

.product-title span {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  font-weight: 760;
}

.price {
  flex: 0 0 auto;
  font-weight: 950;
}

.category-intro,
.product-tagline {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.55;
}

.category-intro {
  max-width: 560px;
  margin-top: 12px;
}

.product-tagline {
  color: var(--rose);
  font-weight: 900;
}

.scent-notes {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.notes-list,
.notes-list dd {
  margin: 0;
}

.notes-list {
  display: grid;
  gap: 10px;
}

.notes-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.notes-list dt,
.detail-grid strong {
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.notes-list dt {
  color: var(--gold);
}

.notes-list dd {
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.45;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-grid span {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 242, 234, 0.55);
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.35;
}

.detail-grid strong {
  color: var(--ink);
}

.product-bottom {
  padding-top: 4px;
}

.accords {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-grid;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--fresh);
}

.add-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--shell);
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  font-weight: 900;
}

.empty-category,
.empty-search {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--shell);
}

.empty-category h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.empty-category p:last-child,
.empty-search {
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.6;
}

.ritual-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  padding: 44px 0 76px;
}

.ritual-copy {
  align-self: center;
}

.ritual-copy p:last-child,
.story-panel p {
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.ritual-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ritual-list article {
  min-height: 220px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: var(--shell);
}

.ritual-list span {
  color: var(--rose);
  font-weight: 950;
}

.ritual-list h3 {
  margin: 42px 0 10px;
  font-size: 1.35rem;
}

.ritual-list p {
  margin: 0;
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.55;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.story-panel h2 {
  max-width: 620px;
}

.story-panel p {
  max-width: 680px;
}

.newsletter {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.newsletter label {
  font-weight: 950;
}

.newsletter-row {
  gap: 10px;
}

.newsletter input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr;
  pointer-events: none;
  visibility: hidden;
  background: rgba(17, 17, 17, 0);
  opacity: 0;
  transition: opacity 180ms ease, background 180ms ease, visibility 180ms ease;
}

.cart-drawer[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
  background: rgba(17, 17, 17, 0.52);
  opacity: 1;
}

.cart-scrim {
  display: none;
}

.cart-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 22px 26px;
  min-width: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  padding: clamp(16px, 2vw, 32px);
  background: var(--paper);
  box-shadow: none;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 220ms ease, opacity 180ms ease;
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  opacity: 1;
  transform: translateY(0);
}

.cart-header {
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding-bottom: 0;
}

.cart-header h2,
.cart-empty h3 {
  margin: 0;
}

.cart-items {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  align-content: start;
  gap: 12px;
  min-height: 0;
  overflow: auto;
  padding: 4px 4px 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--shell);
}

.cart-thumb {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 8px;
  background-image: url("assets/collection-grid.png");
  background-repeat: no-repeat;
  background-size: 210% 210%;
}

.cart-thumb[data-shot="noir"] {
  background-position: left top;
}

.cart-thumb[data-shot="citrus"] {
  background-position: right top;
}

.cart-thumb[data-shot="rose"] {
  background-position: left bottom;
}

.cart-thumb[data-shot="teal"] {
  background-position: right bottom;
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.cart-line p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.86rem;
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.cart-qty {
  gap: 6px;
}

.qty-button,
.remove-button {
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 950;
}

.qty-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.remove-button {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--rose);
}

.cart-empty {
  display: none;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  max-width: 260px;
  text-align: center;
}

.cart-empty p {
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.55;
}

.cart-empty.active {
  display: block;
}

.cart-footer {
  display: grid;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-panel {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  gap: 24px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.checkout-panel.hidden {
  display: none;
}

.checkout-section {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checkout-section h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.checkout-grid {
  display: grid;
  gap: 12px;
}

.checkout-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.checkout-grid input,
.coupon-row input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--shell);
}

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

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--shell);
  cursor: pointer;
}

.payment-options input {
  accent-color: #b8860b;
}

.upi-payment-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--shell);
}

.upi-payment-panel.hidden {
  display: none;
}

.upi-copy {
  display: grid;
  gap: 4px;
}

.upi-copy span,
.upi-copy small,
.payment-note {
  color: rgba(17, 17, 17, 0.62);
}

.upi-copy strong {
  font-size: 1.08rem;
}

.upi-qr {
  width: 172px;
  height: 172px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.upi-qr.hidden {
  display: none;
}

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

#upi-pay-link[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

.payment-reference {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.payment-reference input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.payment-note {
  min-height: 20px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.12);
  background: #f7f4ef;
}

.cart-footer {
  display: grid;
  gap: 14px;
  position: static;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.1rem;
}

.grand-total {
  font-weight: 800;
}

.discount-row {
  color: var(--teal);
}

.checkout-button {
  width: 100%;
}

.checkout-note {
  min-height: 21px;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.order-confirmation[hidden] {
  display: none;
}

.order-confirmation {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.order-confirmation-scrim {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(5px);
}

.order-confirmation-card {
  position: relative;
  width: min(460px, 100%);
  max-height: min(720px, 92vh);
  overflow: auto;
  padding: 36px 30px 30px;
  border: 1px solid rgba(198, 155, 84, 0.32);
  border-radius: 18px;
  background: var(--shell);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.order-confirmation-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 1.35rem;
}

.confirmation-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 1.8rem;
  font-weight: 800;
}

.order-confirmation-card h2 {
  max-width: 360px;
  margin: 0 auto 12px;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.confirmation-copy {
  margin: 0 auto 24px;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.55;
}

.confirmation-details {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
}

.confirmation-order-id,
.confirmation-total,
.confirmation-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.confirmation-order-id,
.confirmation-total {
  align-items: center;
}

.confirmation-order-id span,
.confirmation-total span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.82rem;
}

.confirmation-items {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.confirmation-item {
  color: var(--ink);
  font-size: 0.9rem;
}

.confirmation-item strong {
  white-space: nowrap;
}

.confirmation-total strong {
  color: var(--teal);
  font-size: 1.15rem;
}

.confirmation-done {
  width: 100%;
  margin-top: 22px;
}

.site-footer {
  margin-top: 96px;
  padding: 64px max(24px, 5vw) 24px;
  color: #f8f2e8;
  background: #171615;
}

.footer-main {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 0.8fr 1.25fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand,
.footer-column,
.footer-note {
  display: grid;
  align-content: start;
  min-width: 0;
}

.footer-brand {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.footer-brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #171615;
  background: #d7b46a;
  font-weight: 950;
}

.footer-brand-block > p,
.footer-note > p:not(.footer-label) {
  max-width: 280px;
  margin: 18px 0 0;
  color: rgba(248, 242, 232, 0.62);
  line-height: 1.7;
}

.footer-column,
.footer-note {
  gap: 12px;
}

.footer-label {
  margin: 0 0 8px;
  color: #d7b46a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-mail {
  width: fit-content;
  color: rgba(248, 242, 232, 0.78);
  transition: color 160ms ease;
  overflow-wrap: anywhere;
}

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

.footer-mail {
  margin-top: 8px;
  color: #fff;
  font-weight: 750;
}

.footer-social {
  display: grid;
  align-content: start;
  gap: 12px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  transition: transform 160ms ease, background 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-caption {
  max-width: 220px;
  margin: 0;
  color: rgba(248, 242, 232, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  max-width: 1180px;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(248, 242, 232, 0.48);
  font-size: 0.78rem;
}

.checkout-note {
  min-height: 21px;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

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

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    order: 3;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 255, 255, 0.12);
  }

  .site-header[data-elevated="true"] .menu-toggle {
    border-color: var(--line);
    background: var(--shell);
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .mobile-menu-scrim:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(17, 17, 17, 0.42);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 41;
    display: grid;
    width: min(84vw, 340px);
    height: 100dvh;
    align-content: start;
    gap: 32px;
    padding: 24px;
    color: var(--shell);
    background: var(--coal);
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.22);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--shell);
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
  }

  .mobile-menu-links {
    display: grid;
    gap: 8px;
  }

  .mobile-menu-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--shell);
    font-size: 1.2rem;
    font-weight: 750;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .ticker,
  .product-grid,
  .ritual-section,
  .story-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ritual-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .search-box {
    grid-template-columns: 20px minmax(72px, 1fr);
    width: min(46vw, 180px);
    min-height: 40px;
  }

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

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 13, 12, 0.86), rgba(13, 13, 12, 0.42)),
      linear-gradient(0deg, rgba(13, 13, 12, 0.44), transparent 52%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .ticker,
  .product-grid,
  .ritual-section,
  .ritual-list,
  .story-section {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 58px;
  }

  .shop-section,
  .ritual-section,
  .story-section {
    width: min(100% - 28px, 1180px);
  }

  .site-footer {
    margin-top: 64px;
    padding: 48px 20px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .shop-section {
    padding-top: 58px;
  }

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

  h2 {
    font-size: 2rem;
  }

  .filter-group {
    justify-content: flex-start;
  }

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

  .ritual-section,
  .story-section {
    padding: 44px 0;
  }

  .ritual-list article {
    min-height: 168px;
  }

  .ritual-list h3 {
    margin-top: 26px;
  }

  .newsletter-row {
    display: grid;
  }

  .cart-drawer {
    grid-template-columns: 1fr;
  }

  .cart-scrim {
    display: none;
  }

  .cart-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding: 16px;
  }

  .cart-items,
  .cart-empty,
  .checkout-panel {
    grid-column: 1;
    grid-row: auto;
  }

  .cart-items {
    max-height: 240px;
    min-height: auto;
    padding-bottom: 4px;
  }

  .checkout-panel {
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy {
    max-width: 260px;
  }
}
.product-image-box{

height:340px;

display:flex;

justify-content:center;

align-items:center;

background:white;

overflow:hidden;

}

.product-image{

width:85%;

height:85%;

object-fit:contain;

transition:.4s;

}

.product-card:hover .product-image{

transform:scale(1.08);

}

.rating{

margin-top:10px;

font-size:14px;

color:#f4b400;

}

.rating span{

color:#777;

font-size:13px;

}

.card-buttons{

display:flex;

gap:12px;

margin-top:20px;

}

.view-button{

display:flex;

justify-content:center;

align-items:center;

flex:1;

height:44px;

border-radius:8px;

border:1px solid black;

text-decoration:none;

font-weight:600;

color:black;

transition:.3s;

}

.view-button:hover{

background:black;

color:white;

}
/* ===== Fragrance Notes ===== */

.section-title{

    margin:45px 0 25px;

    font-size:28px;

}

.note-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.note-card{

    background:white;

    border:1px solid #ece6da;

    border-radius:18px;

    padding:25px;

    transition:.3s;

}

.note-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.note-card span{

    font-size:34px;

}

.note-card h4{

    margin:18px 0 12px;

    color:#C89B3C;

    font-size:15px;

    letter-spacing:1px;

}

.note-card p{

    color:#666;

    line-height:1.8;

}

@media (max-width: 700px) {
  .header-actions {
    min-width: 0;
  }

  .hero-actions .button,
  .newsletter .button {
    width: 100%;
  }

  .filter-group {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-button {
    padding: 0 10px;
    text-align: center;
  }

  .product-image-box {
    height: auto;
    aspect-ratio: 1;
    padding: 18px;
  }

  .product-info {
    padding: 16px;
  }

  .card-buttons,
  .coupon-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .add-button,
  .view-button {
    width: 100%;
  }

  .cart-header {
    align-items: flex-start;
  }

  .cart-controls,
  .total-row {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .header-actions {
    gap: 8px;
  }

  .search-box {
    width: 100%;
  }

  .filter-group {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .cart-panel {
    padding: 12px;
  }
}
