:root {
  --teal: #0f8b81;
  --teal-mid: #08756d;
  --teal-dark: #034943;
  --teal-deep: #012d2a;
  --mist: #eaf6f4;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --ink: #1f302d;
  --muted: #657571;
  --white: #ffffff;
  --line: rgba(15, 139, 129, 0.24);
  --gold: #d8c48c;
  --shadow: 0 22px 55px rgba(0, 55, 50, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 1em; height: 1em; fill: currentColor; }

.container {
  width: min(1190px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 24px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  padding: 12px 0;
  background: rgba(2, 49, 46, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  min-width: 236px;
}
.brand img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 2px;
}
.brand-wordmark strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 33px;
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.brand-wordmark small {
  display: block;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .48em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: 12px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:first-child::after { transform: scaleX(1); }
.header-cta {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease;
}
.header-cta svg { width: 18px; height: 18px; }
.header-cta:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  padding: 11px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 620px;
  color: var(--white);
  background: #013633;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(../assets/hero-main-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 24, 23, .72) 0%, rgba(1, 24, 23, .40) 34%, rgba(1, 24, 23, .16) 62%, rgba(1, 24, 23, .08) 100%),
    linear-gradient(180deg, rgba(1, 24, 23, .22) 0%, rgba(1, 24, 23, .08) 46%, rgba(1, 24, 23, .24) 100%);
}
.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 30% 42%, rgba(104, 255, 228, .06), transparent 20%),
    linear-gradient(108deg, transparent 36%, rgba(255,255,255,.07) 50%, transparent 64%);
  mix-blend-mode: screen;
  opacity: .7;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 3;
  min-height: 620px;
  padding-top: 132px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  gap: 40px;
}
.hero-copy {
  max-width: 720px;
  padding-right: 32px;
}
.hero-stage {
  display: none;
}
.eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.eyebrow.teal { color: var(--teal); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .035em;
}
h1 {
  font-size: clamp(58px, 5.3vw, 78px);
  line-height: 1.04;
  margin-bottom: 18px;
  max-width: 720px;
  text-transform: none;
}
h1 span {
  display: block;
  white-space: nowrap;
}
h2 {
  color: var(--ink);
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: .95;
  margin-bottom: 20px;
}
.hero-text {
  width: min(520px, 100%);
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.72;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, #2abcb2, var(--teal));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0,70,64,.24);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.78);
  color: var(--white);
  background: rgba(255,255,255,.02);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-dark {
  background: #051d1b;
  color: var(--gold);
  min-height: 48px;
  padding-inline: 24px;
}
.signature {
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(247,245,241,.96) 0%, rgba(247,245,241,.88) 34%, rgba(247,245,241,.38) 58%, rgba(247,245,241,.08) 100%),
    url(../assets/our-signature-bg.webp);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(15,139,129,.12);
}
.signature-grid {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 700px);
  align-items: center;
  justify-content: start;
  gap: 0;
  padding-block: 52px;
}
.signature-grid-text {
  text-align: left;
}
.section-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #54635f;
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 26px;
}
.collection {
  padding: 30px 0 56px;
  background: linear-gradient(180deg, #edf2f2 0%, #f5f8f8 100%);
}
.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
  text-align: center;
}
.title-line span {
  width: 78px;
  height: 1px;
  background: rgba(15,139,129,.58);
}
.title-line p {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.collection-card {
  overflow: hidden;
  background: #fbfbf9;
  border: 1px solid rgba(15,139,129,.18);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,65,60,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.collection-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(0,65,60,.16);
}
.collection-card > img {
  width: 100%;
  height: 154px;
  object-fit: cover;
}
.card-body {
  min-height: 190px;
  padding: 18px 18px 20px;
  position: relative;
}
.card-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,139,129,.34);
  border-radius: 999px;
  color: var(--teal);
  font-size: 14px;
}
.collection-card h3 {
  margin: 0 0 8px 38px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.collection-card p {
  min-height: 78px;
  margin: 0 0 14px 38px;
  color: #5c6b67;
  font-size: 12px;
  line-height: 1.55;
}
.collection-card a {
  margin-left: 38px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.collection-card a span {
  display: inline-block;
  transition: transform .25s ease;
}
.collection-card a:hover span { transform: translateX(5px); }

.why {
  padding: 20px 0 28px;
  color: var(--white);
  background: linear-gradient(135deg, #014b49 0%, #015f5a 100%);
}
.title-line-light span { background: rgba(255,255,255,.56); }
.title-line-light p { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.why-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.34);
}
.why-item:last-child { border-right: 0; }
.why-item svg {
  width: 42px;
  height: 42px;
  color: rgba(255,255,255,.92);
}
.why-item h3 {
  margin: 0 0 8px;
  color: rgba(255,255,255,.96);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.why-item p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.55;
}

.contact-strip {
  position: relative;
  overflow: hidden;
  padding: 26px 0 32px;
  background:
    radial-gradient(circle at 12% 82%, rgba(255,255,255,.92) 0 36px, transparent 37px),
    radial-gradient(circle at 16% 78%, rgba(216, 235, 230, .92) 0 15px, transparent 16px),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.92) 0 30px, transparent 31px),
    radial-gradient(circle at 88% 22%, rgba(216, 235, 230, .92) 0 14px, transparent 15px),
    linear-gradient(180deg, #edf7f5 0%, #f8fbfa 100%);
  border-top: 1px solid rgba(4, 73, 67, .12);
  border-bottom: 1px solid rgba(4, 73, 67, .14);
}
.contact-strip::before,
.contact-strip::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 230px;
  height: 130px;
  pointer-events: none;
  opacity: .85;
}
.contact-strip::before {
  left: -14px;
  bottom: -8px;
  background:
    radial-gradient(circle at 28px 80px, rgba(255,255,255,.98) 0 14px, transparent 15px),
    radial-gradient(circle at 56px 62px, rgba(255,255,255,.96) 0 12px, transparent 13px),
    radial-gradient(circle at 86px 86px, rgba(255,255,255,.98) 0 13px, transparent 14px),
    radial-gradient(circle at 114px 58px, rgba(255,255,255,.94) 0 11px, transparent 12px),
    linear-gradient(120deg, transparent 0 36%, rgba(110, 153, 125, .36) 36% 37%, transparent 37% 100%);
}
.contact-strip::after {
  right: -10px;
  top: -4px;
  transform: scaleX(-1);
  background:
    radial-gradient(circle at 28px 80px, rgba(255,255,255,.98) 0 14px, transparent 15px),
    radial-gradient(circle at 56px 62px, rgba(255,255,255,.96) 0 12px, transparent 13px),
    radial-gradient(circle at 86px 86px, rgba(255,255,255,.98) 0 13px, transparent 14px),
    radial-gradient(circle at 114px 58px, rgba(255,255,255,.94) 0 11px, transparent 12px),
    linear-gradient(120deg, transparent 0 36%, rgba(110, 153, 125, .36) 36% 37%, transparent 37% 100%);
}
.contact-strip .container {
  position: relative;
  z-index: 1;
}
.contact-strip .title-line {
  margin-bottom: 22px;
}
.contact-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.contact-buttons a {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(4,73,67,.42);
  border-radius: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0,65,60,.04);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.contact-buttons a:hover {
  transform: translateY(-3px);
  background: var(--teal);
  color: var(--white);
}
.contact-buttons svg { width: 20px; height: 20px; }

