@import "tailwindcss";

:root {
  --ink: #daddbd;
  --ink-soft: #cbd1a9;
  --panel: #eef0df;
  --panel-2: #c4cba7;
  --olive: #7b8058;
  --pistachio: #aebd86;
  --pistachio-deep: #5f6e43;
  --khaki: #746d58;
  --cream: #1b2018;
  --muted: #5c6453;
  --line: rgba(27, 32, 24, 0.15);
  --line-strong: rgba(65, 78, 49, 0.34);
  --danger: #a36d62;
  --radius: 1.75rem;
  --shadow: 0 2rem 6rem rgba(47, 54, 35, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(244, 242, 219, 0.82), transparent 34rem),
    radial-gradient(circle at 88% 38%, rgba(126, 136, 88, 0.18), transparent 42rem),
    var(--ink);
  color: var(--cream);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body:has(.modal-backdrop) {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

main {
  min-height: 100vh;
  overflow: clip;
  position: relative;
}

.ambient {
  border: 1px solid rgba(184, 201, 157, 0.12);
  border-radius: 999px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.ambient-one {
  height: 42rem;
  left: -28rem;
  top: 60rem;
  width: 42rem;
}

.ambient-two {
  height: 30rem;
  right: -17rem;
  top: 155rem;
  width: 30rem;
}

.announcement {
  align-items: center;
  background: var(--pistachio);
  color: #171b15;
  display: flex;
  font-size: 0.76rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: -0.02em;
  min-height: 2.5rem;
  padding: 0.45rem clamp(1rem, 4vw, 4.5rem);
  position: relative;
  z-index: 30;
}

.announcement p {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  margin: 0;
}

.announcement a {
  direction: ltr;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(23, 26, 17, 0.9);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 6.4rem;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  position: sticky;
  top: 0;
  z-index: 25;
}

.brand {
  align-items: center;
  background: rgba(238, 232, 215, 0.94);
  border: 1px solid rgba(238, 232, 215, 0.22);
  border-radius: 0.6rem;
  display: inline-flex;
  justify-self: start;
  min-width: max-content;
  padding: 0.42rem 0.7rem;
}

.brand-logo,
.brand-image {
  display: block;
  height: auto;
  width: clamp(8.8rem, 13vw, 11.8rem);
}

.nav {
  align-items: center;
  display: flex;
  font-size: 0.8rem;
  gap: clamp(1rem, 2.3vw, 2.2rem);
  justify-content: center;
}

.nav a {
  color: #c5c8c2;
  position: relative;
  transition: color 180ms ease;
}

.nav a::after {
  background: var(--pistachio);
  bottom: -0.5rem;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--cream);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  justify-self: end;
}

.text-action,
.cart-action,
.menu-action {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.text-action {
  color: var(--muted);
  font-size: 0.75rem;
}

.cart-action {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  font-size: 0.75rem;
  gap: 0.5rem;
  padding: 0.48rem 0.65rem 0.48rem 0.48rem;
}

.cart-action span {
  align-items: center;
  background: var(--pistachio);
  border-radius: 999px;
  color: #171b15;
  display: flex;
  height: 1.75rem;
  justify-content: center;
  width: 1.75rem;
}

.menu-action {
  display: none;
  height: 2.5rem;
  place-content: center;
  width: 2.5rem;
}

.menu-action span {
  background: var(--cream);
  display: block;
  height: 1px;
  margin: 0.35rem auto;
  width: 1.35rem;
}

.search-panel {
  align-items: center;
  background: rgba(41, 46, 30, 0.98);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.7rem;
  grid-template-columns: auto 1fr auto;
  left: clamp(1rem, 4vw, 4.5rem);
  padding: 1rem 1.15rem;
  position: absolute;
  right: clamp(1rem, 4vw, 4.5rem);
  top: calc(100% + 0.6rem);
}

.search-panel label {
  color: var(--khaki);
  font-size: 0.78rem;
}

.search-panel input,
.inline-search input {
  background: transparent;
  border: 0;
  color: var(--cream);
  outline: 0;
}

.search-panel input {
  border-right: 1px solid var(--line);
  font-size: 1rem;
  padding: 0.4rem 1rem;
}

.search-panel a {
  background: var(--pistachio);
  border-radius: 999px;
  color: #171b15;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: min(78vh, 52rem);
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 43rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.2rem) clamp(3rem, 6vw, 5rem) 0;
}

.eyebrow {
  align-items: center;
  color: var(--pistachio);
  display: flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 2.1rem;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.contact-section h2 {
  font-family: Tahoma, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: -0.075em;
}

.hero h1 {
  font-size: clamp(3rem, 6.8vw, 6.7rem);
  line-height: 1.07;
  margin: 0;
  max-width: 10ch;
}

.hero-lead {
  color: #aeb2aa;
  font-size: clamp(0.93rem, 1.2vw, 1.05rem);
  line-height: 2;
  margin: 1.8rem 0 0;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.45rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--pistachio);
  color: #171b15;
}

.button.secondary {
  border-color: var(--line-strong);
  color: var(--cream);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hero-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.hero-links button,
.hero-links a {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--khaki);
  cursor: pointer;
  font-size: 0.7rem;
  padding: 0 0 0.25rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 3.5rem 0 0;
}

.hero-stats div {
  border-right: 1px solid var(--line);
  padding-right: 1rem;
}

.hero-stats dt {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 0.66rem;
  margin: 0.2rem 0 0;
}

.hero-visual {
  border-left: 1px solid var(--line);
  min-height: 43rem;
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  object-fit: cover;
  object-position: center 47%;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.1), rgba(11, 13, 12, 0.4)),
    linear-gradient(0deg, rgba(9, 10, 9, 0.62), transparent 38%);
  inset: 0;
  position: absolute;
}

