:root {
  --forest: #083f24;
  --deep: #10281d;
  --brass: #bd8128;
  --paper: #fbf7ef;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  background: rgba(255, 253, 249, 0.58);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 40px rgba(16, 40, 29, 0.08);
}

body.nav-open .site-header {
  z-index: 80;
}

.brand-lockup {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.brand-tagline {
  color: var(--deep);
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  max-width: 6.8rem;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  gap: 2.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--deep);
  display: inline-flex;
  padding: 0.65rem 0;
  position: relative;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  background: var(--brass);
  bottom: -0.2rem;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.eyebrow {
  align-items: center;
  color: var(--brass);
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  background: var(--brass);
  content: '';
  display: inline-block;
  height: 1px;
  width: 2rem;
}

.btn-primary,
.btn-outline {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-height: 3.1rem;
  padding: 0.95rem 1.65rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
}

.btn-primary span {
  margin-left: 0.8rem;
}

.btn-outline {
  border: 1px solid var(--brass);
  color: var(--brass);
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.about-cta {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

.rotating-border-btn {
  background: transparent;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.rotating-border-btn::before {
  animation: menu-border-spin 4s linear infinite;
  background: conic-gradient(from 0deg, rgba(189, 129, 40, 0), rgba(189, 129, 40, 0.95), rgba(238, 194, 105, 0.95), rgba(189, 129, 40, 0));
  content: '';
  inset: -2px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.rotating-border-btn::after {
  background: var(--forest);
  border-radius: inherit;
  content: '';
  inset: 2px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.rotating-border-btn span {
  margin-left: 0;
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 90vh;
}

.hero-title-shine {
  position: relative;
}

.hero-title-shine::after {
  animation: title-shine 5s ease-in-out infinite;
  background: linear-gradient(110deg, transparent 0%, transparent 42%, rgba(255, 222, 137, 0.95) 50%, transparent 58%, transparent 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  content: attr(data-text);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

@keyframes title-shine {
  0%,
  78% {
    background-position: -220% 0;
  }

  100% {
    background-position: 220% 0;
  }
}

.why-heading {
  background: #fff;
  border: 1px solid #e9ded0;
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  color: var(--deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  left: 50%;
  line-height: 1;
  padding: 0.8rem 2.25rem 0.75rem;
  position: absolute;
  text-align: center;
  top: -1.35rem;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

.why-panel {
  padding-top: 2.9rem;
}

.feature-item {
  align-items: center;
  border-right: 1px solid #e9ded0;
  display: flex;
  gap: 1rem;
  min-height: 7.4rem;
  padding: 1rem 1.2rem;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item h3 {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-item p {
  color: rgba(16, 40, 29, 0.68);
  font-size: 0.76rem;
  line-height: 1.7;
  margin-top: 0.55rem;
}

.feature-icon {
  flex: 0 0 auto;
  height: 4.2rem;
  object-fit: contain;
  width: 4.2rem;
}

.section-pad {
  padding: 4rem 0;
}

.inner-hero {
  background: linear-gradient(110deg, rgba(251, 247, 239, 0.98), rgba(251, 247, 239, 0.86)), url('../images/hero.jpg') center center / cover no-repeat;
  padding: 11rem 0 5rem;
}

.content-card {
  background: #fffdf9;
  border: 1px solid #e6d9c9;
  border-radius: 0.65rem;
  box-shadow: 0 10px 25px rgba(55, 43, 25, 0.08);
  padding: 2rem;
}

.content-card h2 {
  color: var(--deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
}

.content-card p {
  color: rgba(16, 40, 29, 0.72);
  line-height: 1.8;
  margin-top: 1rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-details div {
  border-top: 1px solid #e6d9c9;
  padding-top: 1rem;
}

.contact-details span {
  color: var(--brass);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details a {
  color: rgba(16, 40, 29, 0.78);
  display: inline-flex;
  line-height: 1.7;
  margin-top: 0.45rem;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--forest);
}

@media (min-width: 640px) {
  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.content-panel {
  background: #fbf7ef;
  border: 1px solid #e6d9c9;
  border-radius: 0.65rem;
  padding: 2rem;
}

.content-panel h2 {
  color: var(--deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
}

.content-panel span {
  border-bottom: 1px solid #e0d0bd;
  color: rgba(16, 40, 29, 0.78);
  display: block;
  padding-bottom: 0.65rem;
}

.product-toolbar {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
}

.product-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.product-category-filter button {
  border: 1px solid #e0d0bd;
  border-radius: 999px;
  color: rgba(16, 40, 29, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
}

.product-category-filter button.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.query-summary {
  align-items: center;
  background: #fbf7ef;
  border: 1px solid #e6d9c9;
  border-radius: 0.65rem;
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}

.query-summary strong {
  color: var(--forest);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.query-summary span {
  color: rgba(16, 40, 29, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalogue-card {
  background: #fffdf9;
  border: 1px solid #e6d9c9;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(55, 43, 25, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.catalogue-card:hover {
  box-shadow: 0 18px 42px rgba(55, 43, 25, 0.14);
  transform: translateY(-3px);
}

.catalogue-image {
  background: #f7f0e7;
  position: relative;
}

.catalogue-image img {
  background: #f7f0e7;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.catalogue-no-image {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #f7f0e7;
  color: rgba(16, 40, 29, 0.48);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
}

.product-status-badge {
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.45rem 0.65rem;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
}

.product-weight-badge {
  align-items: center;
  background: #fffdf9;
  border-radius: 999px;
  bottom: 0;
  color: var(--deep);
  display: inline-flex;
  gap: 0.45rem;
  left: 50%;
  min-width: 7rem;
  padding: 0.42rem 0.8rem;
  position: absolute;
  transform: translate(-50%, 50%);
  z-index: 2;
}

.product-weight-badge span {
  color: rgba(16, 40, 29, 0.52);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-weight-badge strong {
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.catalogue-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.25rem 1.15rem;
}

.catalogue-card h2 {
  color: var(--deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0.6rem 0 0;
  text-align: center;
}

.catalogue-meta {
  align-items: center;
  border-bottom: 1px solid #dcb98e;
  color: rgba(16, 40, 29, 0.68);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 500;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0;
  padding-bottom: 0.75rem;
  text-align: center;
  text-transform: uppercase;
}

.product-category {
  color: #2fa758;
}

.product-spec-grid {
  display: grid;
  gap: 0.75rem 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.85rem;
}

.product-spec-grid div {
  min-width: 0;
}

.product-spec-grid span {
  color: rgba(16, 40, 29, 0.48);
  display: block;
  font-size: 0.76rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.product-spec-grid strong {
  color: var(--deep);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.add-query-btn {
  background: var(--forest);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  text-transform: uppercase;
}

.add-query-btn.is-added,
.add-query-btn:disabled {
  background: rgba(16, 40, 29, 0.28);
  cursor: not-allowed;
}

.product-empty-state {
  background: #fbf7ef;
  border: 1px dashed #d8c7b3;
  border-radius: 0.75rem;
  color: rgba(16, 40, 29, 0.68);
  font-weight: 800;
  margin-top: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}

.query-panel {
  align-items: center;
  background: rgba(12, 25, 18, 0.46);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 80;
}

.query-panel.is-open {
  display: flex;
}

.query-card {
  background: #fbf7ef;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1rem;
  box-shadow: 0 28px 80px rgba(16, 40, 29, 0.22);
  display: grid;
  gap: 2rem;
  max-height: calc(100vh - 2rem);
  max-width: 64rem;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  width: 100%;
}

.query-close {
  border: 1px solid #e6d9c9;
  border-radius: 50%;
  color: var(--deep);
  font-size: 1rem;
  font-weight: 900;
  height: 2.3rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.3rem;
}

.query-bar {
  bottom: 1rem;
  left: 50%;
  max-width: calc(100vw - 2rem);
  position: fixed;
  transform: translateX(-50%);
  width: 28rem;
  z-index: 55;
}

.query-bar button {
  align-items: center;
  background: rgba(8, 63, 36, 0.88);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(16, 40, 29, 0.22);
  color: #fff;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.8rem 1.25rem;
  width: 100%;
}

.query-bar strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.query-bar span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.query-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.query-list li {
  align-items: center;
  background: #fff;
  border: 1px solid #eadcca;
  border-radius: 0.6rem;
  color: rgba(16, 40, 29, 0.78);
  display: grid;
  gap: 1rem;
  grid-template-columns: 4.25rem minmax(0, 1fr) auto;
  padding: 0.85rem 1rem;
}

.query-list img,
.query-no-image {
  aspect-ratio: 1;
  background: #f7f0e7;
  border-radius: 0.5rem;
  height: 4.25rem;
  width: 4.25rem;
}

.query-list img {
  object-fit: cover;
}

.query-no-image {
  align-items: center;
  color: rgba(16, 40, 29, 0.44);
  display: flex;
  font-size: 0.56rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.query-list strong {
  color: var(--deep);
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
}

.query-list span {
  color: rgba(16, 40, 29, 0.58);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.query-list button {
  color: var(--brass);
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.query-form {
  display: grid;
  gap: 1rem;
}

.contact-form-card {
  background: #fffdf9;
  border: 1px solid #e6d9c9;
  border-radius: 0.65rem;
  box-shadow: 0 10px 25px rgba(55, 43, 25, 0.08);
  padding: 2rem;
}

.contact-form-card label span,
.query-form label span {
  color: var(--deep);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.contact-form-card input,
.contact-form-card textarea,
.query-form input,
.query-form textarea {
  background: #fff;
  border: 1px solid #e3d6c5;
  border-radius: 0.65rem;
  outline: 0;
  padding: 0.85rem 1rem;
  width: 100%;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.query-form input:focus,
.query-form textarea:focus {
  border-color: var(--brass);
}

@media (min-width: 1024px) {
  .query-card {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.product-card {
  background: #fffdf9;
  border: 1px solid #e6d9c9;
  border-radius: 0.65rem;
  box-shadow: 0 10px 25px rgba(55, 43, 25, 0.08);
  opacity: 0;
  overflow: hidden;
  transform: translateY(-22px);
  transition: opacity 0.7s ease var(--card-delay, 0ms), transform 0.7s ease var(--card-delay, 0ms), box-shadow 0.2s ease;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.is-visible:hover {
  box-shadow: 0 18px 45px rgba(55, 43, 25, 0.16);
  transform: translateY(-4px);
}

.product-range-strip {
  align-items: center;
  border: 1px solid #e6d9c9;
  border-radius: 0.65rem;
  display: grid;
  gap: 1rem;
  margin: 1.5rem auto 0;
  max-width: 58rem;
  padding: 1rem;
  text-align: left;
}

.product-range-strip h3 {
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-range-strip p {
  color: rgba(16, 40, 29, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 0.3rem;
}

.product-range-strip p span {
  font-weight: 900;
}

.format-raw {
  color: var(--brass);
}

.format-baked {
  color: var(--forest);
}

.format-filling {
  color: rgba(16, 40, 29, 0.86);
}

.product-range-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-range-chips span {
  border: 1px solid rgba(189, 129, 40, 0.28);
  border-radius: 999px;
  color: rgba(16, 40, 29, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.42rem 0.65rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .product-range-strip {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.customer-section {
  margin-top: 4.5rem;
  overflow: hidden;
}

.customer-grid {
  display: grid;
  gap: 1.35rem 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 2rem auto 0;
  max-width: 64rem;
}

.customer-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: center;
  transition: transform 0.2s ease;
}

.customer-card:hover {
  transform: translateY(-2px);
}

.customer-card img {
  aspect-ratio: 1;
  display: block;
  height: 3.15rem;
  object-fit: cover;
  width: 3.15rem;
}

.customer-card h3 {
  color: var(--deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-top: 0.8rem;
  max-width: 6.5rem;
  min-height: 1.85rem;
  overflow: hidden;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .customer-grid {
    gap: 1.65rem 1rem;
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .customer-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .customer-card img {
    height: 3.6rem;
    width: 3.6rem;
  }
}

.stat {
  border-right: 1px solid #e5d8ca;
  padding-right: 1rem;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--forest);
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.stat span {
  color: rgba(16, 40, 29, 0.7);
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.4rem;
}

.quality-item {
  align-items: center;
  background: #fbf7ef;
  border: 1px solid rgba(220, 185, 142, 0.68);
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: center;
  min-height: 5.25rem;
  padding: 0.85rem 0.65rem;
  text-align: center;
}

.quality-icon {
  display: block;
  height: 2rem;
  object-fit: contain;
  width: 2rem;
}

.quality-item p {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

footer a {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 0.92rem;
  margin-top: 0.9rem;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.8;
}

.social {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: inline-flex;
  height: 2.35rem;
  justify-content: center;
  margin-top: 0;
  width: 2.35rem;
}

.policy-panel {
  align-items: center;
  background: rgba(12, 25, 18, 0.5);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 90;
}

.policy-panel.is-open {
  display: flex;
}

.policy-card {
  background: #fffdf9;
  border: 1px solid #e6d9c9;
  border-radius: 1rem;
  box-shadow: 0 28px 80px rgba(16, 40, 29, 0.24);
  max-height: calc(100vh - 2rem);
  max-width: 42rem;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  width: 100%;
}

.policy-close {
  border: 1px solid #e6d9c9;
  border-radius: 50%;
  color: var(--deep);
  font-size: 1rem;
  font-weight: 900;
  height: 2.3rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.3rem;
}

.policy-content {
  display: none;
}

.policy-content.is-active {
  display: block;
}

.policy-content p:not(.eyebrow) {
  color: rgba(16, 40, 29, 0.74);
  line-height: 1.8;
  margin-top: 1rem;
}

.floating-actions {
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: fixed;
  right: 1.25rem;
  z-index: 50;
}

.whatsapp-button {
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  padding: 0.9rem 1.15rem;
  text-transform: uppercase;
}

.whatsapp-button {
  background: #1f9b55;
}

.form-note {
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 1.25rem;
  text-align: center;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(16, 40, 29, 0.1);
  color: var(--deep);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  isolation: isolate;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 2.35rem;
  overflow: hidden;
  padding: 0.72rem 1.05rem 0.68rem;
  position: relative;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 90;
}

.nav-toggle::before {
  animation: menu-border-spin 3.5s linear 2;
  background: conic-gradient(from 0deg, rgba(189, 129, 40, 0), rgba(189, 129, 40, 0.95), rgba(238, 194, 105, 0.95), rgba(189, 129, 40, 0));
  content: '';
  inset: -2px;
  pointer-events: none;
  position: absolute;
}

.nav-toggle::after {
  background: #fffdf9;
  border-radius: inherit;
  content: '';
  inset: 2px;
  pointer-events: none;
  position: absolute;
}

.nav-toggle::before {
  z-index: 0;
}

.nav-toggle::after {
  z-index: 1;
}

.nav-toggle-label {
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.nav-toggle:hover {
  box-shadow: 0 14px 30px rgba(16, 40, 29, 0.16);
  transform: translateY(-1px);
}

@keyframes menu-border-spin {
  to {
    transform: rotate(1turn);
  }
}

.nav-close {
  align-self: flex-end;
  background: #fff;
  border: 1px solid rgba(189, 129, 40, 0.28);
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  min-height: 2.15rem;
  padding: 0.55rem 0.85rem;
  text-transform: uppercase;
}

.mobile-nav-backdrop {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.18s ease;
  z-index: 60;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .brand-tagline {
    display: inline-flex;
    font-size: 0.78rem;
    max-width: none;
  }

  .main-nav {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 1023px) {
  .site-header {
    background: rgba(255, 253, 249, 0.58);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 40px rgba(16, 40, 29, 0.08);
  }

  .main-nav {
    align-items: stretch;
    background: #fffdf9;
    border: 1px solid rgba(189, 129, 40, 0.18);
    border-radius: 1.35rem;
    box-shadow: 0 30px 90px rgba(16, 40, 29, 0.28);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    left: 50%;
    max-width: calc(100vw - 2rem);
    opacity: 0;
    padding: 1rem;
    pointer-events: none;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -46%) scale(0.96);
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: 21rem;
    z-index: 70;
  }

  .main-nav::before {
    background: var(--brass);
    border-radius: 999px;
    content: '';
    height: 3px;
    margin: 0.15rem auto 0.4rem;
    width: 2.6rem;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 5%) scale(1);
  }

  .main-nav a {
    background: #fff;
    border: 1px solid rgba(8, 63, 36, 0.07);
    border-radius: 0.9rem;
    justify-content: center;
    padding: 1rem;
    width: 100%;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .nav-close {
    align-self: center;
    font-size: 0.62rem;
    margin-top: 0.55rem;
    min-height: 1.9rem;
    order: 10;
    padding: 0.45rem 0.72rem;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid #e9ded0;
  }

  .why-heading {
    font-size: 1.2rem;
    padding: 0.72rem 1.5rem 0.68rem;
    top: -1.15rem;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 640px) {
  .product-inner-hero {
    display: none;
  }

  .product-catalogue-section {
    padding-bottom: 3rem;
    padding-top: calc(2.35rem + 30px);
  }

  .product-toolbar {
    margin-bottom: 0.35rem;
  }

  .product-category-filter {
    margin-top: 1.35rem;
  }

  [data-product-grid] {
    margin-top: 1.65rem;
  }

  .catalogue-image img {
    aspect-ratio: 1 / 1;
  }

  .catalogue-no-image {
    aspect-ratio: 1 / 1;
  }

  .brand-lockup {
    gap: 0.7rem;
    min-width: 0;
  }

  .brand-tagline {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    max-width: 5.8rem;
  }

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

  .why-heading {
    font-size: 1rem;
    padding: 0.65rem 1.1rem 0.6rem;
    top: -1rem;
  }

  .query-card {
    padding: 1.5rem;
  }

  .query-list li {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .query-list img,
  .query-no-image {
    height: 3.5rem;
    width: 3.5rem;
  }

  .query-list button {
    grid-column: 2;
    justify-self: start;
  }

  .query-bar button {
    align-items: center;
    flex-direction: column;
    gap: 0.15rem;
    min-height: 3.75rem;
  }

  .floating-actions {
    bottom: 0.8rem;
    right: 0.8rem;
  }

  .product-weight-badge {
    gap: 0.32rem;
    min-width: 5.9rem;
    padding: 0.36rem 0.6rem;
  }

  .product-weight-badge span {
    font-size: 0.58rem;
  }

  .product-weight-badge strong {
    font-size: 0.78rem;
  }

  .product-spec-grid {
    gap: 0.6rem;
    margin-top: 0.75rem;
  }

  .product-spec-grid span {
    font-size: 0.68rem;
  }

  .product-spec-grid strong {
    font-size: 0.82rem;
  }

  .add-query-btn {
    font-size: 0.68rem;
    margin-top: 0.85rem;
    padding: 0.65rem 0.75rem;
  }
}