.site-footer {
  position: relative;
  padding-top: 30px;
  color: rgba(255,255,255,.78);
  background:
    radial-gradient(circle at 93% 55%, rgba(255,255,255,.06), transparent 20%),
    linear-gradient(135deg, #014746 0%, #025a57 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1.1fr .7fr;
  gap: 42px;
  padding-bottom: 24px;
}
.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand img {
  width: 54px;
  height: 74px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255,255,255,.55);
}
.footer-brand p {
  max-width: 260px;
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.68;
  font-size: 14px;
}
.site-footer h4 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  transition: color .25s ease;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.footer-col a:hover { color: var(--white); }
.social-row {
  display: flex;
  gap: 14px;
}
.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: var(--white);
}
.social-row svg { width: 22px; height: 22px; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.16);
  padding: 16px 20px 18px;
  text-align: center;
  color: rgba(255,255,255,.56);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .main-nav { gap: 22px; }
  .hero-grid,
  .signature-grid { grid-template-columns: 1fr; }
  .hero-grid {
    min-height: 620px;
    padding: 146px 0 54px;
    text-align: center;
    justify-content: center;
  }
  .hero-copy {
    display: grid;
    justify-items: center;
    max-width: 700px;
    margin-inline: auto;
  }
  .hero-stage { display: none; }
  .hero-text { width: min(540px, 100%); }
  .hero-actions { justify-content: center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 30, 28, .52) 0%, rgba(1, 30, 28, .28) 48%, rgba(1, 30, 28, .58) 100%),
      linear-gradient(90deg, rgba(1, 30, 28, .40) 0%, rgba(1, 30, 28, .16) 48%, rgba(1, 30, 28, .28) 100%);
  }
  .signature-grid { padding: 48px 0; }
  .cards-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 0; }
  .contact-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-item:nth-child(2) { border-right: 0; }
  .why-item:nth-child(1),
  .why-item:nth-child(2) { margin-bottom: 30px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1190px); }
  .site-header { padding: 12px 0; }
  .brand { min-width: 0; gap: 10px; }
  .brand img { width: 46px; height: 62px; }
  .brand-wordmark strong { font-size: 24px; }
  .brand-wordmark small { font-size: 8px; letter-spacing: .36em; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 9px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(2,49,46,.98);
    border-radius: 16px;
    box-shadow: 0 20px 42px rgba(0,0,0,.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .site-header.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav a { padding: 15px 8px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .main-nav a:last-child { border-bottom: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 620px; }
  .hero-grid {
    min-height: 620px;
    padding: 116px 0 40px;
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 30, 28, .62) 0%, rgba(1, 30, 28, .28) 42%, rgba(1, 30, 28, .72) 100%),
      linear-gradient(90deg, rgba(1, 30, 28, .36) 0%, rgba(1, 30, 28, .14) 52%, rgba(1, 30, 28, .30) 100%);
  }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  h2 { font-size: clamp(36px, 10vw, 50px); }
  .hero-text { font-size: 15px; width: 100%; }
  .hero-actions { width: 100%; }
  .btn { width: 100%; }
  .signature-grid { padding: 48px 0; gap: 0; }
  .collection { padding: 36px 0 52px; }
  .title-line { gap: 10px; }
  .title-line span { width: 34px; }
  .title-line p { font-size: 19px; letter-spacing: .1em; }
  .cards-grid,
  .why-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .collection-card > img { height: 176px; }
  .why { padding: 42px 0; }
  .why-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.35);
    padding: 24px 0;
  }
  .why-item:nth-child(1),
  .why-item:nth-child(2) { margin-bottom: 0; }
  .why-item:last-child { border-bottom: 0; }
  .contact-buttons { grid-template-columns: 1fr; gap: 14px; }
  .contact-buttons a { width: 100%; min-width: 0; }
  .footer-grid { gap: 30px; }
  .footer-brand-head { margin-bottom: 14px; }
}