.hero-product {
  bottom: 2.2rem;
  left: 2.2rem;
  position: absolute;
  text-align: left;
}

.hero-product p {
  color: var(--pistachio);
  font-size: 0.66rem;
  margin: 0 0 0.3rem;
}

.hero-product strong,
.hero-product span {
  display: block;
}

.hero-product strong {
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-product span {
  color: #c7c7c0;
  font-size: 0.68rem;
  margin-top: 0.2rem;
}

.hero-index {
  color: rgba(238, 233, 221, 0.72);
  font-family: Georgia, serif;
  font-size: 0.75rem;
  left: 1.8rem;
  position: absolute;
  top: 1.6rem;
}

.category-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  position: relative;
  z-index: 1;
}

.category-strip button {
  align-items: center;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  font-size: 0.8rem;
  gap: 0.85rem;
  justify-content: center;
  min-height: 6.4rem;
  padding: 1rem;
  transition: background 180ms ease;
}

.category-strip button:first-child {
  border-right: 1px solid var(--line);
}

.category-strip button:hover,
.category-strip button:focus-visible {
  background: rgba(184, 201, 157, 0.08);
}

.category-strip span {
  color: var(--pistachio-deep);
  font-family: Georgia, serif;
  font-size: 0.65rem;
}

.shop-section,
.branches-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 4.5rem);
  position: relative;
  z-index: 1;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2.8rem;
}

.section-heading h2,
.story-copy h2,
.contact-section h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  line-height: 1.2;
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
  max-width: 26rem;
}

.shop-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 2rem;
  min-height: 5.2rem;
  padding: 0.8rem 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.category-pills button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  padding: 0.52rem 0.85rem;
}

.category-pills button.active {
  background: rgba(184, 201, 157, 0.1);
  border-color: var(--line-strong);
  color: var(--pistachio);
}

.inline-search {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 0.75rem;
  min-width: min(100%, 21rem);
  padding: 0.6rem 1rem;
}

.inline-search span {
  color: var(--pistachio);
  font-size: 0.66rem;
}

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

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

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-width: 0;
  overflow: hidden;
}

.product-image {
  aspect-ratio: 0.82;
  background: #222719;
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.product-image::after {
  background: linear-gradient(0deg, rgba(11, 13, 12, 0.65), transparent 38%);
  content: "";
  inset: 0;
  position: absolute;
}

.product-image img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.28, 1);
}

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

.availability,
.quick-view {
  border-radius: 999px;
  font-size: 0.62rem;
  position: absolute;
  z-index: 2;
}

.availability {
  background: rgba(11, 13, 12, 0.84);
  border: 1px solid rgba(238, 233, 221, 0.15);
  right: 0.9rem;
  top: 0.9rem;
  padding: 0.35rem 0.6rem;
}