.order-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.order-link span {
  display: inline-block;
  transition: transform .25s ease;
}
.order-link:hover span {
  transform: translateX(5px);
}

.signature-grid-text .section-copy p + p {
  margin-top: -10px;
}
.hero-actions .btn-outline {
  display: none;
}
.contact-buttons-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin-inline: auto;
}
.social-icon {
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}
.instagram-icon {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 10%, #fd5949 45%, #d6249f 62%, #285AEB 100%);
}
.whatsapp-icon {
  background: #25D366;
}
.social-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
@media (max-width: 1080px) {
  .contact-buttons-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .contact-buttons-three {
    grid-template-columns: 1fr;
  }
}

.footer-address span {
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .hero-copy { padding-right: 0; }
}
@media (max-width: 760px) {
  .contact-strip::before, .contact-strip::after { width: 150px; height: 90px; opacity: .72; }
  .hero-copy { padding-right: 0; }
  h1 { max-width: 100%; }
}
.footer-address { margin-top: 8px; }
.footer-address span { line-height: 1.52; }

@media (max-width: 520px) {
  h1 span { white-space: normal; }
}


/* Product details modal */
.product-card {
  cursor: pointer;
}
.product-card:focus-visible {
  outline: 3px solid rgba(15,139,129,.38);
  outline-offset: 4px;
}
.details-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  padding: 24px;
}
.product-modal.is-open {
  display: grid;
  place-items: center;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 30, 28, .72);
  backdrop-filter: blur(8px);
}
.product-modal__dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: min(82vh, 680px);
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(15,139,129,.20);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}
.product-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 45, 42, .90);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.product-modal__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(360px, .98fr);
  gap: 0;
  align-items: stretch;
}
.product-modal__image-wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: linear-gradient(135deg, #eaf6f4 0%, #f8fbfa 100%);
}
.product-modal__image-wrap img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  filter: saturate(1.02) contrast(1.03);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 65, 60, .10);
}
.product-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px 30px;
}
.product-modal__content h2 {
  color: var(--teal-dark);
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1;
  margin-bottom: 12px;
}
.product-modal__type {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(15,139,129,.26);
  border-radius: 999px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-modal__description {
  color: #4f625e;
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 22px;
}
.product-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.product-modal__actions .btn {
  width: 100%;
  min-height: 50px;
  padding-inline: 18px;
  font-size: 12px;
}
.btn-share {
  border: 1px solid rgba(4,73,67,.48);
  background: transparent;
  color: var(--teal-dark);
  cursor: pointer;
}
.btn-share:hover {
  background: rgba(15,139,129,.08);
}
.share-note {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 820px) {
  .product-modal {
    padding: 12px;
  }
  .product-modal__dialog {
    max-height: calc(100vh - 24px);
  }
  .product-modal__grid {
    grid-template-columns: 1fr;
  }
  .product-modal__image-wrap {
    padding: 18px 18px 8px;
  }
  .product-modal__image-wrap img {
    max-height: 210px;
  }
  .product-modal__content {
    padding: 24px 20px 20px;
  }
  .product-modal__content h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .product-modal__description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .product-modal__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-modal__actions .btn {
    width: 100%;
    min-height: 46px;
    padding-inline: 10px;
    font-size: 11px;
    letter-spacing: .04em;
  }
}


/* Final product card alignment */
.collection-card {
  display: flex;
  flex-direction: column;
}
.collection-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.collection-card .details-link {
  margin-top: auto;
  align-self: flex-start;
}
.collection-card .details-link span {
  display: none !important;
}

/* Modal portrait image layout */
.product-modal__grid {
  grid-template-columns: 300px minmax(360px, 1fr) !important;
}
.product-modal__image-wrap {
  min-height: 430px !important;
  padding: 24px !important;
}
.product-modal__image-wrap img {
  width: 250px !important;
  height: 360px !important;
  max-height: 360px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 14px !important;
}
.product-modal__dialog {
  width: min(860px, 100%) !important;
  max-height: min(82vh, 620px) !important;
}
.product-modal__content {
  padding: 36px 34px 28px !important;
}

/* Footer updated business info */
.footer-grid {
  grid-template-columns: 1.08fr .72fr 1.12fr 1.1fr 1fr !important;
  gap: 30px !important;
}
.footer-address-text {
  margin: 0 0 16px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.62;
}
.footer-info-block {
  display: grid;
  gap: 4px;
  margin-bottom: 15px;
}
.footer-label {
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-info-block strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
}
.footer-info-block span:not(.footer-label) {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.footer-info-block a {
  margin-bottom: 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
.follow-title {
  margin-top: 22px !important;
  margin-bottom: 12px !important;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .product-modal__grid {
    grid-template-columns: 280px minmax(320px, 1fr) !important;
  }
  .product-modal__image-wrap img {
    width: 230px !important;
    height: 330px !important;
  }
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .product-modal__grid {
    grid-template-columns: 1fr !important;
  }
  .product-modal__image-wrap {
    min-height: 245px !important;
    padding: 16px 16px 6px !important;
  }
  .product-modal__image-wrap img {
    width: 160px !important;
    height: 220px !important;
    max-height: 220px !important;
  }
}


/* Shopping hours placed under address */
.footer-hours-under-address {
  margin-top: 18px;
}
.footer-hours-under-address h4 {
  margin-top: 0;
  margin-bottom: 14px;
}
.footer-grid {
  grid-template-columns: 1.15fr .8fr 1.25fr 1fr !important;
}
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Final polish: product links, footer, share URLs */
.collection-card .details-link {
  min-height: 30px;
  margin-top: auto !important;
  padding-top: 8px;
}
.collection-card .details-link::after {
  content: none !important;
}
.footer-grid {
  grid-template-columns: 1.1fr .72fr 1.25fr 1.05fr !important;
  align-items: start;
}
.footer-col.footer-contact .social-row {
  margin-top: 4px;
}
.product-modal__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.product-modal__actions .btn {
  white-space: nowrap;
}
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .product-modal__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .product-modal__actions .btn {
    font-size: 10px;
    padding-inline: 8px;
  }
}


/* Address moved under footer brand text */
.footer-brand-address {
  max-width: 280px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.6;
}





/* Address under Stay Connected buttons - centered text only */
.contact-strip-address {
  max-width: 980px;
  margin: 16px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-strip-address svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}
.contact-strip-address span {
  display: inline-block;
}
@media (max-width: 760px) {
  .contact-strip-address {
    max-width: 92%;
    font-size: 12px;
    line-height: 1.55;
    align-items: flex-start;
  }
  .contact-strip-address svg {
    margin-top: 2px;
  }
}


/* Product specifications */
.product-modal__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}
.product-modal__specs div {
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(15,139,129,.18);
  border-radius: 12px;
  background: rgba(15,139,129,.045);
}
.product-modal__specs span {
  display: block;
  margin-bottom: 5px;
  color: rgba(4,73,67,.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.product-modal__specs strong {
  display: block;
  color: var(--teal-dark);
  font-size: 13px;
  line-height: 1.35;
}
.product-modal__description {
  margin-bottom: 20px !important;
}
@media (max-width: 760px) {
  .product-modal__specs {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .product-modal__specs div {
    min-height: auto;
  }
}


/* Compact product cards and modal refinement */
.collection-card .card-body {
  padding-bottom: 20px;
}
.collection-card .details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  margin: auto 0 0 38px !important;
  border: 1px solid rgba(15,139,129,.22);
  border-radius: 999px;
  background: rgba(15,139,129,.05);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-modal__dialog {
  width: min(860px, 100%) !important;
  max-height: min(74vh, 560px) !important;
  overflow: hidden;
}
.product-modal__grid {
  grid-template-columns: 250px minmax(0, 1fr) !important;
}
.product-modal__image-wrap {
  min-height: 100% !important;
  padding: 18px !important;
}
.product-modal__image-wrap img {
  width: 200px !important;
  height: 290px !important;
  max-height: 290px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
}
.product-modal__content {
  padding: 22px 24px 18px !important;
}
.product-modal__content .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
}
.product-modal__content h2 {
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1.02;
  margin-bottom: 10px;
}
.product-modal__type {
  margin: 0 0 10px !important;
  padding: 7px 12px !important;
  font-size: 10px !important;
}
.product-modal__specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}
.product-modal__specs div {
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 10px;
}
.product-modal__specs div:last-child {
  grid-column: 1 / -1;
}
.product-modal__specs span {
  margin-bottom: 3px;
  font-size: 9px;
  letter-spacing: .10em;
}
.product-modal__specs strong {
  font-size: 12px;
  line-height: 1.28;
}
.product-modal__description {
  font-size: 13px !important;
  line-height: 1.58 !important;
  margin-bottom: 14px !important;
}
.product-modal__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px;
}
.product-modal__actions .btn {
  min-height: 46px !important;
  padding-inline: 12px !important;
  font-size: 11px !important;
  letter-spacing: .06em;
}
.share-note {
  margin-top: 10px;
}
@media (max-width: 900px) {
  .product-modal__dialog {
    max-height: min(78vh, 620px) !important;
  }
}
@media (max-width: 760px) {
  .collection-card .details-link {
    margin-left: 18px !important;
  }
  .product-modal__dialog {
    max-height: calc(100vh - 24px) !important;
  }
  .product-modal__grid {
    grid-template-columns: 1fr !important;
  }
  .product-modal__image-wrap {
    padding: 14px 14px 6px !important;
  }
  .product-modal__image-wrap img {
    width: 150px !important;
    height: 210px !important;
    max-height: 210px !important;
  }
  .product-modal__content {
    padding: 18px 16px 16px !important;
  }
  .product-modal__content h2 {
    font-size: clamp(24px, 8vw, 34px) !important;
  }
  .product-modal__specs {
    grid-template-columns: 1fr 1fr;
  }
  .product-modal__specs div:last-child {
    grid-column: 1 / -1;
  }
  .product-modal__description {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}


/* Final fix: restore View Details style and fix modal image position */
.collection-card .details-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 30px !important;
  padding: 8px 0 0 !important;
  margin: auto 0 0 38px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--teal) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
.collection-card .details-link::after {
  content: none !important;
}
.collection-card .details-link:hover {
  color: var(--gold-dark) !important;
}

.product-modal__grid {
  grid-template-columns: 320px minmax(0, 1fr) !important;
  align-items: stretch !important;
}
.product-modal__image-wrap {
  width: 320px !important;
  height: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  background: linear-gradient(180deg, rgba(234,249,246,.95), rgba(244,250,248,.72)) !important;
  overflow: hidden !important;
}
.product-modal__image-wrap img {
  width: 265px !important;
  height: 400px !important;
  max-height: 400px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 13px !important;
  display: block !important;
}
@media (max-width: 760px) {
  .collection-card .details-link {
    margin-left: 18px !important;
  }
  .product-modal__grid {
    grid-template-columns: 1fr !important;
  }
  .product-modal__image-wrap {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    padding: 14px 14px 6px !important;
  }
  .product-modal__image-wrap img {
    width: 170px !important;
    height: 240px !important;
    max-height: 240px !important;
  }
}


/* Final modal image area: use the full left panel for the product image */
.product-modal__dialog {
  width: min(920px, 100%) !important;
  max-height: min(74vh, 560px) !important;
}
.product-modal__grid {
  grid-template-columns: 300px minmax(0, 1fr) !important;
  align-items: stretch !important;
}
.product-modal__image-wrap {
  width: 300px !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  display: block !important;
  background: #dfe7e6 !important;
  overflow: hidden !important;
  border-radius: 18px 0 0 18px !important;
}
.product-modal__image-wrap img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: block !important;
}
.product-modal__content {
  padding: 24px 24px 18px !important;
}
.product-modal__content h2 {
  font-size: clamp(28px, 3vw, 42px) !important;
}
.product-modal__description {
  font-size: 13px !important;
  line-height: 1.56 !important;
  margin-bottom: 12px !important;
}
.product-modal__actions {
  margin-top: 2px;
}
@media (max-width: 760px) {
  .product-modal__dialog {
    max-height: calc(100vh - 24px) !important;
  }
  .product-modal__grid {
    grid-template-columns: 1fr !important;
  }
  .product-modal__image-wrap {
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    border-radius: 18px 18px 0 0 !important;
  }
  .product-modal__image-wrap img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }
}




/* Stay Connected section with background image */
.contact-strip {
  background-image:
    linear-gradient(180deg, rgba(237,247,245,.90) 0%, rgba(248,251,250,.92) 100%),
    url('../assets/stay-connected-image.webp') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.contact-strip .container {
  position: relative;
  z-index: 1;
}


/* Clean Stay Connected background: remove extra decorative shapes */
.contact-strip::before,
.contact-strip::after {
  content: none !important;
  display: none !important;
}

.contact-strip {
  position: relative !important;
  overflow: hidden !important;
  background-image:
    linear-gradient(90deg, rgba(238, 249, 247, .86) 0%, rgba(248, 252, 251, .92) 48%, rgba(238, 249, 247, .86) 100%),
    url('../assets/stay-connected-image.webp') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.contact-strip .container {
  position: relative !important;
  z-index: 2 !important;
}

.contact-strip .title-line span {
  background: rgba(15, 139, 129, .55) !important;
}

@media (max-width: 760px) {
  .contact-strip {
    background-position: center center !important;
  }
}


/* Final redesign: Stay Connected section */
.contact-strip::before,
.contact-strip::after {
  content: none !important;
  display: none !important;
}
.contact-strip {
  position: relative !important;
  min-height: 360px;
  padding: 58px 0 !important;
  background-image:
    linear-gradient(90deg, rgba(3, 54, 51, .50) 0%, rgba(3, 54, 51, .28) 34%, rgba(3, 54, 51, .10) 58%, rgba(3, 54, 51, .18) 100%),
    url('../assets/stay-connected-image.webp') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.contact-strip .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.contact-strip-panel {
  width: min(930px, 100%);
  padding: 30px 30px 24px;
  border-radius: 26px;
  background: rgba(252, 250, 247, .84);
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: 0 26px 60px rgba(0, 45, 41, .18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.title-line-compact {
  margin-bottom: 24px !important;
}
.title-line-compact span {
  max-width: 78px;
  background: rgba(14, 109, 102, .45) !important;
}
.contact-buttons.contact-buttons-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-buttons.contact-buttons-three a {
  min-height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(4,73,67,.20);
  box-shadow: 0 10px 20px rgba(0,65,60,.06);
}
.contact-buttons.contact-buttons-three a:hover {
  background: var(--teal);
  color: var(--white);
}
.contact-strip-address {
  margin: 18px auto 0 !important;
  max-width: 860px;
  color: #0a4e4b;
  font-size: 13px;
  font-weight: 800;
}
.contact-strip-address svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1080px) {
  .contact-strip {
    min-height: 0;
    padding: 40px 0 !important;
    background-position: 22% center !important;
  }
  .contact-strip .container {
    justify-content: center;
  }
  .contact-strip-panel {
    width: min(940px, 100%);
  }
}
@media (max-width: 760px) {
  .contact-strip {
    padding: 24px 0 !important;
    background-position: center center !important;
  }
  .contact-strip-panel {
    padding: 22px 16px 18px;
    border-radius: 18px;
  }
  .title-line-compact {
    margin-bottom: 18px !important;
  }
  .contact-buttons.contact-buttons-three {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-buttons.contact-buttons-three a {
    min-height: 52px;
  }
  .contact-strip-address {
    max-width: 100%;
    margin-top: 14px !important;
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
  }
}


/* Final tweak: center Stay Connected panel, remove under-card effect, reduce top/bottom image area */
.contact-strip {
  min-height: 0 !important;
  padding: 28px 0 !important;
  background-position: left center !important;
}
.contact-strip .container {
  justify-content: center !important;
  align-items: center !important;
}
.contact-strip-panel {
  width: min(960px, 100%) !important;
  margin: 0 auto !important;
  box-shadow: none !important;
}
@media (max-width: 1080px) {
  .contact-strip {
    padding: 24px 0 !important;
    background-position: 18% center !important;
  }
}
@media (max-width: 760px) {
  .contact-strip {
    padding: 18px 0 !important;
    background-position: center center !important;
  }
}


/* Final cleanup: remove white card from Stay Connected section */
.contact-strip {
  min-height: 0 !important;
  padding: 44px 0 !important;
  background-image:
    linear-gradient(90deg, rgba(239,247,246,.18) 0%, rgba(248,251,250,.10) 45%, rgba(239,247,246,.18) 100%),
    url('../assets/stay-connected-image.webp') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.contact-strip .container {
  justify-content: center !important;
}
.contact-strip-panel {
  width: min(980px, 100%) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.title-line-compact {
  margin-bottom: 24px !important;
}
.contact-buttons.contact-buttons-three a {
  background: rgba(255,255,255,.92) !important;
}
.contact-strip-address {
  margin-top: 16px !important;
}
@media (max-width: 760px) {
  .contact-strip {
    padding: 28px 0 !important;
  }
}


/* Our Signature background image section */
.signature .section-copy {
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .signature {
    background-position: 70% center;
  }
  .signature-grid {
    min-height: 380px;
    grid-template-columns: minmax(0, 620px);
    padding-block: 44px;
  }
}
@media (max-width: 760px) {
  .signature {
    background-image:
      linear-gradient(180deg, rgba(247,245,241,.95) 0%, rgba(247,245,241,.92) 42%, rgba(247,245,241,.68) 100%),
      url(../assets/our-signature-bg.webp);
    background-position: center right;
  }
  .signature-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 38px;
  }
}


/* Final hero banner background image */
@media (max-width: 1180px) {
  .hero-bg {
    background-position: 68% center;
  }
}
@media (max-width: 760px) {
  .hero-bg {
    background-position: 74% center;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(1, 24, 23, .62) 0%, rgba(1, 24, 23, .28) 48%, rgba(1, 24, 23, .38) 100%);
  }
}


/* Fix Stay Connected button hover visibility */
.contact-buttons.contact-buttons-three a:hover,
.contact-buttons.contact-buttons-three a:focus-visible {
  background: var(--teal) !important;
  color: #ffffff !important;
  border-color: var(--teal) !important;
  box-shadow: 0 14px 28px rgba(0, 65, 60, .14) !important;
}

.contact-buttons.contact-buttons-three a:hover svg,
.contact-buttons.contact-buttons-three a:focus-visible svg {
  color: #ffffff !important;
  fill: currentColor !important;
}

.contact-buttons.contact-buttons-three a {
  color: var(--teal-dark) !important;
}

.contact-buttons.contact-buttons-three a svg {
  color: currentColor !important;
  fill: currentColor !important;
}


/* Footer Instagram as clean text link */
.footer-instagram-link a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255,255,255,.9) !important;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}
.footer-instagram-link a:hover {
  color: var(--gold) !important;
}
.follow-title,
.social-row {
  display: none !important;
}


/* Non-destructive final technical fixes: keep original design */
@media (max-width: 760px) {
  .header-cta {
    display: inline-flex !important;
    order: 2;
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 10px;
    font-size: 0;
    letter-spacing: 0;
    flex: 0 0 46px;
  }
  .header-cta svg {
    width: 20px;
    height: 20px;
  }
  .nav-toggle {
    order: 3;
    flex: 0 0 46px;
  }
}

@media (max-width: 420px) {
  .product-modal__dialog {
    width: calc(100% - 16px) !important;
    max-height: calc(100vh - 16px) !important;
  }
  .product-modal__image-wrap img {
    width: 132px !important;
    height: 178px !important;
    max-height: 178px !important;
  }
  .product-modal__content {
    padding: 14px 12px 12px !important;
  }
  .product-modal__content h2 {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }
  .product-modal__specs {
    gap: 6px !important;
  }
  .product-modal__specs div {
    min-height: 40px !important;
    padding: 7px 8px !important;
  }
  .product-modal__specs strong {
    font-size: 11px !important;
  }
  .product-modal__description {
    font-size: 11.5px !important;
    line-height: 1.42 !important;
    margin-bottom: 10px !important;
  }
  .product-modal__actions .btn {
    min-height: 42px !important;
    font-size: 10px !important;
  }
}


/* Rozana v55.28 — Afrooz mobile WhatsApp button and product detail image fix */
@media (max-width: 760px) {
  .product-modal__image-wrap {
    width: 100% !important;
    height: 245px !important;
    min-height: 245px !important;
    padding: 0 !important;
    display: block !important;
    border-radius: 18px 18px 0 0 !important;
    background: #dfe7e6 !important;
    overflow: hidden !important;
  }
  .product-modal__image-wrap img,
  #modalProductImage {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0 !important;
    display: block !important;
  }
  .product-modal__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }
  .product-modal__actions .btn,
  #modalWhatsApp {
    width: 100% !important;
    min-height: 44px !important;
    height: auto !important;
    padding: 11px 14px !important;
    border-radius: 10px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: .08em !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }
  #modalWhatsApp svg {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
  }
}
@media (max-width: 420px) {
  .product-modal__image-wrap {
    height: 230px !important;
    min-height: 230px !important;
  }
  .product-modal__actions .btn,
  #modalWhatsApp {
    min-height: 42px !important;
    padding: 10px 12px !important;
    font-size: 10px !important;
    letter-spacing: .065em !important;
  }
}