.quick-view {
  background: var(--pistachio);
  bottom: 1rem;
  color: #171b15;
  left: 50%;
  opacity: 0;
  padding: 0.45rem 0.8rem;
  transform: translate(-50%, 0.6rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.product-card:hover .quick-view,
.product-image:focus-visible .quick-view {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-info {
  padding: 1.35rem;
}

.product-info > p {
  color: var(--pistachio);
  font-size: 0.64rem;
  margin: 0;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0.25rem 0 0.95rem;
}

.product-meta {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.product-meta span {
  color: var(--muted);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.63rem;
}

.product-meta strong {
  font-size: 0.75rem;
  font-weight: 500;
}

.product-actions {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.15rem;
}

.product-actions button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.63rem;
  min-height: 2.6rem;
}

.product-actions button:first-child {
  border-color: var(--line-strong);
}

.product-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.empty-result {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 19rem;
}

.empty-result button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--pistachio);
  color: var(--pistachio);
  cursor: pointer;
}

.brand-story {
  background: var(--pistachio);
  color: #171b15;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 48rem;
  position: relative;
  z-index: 1;
}

.story-image {
  min-height: 48rem;
  overflow: hidden;
  position: relative;
}

.story-image img {
  filter: saturate(0.72);
  object-fit: cover;
}

.story-copy {
  align-self: center;
  max-width: 48rem;
  padding: clamp(4rem, 8vw, 8rem);
}

.story-copy .eyebrow {
  color: #4c5b3d;
}

.story-copy > p:not(.eyebrow) {
  color: #3e4538;
  line-height: 2;
  margin: 1.6rem 0;
  max-width: 42rem;
}

.story-copy ul {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.story-copy li {
  border-bottom: 1px solid rgba(23, 27, 21, 0.18);
  padding-bottom: 0.65rem;
}

.story-copy a {
  border-bottom: 1px solid #171b15;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding-bottom: 0.25rem;
}

.branches-section {
  background: #202417;
}

.branch-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.branch-card {
  aspect-ratio: 0.76;
  min-height: 34rem;
  overflow: hidden;
  position: relative;
}

.branch-image {
  inset: 0;
  position: absolute;
}

.branch-image img {
  filter: saturate(0.74);
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.branch-overlay {
  background: linear-gradient(0deg, rgba(9, 11, 9, 0.94), transparent 65%);
  bottom: 0;
  left: 0;
  padding: 5.5rem 1.5rem 1.5rem;
  position: absolute;
  right: 0;
}

.branch-overlay > p {
  color: var(--pistachio);
  font-size: 0.62rem;
  margin: 0;
}

.branch-overlay h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.2rem 0 0.5rem;
}

.branch-overlay address {
  color: #c4c8c0;
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.8;
  min-height: 2.6rem;
}

.branch-overlay > div {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  margin-top: 1rem;
}

.branch-overlay a {
  direction: ltr;
  font-size: 0.7rem;
}

.branch-overlay button {
  background: rgba(184, 201, 157, 0.14);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.62rem;
  padding: 0.45rem 0.7rem;
}

.contact-section {
  align-items: start;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 4vw, 4.5rem);
}

.contact-cards {
  border-top: 1px solid var(--line);
  display: grid;
}

.contact-cards a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 6rem 1fr auto;
  min-height: 5.8rem;
  transition: background 180ms ease;
}

.contact-cards a:hover {
  background: rgba(184, 201, 157, 0.04);
}

.contact-cards span {
  color: var(--pistachio);
  font-size: 0.65rem;
}

.contact-cards strong {
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-cards small {
  color: var(--muted);
  font-size: 0.62rem;
}

footer {
  background: #13160f;
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 4vw, 4.5rem) 1.5rem;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1.25fr;
}

.footer-main > p {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0;
  max-width: 22rem;
}

.footer-links {
  display: grid;
  font-size: 0.72rem;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}

.footer-links a {
  color: #c4c7c1;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #777d75;
  display: flex;
  font-size: 0.58rem;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.5rem;
}

.floating-contact {
  align-items: center;
  bottom: 1.1rem;
  display: flex;
  gap: 0.35rem;
  left: 1.1rem;
  position: fixed;
  z-index: 35;
}