/* Rozana v55.28 — Afrooz mobile typography, menu line, and product modal fixes */
.afrouz-signature-title--mobile{display:none;}
@media (max-width:760px){
  .afrouz-signature-title--desktop{display:none!important;}
  .afrouz-signature-title--mobile{
    display:block!important;
    font-family:var(--serif)!important;
    font-size:clamp(40px,12vw,56px)!important;
    line-height:.98!important;
    letter-spacing:-.035em!important;
    color:var(--teal-dark)!important;
    margin:0 0 22px!important;
  }
  .afrouz-signature-title--mobile span{display:block!important;}
  .main-nav a,
  .main-nav a:first-child{border-bottom:0!important;}
  .main-nav a::after,
  .main-nav a:first-child::after{display:none!important;content:none!important;transform:scaleX(0)!important;}
  .product-modal{padding:10px!important;align-items:center!important;}
  .product-modal__dialog{
    width:min(100%,420px)!important;
    max-height:calc(100svh - 20px)!important;
    overflow-y:auto!important;
    border-radius:18px!important;
  }
  .product-modal__grid{grid-template-columns:1fr!important;}
  .product-modal__image-wrap{
    min-height:320px!important;
    padding:22px 18px 12px!important;
    align-items:center!important;
    justify-content:center!important;
  }
  .product-modal__image-wrap img{
    width:min(78vw,292px)!important;
    height:310px!important;
    max-height:310px!important;
    object-fit:cover!important;
    object-position:center!important;
    border-radius:16px!important;
  }
  .product-modal__content{padding:22px 18px 20px!important;}
  .product-modal__actions{grid-template-columns:1fr!important;gap:10px!important;}
  .product-modal__actions .btn{
    width:100%!important;
    min-height:48px!important;
    padding:0 16px!important;
    font-size:11px!important;
    line-height:1.15!important;
    white-space:normal!important;
    text-align:center!important;
  }
}


/* Rozana v55.28 — Afrooz mobile header/button/address/menu fixes */
@media (max-width: 760px) {
  .header-inner {
    justify-content: flex-start !important;
    gap: 12px !important;
  }
  .header-cta {
    margin-left: auto !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
  }
  .header-cta svg {
    margin: 0 !important;
  }
  .main-nav a {
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
  }
  .main-nav a:last-child {
    border-bottom: 0 !important;
  }
  .main-nav a::after,
  .main-nav a:first-child::after {
    display: none !important;
    content: none !important;
    transform: scaleX(0) !important;
  }
  .contact-strip-address {
    display: grid !important;
    grid-template-columns: auto minmax(0, auto) !important;
    column-gap: 4px !important;
    align-items: start !important;
    justify-content: center !important;
  }
  .contact-strip-address svg {
    margin-top: 1px !important;
  }
}


/* Rozana v55.28 — force Afrooz mobile WhatsApp header icon exact center + green */
@media (max-width: 760px) {
  .site-header .header-inner .header-cta {
    position: relative !important;
    order: 2 !important;
    margin-left: auto !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    flex: 0 0 46px !important;
    padding: 0 !important;
    display: block !important;
    line-height: 0 !important;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    color: #25D366 !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid rgba(37,211,102,.92) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }
  .site-header .header-inner .header-cta svg {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 23px !important;
    height: 23px !important;
    min-width: 23px !important;
    min-height: 23px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    transform: translate(-50%, -50%) !important;
    color: #25D366 !important;
    fill: #25D366 !important;
    vertical-align: middle !important;
  }
  .site-header .header-inner .header-cta svg path {
    fill: #25D366 !important;
  }
  .site-header .header-inner .header-cta:hover,
  .site-header .header-inner .header-cta:focus-visible {
    background: #ffffff !important;
    color: #25D366 !important;
    transform: none !important;
  }
}