.floating-contact > button,
.floating-contact > a {
  backdrop-filter: blur(16px);
  background: rgba(42, 47, 30, 0.94);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.62rem;
  padding: 0.6rem 0.85rem;
}

.floating-contact > a {
  background: var(--pistachio);
  color: #171b15;
  font-weight: 700;
}

.contact-popover {
  background: rgba(42, 47, 30, 0.99);
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  bottom: calc(100% + 0.6rem);
  box-shadow: var(--shadow);
  display: grid;
  left: 0;
  min-width: 15.5rem;
  overflow: hidden;
  position: absolute;
}

.contact-popover strong {
  border-bottom: 1px solid var(--line);
  color: var(--pistachio);
  font-size: 0.68rem;
  padding: 0.8rem 1rem;
}

.contact-popover a {
  border-bottom: 1px solid var(--line);
  font-size: 0.66rem;
  padding: 0.7rem 1rem;
}

.contact-popover a:last-child {
  border-bottom: 0;
}

.modal-backdrop {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(4, 5, 4, 0.78);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 60;
}

.product-modal {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  max-height: calc(100vh - 2rem);
  max-width: 64rem;
  overflow: auto;
  position: relative;
  width: 100%;
}

.modal-close {
  align-items: center;
  background: rgba(11, 13, 12, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  height: 2.5rem;
  justify-content: center;
  left: 0.8rem;
  position: absolute;
  top: 0.8rem;
  width: 2.5rem;
  z-index: 2;
}

.modal-image {
  min-height: 41rem;
  overflow: hidden;
  position: relative;
}

.modal-image img {
  object-fit: cover;
}

.modal-content {
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.modal-content h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.2;
  margin: 0;
}

.modal-code {
  color: var(--muted);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  text-align: right;
}

.modal-price {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin: 1.2rem 0;
}

.modal-content dl {
  border-top: 1px solid var(--line);
  margin: 1.5rem 0;
}

.modal-content dl div {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.modal-content dt {
  color: var(--muted);
}

.modal-content dd {
  margin: 0;
}

.unavailable-notice {
  background: rgba(163, 109, 98, 0.1);
  border: 1px solid rgba(163, 109, 98, 0.3);
  border-radius: 1rem;
  display: grid;
  gap: 0.25rem;
  margin: 1.5rem 0;
  padding: 0.9rem 1rem;
}

.unavailable-notice strong {
  font-size: 0.72rem;
}

.unavailable-notice span {
  color: var(--muted);
  font-size: 0.64rem;
}

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

  .nav {
    background: rgba(11, 13, 12, 0.98);
    border: 1px solid var(--line);
    border-radius: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    left: 1rem;
    padding: 1.25rem;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
  }

  .nav.open {
    display: flex;
  }

  .menu-action {
    display: block;
  }

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

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

  .hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
  }

  .category-strip {
    overflow-x: auto;
  }

  .category-strip button {
    min-width: 10rem;
  }
}

@media (max-width: 820px) {
  .announcement span {
    display: none;
  }

  .announcement {
    justify-content: center;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }

  .hero-visual {
    border: 0;
    min-height: 65vh;
  }

  .hero-copy {
    padding: 3.5rem 1rem 4rem;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .category-strip {
    padding: 0;
  }

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

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

  .inline-search {
    width: 100%;
  }

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

  .story-image {
    min-height: 65vh;
  }

  .story-copy {
    padding: 4rem 1rem;
  }

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

  .branch-card {
    aspect-ratio: 0.9;
    min-height: 31rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .modal-image {
    min-height: 45vh;
  }

  .contact-cards a {
    grid-template-columns: 5rem 1fr;
  }

  .contact-cards small {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 5.4rem;
    padding: 0 0.8rem;
  }

  .brand {
    padding: 0.34rem 0.48rem;
  }

  .brand-logo,
  .brand-image {
    width: 7.2rem;
  }

  .text-action {
    display: none;
  }

  .cart-action {
    border: 0;
    padding: 0;
  }

  .cart-action span {
    height: 1.55rem;
    width: 1.55rem;
  }

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

  .search-panel label {
    display: none;
  }

  .hero-visual {
    min-height: 34rem;
  }

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

  .hero-stats {
    gap: 0.8rem;
    justify-content: space-between;
  }

  .hero-stats div {
    padding-right: 0.55rem;
  }

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

  .shop-section,
  .branches-section {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .product-image {
    aspect-ratio: 0.92;
  }

  .section-heading {
    gap: 1rem;
  }

  .category-pills {
    flex-wrap: nowrap;
    margin-left: -0.8rem;
    margin-right: -0.8rem;
    overflow-x: auto;
    padding: 0 0.8rem 0.5rem;
  }

  .category-pills button {
    white-space: nowrap;
  }

  .branch-card {
    min-height: 29rem;
  }

  .contact-section {
    gap: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .floating-contact {
    bottom: 0.65rem;
    left: 0.65rem;
  }

  .floating-contact > button,
  .floating-contact > a {
    font-size: 0.55rem;
    padding: 0.55rem 0.68rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-modal {
    border-radius: 1rem;
  }

  .modal-content {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* WordPress and WooCommerce integration */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--cream);
  clip: auto !important;
  clip-path: none;
  color: var(--ink);
  display: block;
  height: auto;
  right: 1rem;
  padding: 0.8rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 99999;
}

.site-header .nav ul,
.site-footer ul {
  align-items: center;
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .nav li,
.site-footer li {
  margin: 0;
}

.custom-logo-link {
  align-items: center;
  display: inline-flex;
  max-width: 12rem;
}

.brand-image {
  height: auto;
  max-height: 4rem;
  max-width: 100%;
  object-fit: contain;
}

.search-panel form {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  width: 100%;
}

.search-panel button,
.catalog-filters button,
.section-more {
  background: var(--pistachio);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.8rem 1.3rem;
}

.cart-action {
  text-decoration: none;
}

.hero-links a,
.hero-links span {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.category-strip a {
  align-items: center;
  color: inherit;
  display: flex;
  flex: 1;
  gap: 0.75rem;
  justify-content: center;
  min-height: 6rem;
  text-decoration: none;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.map-links a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.62rem;
  padding: 0.35rem 0.55rem;
}

.product-card > a {
  text-decoration: none;
}

.product-info h3 a,
.product-info p a {
  color: inherit;
  text-decoration: none;
}

.product-info p a:hover,
.product-info h3 a:hover {
  color: var(--pistachio);
}

.availability.available {
  background: var(--pistachio);
  color: var(--ink);
}

.price-updating {
  color: var(--khaki);
  font-size: 0.85rem;
  font-weight: 600;
}

.product-actions a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.section-more {
  display: table;
  margin: 2.5rem auto 0;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.content-shell,
.woocommerce-shell {
  margin: 0 auto;
  max-width: 1440px;
  min-height: 65vh;
  padding: clamp(3rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.content-card {
  background:
    linear-gradient(145deg, rgba(200, 216, 168, 0.06), transparent 45%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(1.4rem, 4vw, 4rem);
}

.content-card h1,
.woocommerce-shell h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.2;
  margin: 0 0 2rem;
}

.entry-content {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2.15;
}

.entry-content h2,
.entry-content h3 {
  color: var(--cream);
  line-height: 1.55;
  margin-top: 2.5rem;
}

.woocommerce-shell .woocommerce {
  color: var(--cream);
}

.woocommerce-shell .products {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.woocommerce-shell .products::before,
.woocommerce-shell .products::after {
  display: none;
}

.woocommerce-shell .products .product {
  background: var(--panel);
  border: 1px solid var(--line);
  float: none !important;
  margin: 0 !important;
  padding: 0 0 1rem !important;
  width: auto !important;
}

.woocommerce-shell .products .product > a:first-child {
  color: inherit;
  display: block;
  text-decoration: none;
}

.woocommerce-shell .products .product img {
  aspect-ratio: 0.86;
  margin: 0 !important;
  object-fit: cover;
  width: 100%;
}

.woocommerce-shell .products .woocommerce-loop-product__title,
.woocommerce-shell .products .price,
.woocommerce-shell .products .stock,
.woocommerce-shell .products .product-actions {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.woocommerce-shell .products .woocommerce-loop-product__title {
  color: var(--cream);
  font-size: 1.05rem !important;
}

.woocommerce-shell .products .price {
  color: var(--pistachio) !important;
}

.catalog-filters {
  align-items: end;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 2rem 0;
  padding: 1rem;
}

.catalog-filters label {
  display: grid;
  gap: 0.45rem;
}

.catalog-filters label > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.catalog-filters input,
.catalog-filters select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
  color: var(--cream);
  font: inherit;
  min-height: 3rem;
  padding: 0.65rem 0.8rem;
  width: 100%;
}

.catalog-filters option,
.woocommerce select option {
  background: #111411;
}

.catalog-filters .filter-checkbox {
  align-items: center;
  display: flex;
}

.catalog-filters .filter-checkbox input {
  min-height: auto;
  width: auto;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  background: var(--pistachio) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  font-family: inherit !important;
  padding: 0.85rem 1.25rem !important;
}

.woocommerce .button:disabled,
.woocommerce button.button:disabled {
  opacity: 0.45;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--panel) !important;
  border-color: var(--pistachio) !important;
  color: var(--cream) !important;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  background: var(--panel);
  border-color: var(--line) !important;
  border-radius: 1rem !important;
  color: var(--cream);
  padding: 1rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--line) !important;
}

.woocommerce form .form-row label {
  color: var(--muted);
}

.woocommerce .quantity .qty {
  width: 5rem;
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images img {
  border-radius: 1rem;
}

.woocommerce div.product .product_title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--pistachio);
}

.arianoor-specs {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.arianoor-specs h2 {
  font-size: 1.1rem;
}

.arianoor-specs dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.arianoor-specs dl div {
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.arianoor-specs dt {
  color: var(--muted);
}

.arianoor-specs dd {
  margin: 0;
}

.product-extra-media {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.product-extra-media a {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream);
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}

.arianoor-wishlist-button {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.75rem;
  margin: 0.65rem 1rem 0;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
}

.arianoor-wishlist-button.active,
.arianoor-wishlist-button:hover {
  border-color: var(--pistachio);
  color: var(--pistachio);
}

.arianoor-delivery-method .woocommerce-input-wrapper {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.arianoor-delivery-method label {
  align-items: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  display: flex !important;
  gap: 0.6rem;
  padding: 0.8rem;
}

.arianoor-checkout-consents {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.arianoor-checkout-consents a {
  color: var(--pistachio);
}

.stock.in-stock {
  color: var(--pistachio) !important;
}

.stock.out-of-stock {
  color: #c98686 !important;
}

.contact-popover[hidden],
.search-panel[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .woocommerce-shell .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header .nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

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

  .category-strip a {
    justify-content: flex-start;
    min-height: 4rem;
    padding: 0 1rem;
  }

  .woocommerce-shell .products,
  .catalog-filters {
    grid-template-columns: 1fr;
  }
}

/* Light pistachio palette — based on the supplied interior reference */
.site-header {
  background: rgba(238, 240, 218, 0.94);
}

.brand {
  background: rgba(250, 247, 237, 0.92);
  border-color: rgba(27, 32, 24, 0.12);
}

.nav a,
.site-header .nav a {
  color: #46503d;
}

.nav a:hover,
.nav a:focus-visible,
.site-header .nav a:hover {
  color: #11160f;
}

.search-panel {
  background: rgba(242, 243, 224, 0.98);
}

.hero-lead {
  color: var(--muted);
}

.availability {
  color: #f5f1e4;
}

.hero-product strong {
  color: #f5f1e4;
}

.branches-section {
  background: #c8ceae;
}

.branch-overlay {
  color: #f5f1e4;
}

.branch-overlay address {
  color: #d9ddcf;
}

.branch-overlay .map-links a {
  color: #f5f1e4;
}

footer {
  background: #26301e;
  color: #f4f0e4;
}

footer .footer-main > p,
footer .footer-links a {
  color: #d8ddcb;
}

footer .footer-bottom {
  border-color: rgba(244, 240, 228, 0.16);
  color: #aeb7a1;
}

.floating-contact > button,
.contact-popover {
  background: rgba(42, 52, 32, 0.96);
  color: #f4f0e4;
}

.contact-popover {
  border-color: rgba(174, 189, 134, 0.48);
}

.modal-close {
  color: #f4f0e4;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: rgba(255, 255, 255, 0.42);
  color: var(--cream);
}

@media (max-width: 1100px) {
  .nav {
    background: rgba(238, 240, 218, 0.98);
  }
}
