:root {
  --gold: #b8923c;
  --gold-soft: #c9a85f;
  --gold-bright: #d4af37;
  --gold-light: #e8d9a8;
  --ink: #100f12;
  --ink-2: #1b1a1f;
  --cream: #faf7f0;
  --stone: #f3efe6;
  --line: rgba(184, 146, 60, 0.18);
  --muted: #76726b;
  --white: #ffffff;
  --whatsapp: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", sans-serif;
  background: var(--white);
  color: #16151a;
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.latin {
  font-family: "Playfair Display", serif;
}
.gold {
  color: var(--gold);
}

section {
  padding: 130px 8%;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: 0.08;
  top: -280px;
  left: -180px;
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.btn {
  display: inline-block;
  padding: 16px 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  font-family: "Heebo", sans-serif;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.85),
    transparent
  );
}
.btn:hover {
  background: var(--gold);
  color: var(--white);
}
.btn:hover::before {
  animation: shine 0.9s;
}
@keyframes shine {
  100% {
    left: 180%;
  }
}

.btn-solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-solid:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(16, 15, 18, 0.95);
  border-bottom: 1px solid rgba(184, 146, 60, 0.12);
  transition: 0.4s;
}
nav.scrolled {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}
.nav-container {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}
.logo a {
  text-decoration: none;
  font-size: 26px;
  letter-spacing: 5px;
  color: #fff;
  font-weight: 600;
}
.logo span {
  color: var(--gold);
}

.menu {
  display: flex;
  gap: 38px;
  align-items: center;
}
.menu a {
  text-decoration: none;
  color: #f1ece2;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}
.menu a:hover {
  color: var(--gold);
}
.menu a:hover::after {
  width: 100%;
}

.menu ul {
  display: flex;
  gap: 38px;
  align-items: center;
  list-style: none;
}
.menu ul a {
  text-decoration: none;
  color: #f1ece2;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
  padding: 0;
}
.menu ul a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}
.menu ul a:hover {
  color: var(--gold);
}
.menu ul a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 26px;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--gold);
  color: #fff !important;
}
.nav-cta::after {
  display: none;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 150px 8% 90px;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 8%,
      rgba(212, 175, 55, 0.2),
      transparent 60%
    ),
    radial-gradient(ellipse 80% 80% at 50% 50%, #1a171d 0%, #0c0b0e 70%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 6px rgba(12, 11, 14, 0),
    0 0 0 1px rgba(212, 175, 55, 0.05);
}
.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 46vw;
  line-height: 1;
  color: rgba(212, 175, 55, 0.035);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
}
.hero-content .eyebrow {
  justify-content: center;
  color: var(--gold-light);
}
.hero-content .eyebrow::before {
  background: var(--gold-light);
  opacity: 0.7;
}

.jewel {
  width: 118px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  overflow: visible;
}
.jewel path {
  stroke: url(#gld);
  stroke-width: 1.4;
  fill: none;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.35));
}
.jewel .tablefill {
  fill: rgba(212, 175, 55, 0.06);
  stroke: none;
}
.jewel-wrap {
  position: relative;
  display: inline-block;
  animation: float 7s ease-in-out infinite;
}
.glint {
  position: absolute;
  top: 14%;
  left: 30%;
  font-size: 20px;
  color: #fff;
  text-shadow:
    0 0 10px #fff,
    0 0 22px var(--gold-light);
  animation: twinkle 3.2s ease-in-out infinite;
}
.glint.g2 {
  top: 42%;
  left: 62%;
  font-size: 13px;
  animation-delay: 1.1s;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
}

.hero h1 {
  font-size: clamp(54px, 8vw, 116px);
  line-height: 1.03;
  font-weight: 900;
  margin-bottom: 28px;
  color: #f6f1e7;
  letter-spacing: -0.01em;
}
.hero h1 .gold {
  background: linear-gradient(
    100deg,
    #b98f33 0%,
    #f7e7a6 26%,
    #e7c558 50%,
    #b98f33 78%,
    #f7e7a6 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 6s linear infinite;
}
@keyframes shimmerText {
  to {
    background-position: -220% center;
  }
}
.hero p {
  font-size: clamp(17px, 1.8vw, 20px);
  color: #b7b2aa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 300;
}
.hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #fff;
}

.spark {
  position: absolute;
  color: var(--gold-light);
  z-index: 2;
  pointer-events: none;
  animation:
    drift linear infinite,
    glow 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes drift {
  0% {
    transform: translateY(40px) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-120px) scale(1);
    opacity: 0;
  }
}
@keyframes glow {
  50% {
    filter: drop-shadow(0 0 6px var(--gold-light));
  }
}
@keyframes float {
  50% {
    transform: translateY(-16px);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.55);
}
.scroll-hint .line {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold-bright), transparent);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

nav:not(.scrolled) {
  background: rgba(16, 15, 18, 0.95);
  backdrop-filter: blur(20px);
  border-color: rgba(184, 146, 60, 0.12);
}

.trust {
  background: var(--ink);
  color: #fff;
  padding: 50px 8%;
}
.trust-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.trust-item {
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: rgba(184, 146, 60, 0.25);
}
.trust-num {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 14px;
  color: #cdc9c0;
  letter-spacing: 0.04em;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head .eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-head h2 {
  font-size: clamp(38px, 5vw, 58px);
  margin-bottom: 18px;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about {
  background: var(--cream);
}
.about-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  height: 580px;
  border-radius: 6px;
  background: url("../images/check.png") center/cover;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(184, 146, 60, 0.18), transparent);
}
.about-image .badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(16, 15, 18, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 22px 28px;
  border-radius: 4px;
  border: 1px solid rgba(184, 146, 60, 0.35);
}
.about-image .badge .b-num {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: var(--gold-bright);
}
.about-image .badge .b-txt {
  font-size: 13px;
  color: #d6d2c9;
  letter-spacing: 0.05em;
}
.about-text h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 26px;
}
.about-text p {
  color: #55524c;
  line-height: 2;
  margin-bottom: 22px;
  font-size: 17px;
}
.about-sign {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  margin-top: 14px;
}

.adv-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.adv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 46px 38px;
  transition: 0.45s;
  position: relative;
  overflow: hidden;
}
.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.45s;
}
.adv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}
.adv-card:hover::before {
  transform: scaleX(1);
}
.adv-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 26px;
  transition: 0.45s;
}
.adv-card:hover .adv-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.adv-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  transition: 0.45s;
}
.adv-card:hover .adv-icon svg {
  stroke: #fff;
}
.adv-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}
.adv-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.process {
  background: var(--ink);
  color: #fff;
}
.process .section-head h2 {
  color: #fff;
}
.process .section-head p {
  color: #b8b4ac;
}
.proc-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proc-step {
  padding: 0 30px;
  position: relative;
}
.proc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 1px;
  height: calc(100% - 34px);
  background: rgba(184, 146, 60, 0.2);
}
.proc-num {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--gold-bright);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184, 146, 60, 0.35);
  border-radius: 50%;
}
.proc-step h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.proc-step p {
  color: #a8a49c;
  font-size: 15px;
  line-height: 1.8;
}

.collection {
  background: var(--stone);
}
.cards {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 460px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.1s;
}
.card:hover img {
  transform: scale(1.08);
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.78));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 34px;
}
.card-overlay .c-tag {
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-overlay h3 {
  color: #fff;
  font-size: 28px;
}
.card-overlay .c-link {
  color: #fff;
  font-size: 13px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
  letter-spacing: 0.08em;
}
.card:hover .c-link {
  opacity: 1;
  transform: none;
}

.spotlight-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spot-img {
  height: 560px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spot-text .price {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--gold);
  margin: 18px 0 28px;
}
.spot-text h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  margin-bottom: 22px;
}
.spot-text p {
  color: #55524c;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 30px;
}
.spot-specs {
  list-style: none;
  margin-bottom: 38px;
}
.spot-specs li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: #403d38;
}
.spot-specs li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.quality {
  background: var(--cream);
}
.qual-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}
.qual-item .q-mark {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.qual-item h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.qual-item p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.testi-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 42px 36px;
  background: var(--white);
  position: relative;
}
.testi-card .quote {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  color: var(--gold-light);
  line-height: 0.5;
  position: absolute;
  top: 34px;
  right: 30px;
}
.stars {
  color: var(--gold-bright);
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-size: 15px;
}
.testi-card p {
  color: #403d38;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 26px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 700;
  font-size: 20px;
}
.testi-author .name {
  font-weight: 500;
  color: #16151a;
}
.testi-author .role {
  font-size: 13px;
  color: var(--muted);
}

.banner {
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(184, 146, 60, 0.16),
    transparent 70%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.banner-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
}
.banner h2 {
  font-size: clamp(42px, 7vw, 80px);
  margin-bottom: 24px;
  font-weight: 900;
}
.banner h2 .latin {
  font-style: italic;
}
.banner p {
  color: #cfcbc2;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 2;
  font-size: 18px;
}

.faq-wrap {
  max-width: 840px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  text-align: right;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 21px;
  font-weight: 500;
  color: #16151a;
  transition: 0.3s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q .ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  transition: 0.4s;
  font-weight: 300;
}
.faq-item.open .ico {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-a p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
  padding-bottom: 28px;
}

.contact {
  background: var(--cream);
}
.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-info h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 22px;
}
.contact-info p {
  color: #55524c;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 36px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.contact-line .ci {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.contact-line .ct-label {
  font-size: 13px;
  color: var(--muted);
}
.contact-line .ct-val {
  font-size: 17px;
  color: #16151a;
  font-weight: 400;
}
.contact-form {
  background: var(--white);
  padding: 46px 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
}
.contact-form h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.contact-form .sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 13px;
  color: #5a5751;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  background: var(--cream);
  transition: 0.3s;
  color: #16151a;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 146, 60, 0.1);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.contact-form .btn {
  width: 100%;
  text-align: center;
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.contact-form .btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.form-msg {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gold);
  text-align: center;
  opacity: 0;
  transition: 0.4s;
}
.form-msg.show {
  opacity: 1;
}

footer {
  background:
    radial-gradient(
      ellipse 60% 70% at 50% 8%,
      rgba(212, 175, 55, 0.2),
      transparent 60%
    ),
    radial-gradient(ellipse 80% 80% at 50% 50%, #1a171d 0%, #0c0b0e 70%);
  color: #fff;
  padding: 70px 8% 30px;
}
.foot-grid {
  max-width: 1300px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
}
.foot-brand .logo {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}
.foot-brand p {
  color: #9b978e;
  line-height: 1.9;
  font-size: 15px;
  max-width: 300px;
}
.foot-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.foot-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 146, 60, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.foot-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.foot-social svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  transition: 0.3s;
}
.foot-social a:hover svg {
  stroke: #fff;
}
.foot-col h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 22px;
  font-weight: 500;
}
.foot-col a {
  display: block;
  color: #9b978e;
  text-decoration: none;
  margin-bottom: 13px;
  font-size: 15px;
  transition: 0.3s;
}
.foot-col a:hover {
  color: var(--gold-light);
}
.foot-bottom {
  max-width: 1300px;
  margin: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(184, 146, 60, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #84807a;
}

.tiers {
  background: var(--white);
}
.tier-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.tier-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.45s;
}
.tier-img {
  height: 330px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.tier-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}
.tier-card:hover .tier-img img {
  transform: scale(1.07);
}
.tier-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 15, 18, 0.35));
}
.tier-card.featured .tier-img::after {
  background: linear-gradient(180deg, transparent 40%, rgba(16, 15, 18, 0.85));
}
.tier-body {
  padding: 38px 40px 44px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.1);
}
.tier-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.04);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
}
.tier-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}
.tier-ribbon {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 8px 22px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(184, 146, 60, 0.45);
}
.tier-body a {
  text-decoration: none;
  color: inherit;
}
.tier-name {
  font-family: "Heebo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #28272e;
}
.tier-card.featured .tier-name {
  color: #fff;
}
.tier-latin {
  font-family: "Heebo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.tier-card.featured .tier-latin {
  color: var(--gold-bright);
}
.tier-price {
  font-family: "Heebo", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--gold);
}

.tier-price del {
  color: var(--muted);
}

.tier-card.featured .tier-price {
  color: #fff;
}
.tier-price small {
  font-family: "Heebo", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.tier-card.featured .tier-price small {
  color: #a8a49c;
}
.tier-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.tier-card.featured .tier-desc {
  color: #b8b4ac;
  border-color: rgba(184, 146, 60, 0.25);
}
.tier-feat {
  list-style: none;
  margin-bottom: 34px;
  flex-grow: 1;
}
.tier-feat li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  font-size: 15px;
  color: #403d38;
  line-height: 1.5;
}
.tier-card.featured .tier-feat li {
  color: #e3e0d9;
}
.tier-feat li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}
.tier-card.featured .tier-feat li svg {
  stroke: var(--gold-bright);
}
.tier-feat li.muted {
  color: #b3afa8;
}
.tier-feat li.muted svg {
  stroke: #cfcbc2;
}
.tier-card .tier-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.tier-card .tier-actions .btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.tier-card .btn-outline {
  background: transparent;
  border-color: var(--ink-2);
  color: var(--ink);
  font-size: 12px;
  padding: 12px 16px;
}
.tier-card .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.tier-card.featured .btn {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.tier-card.featured .btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.tier-note {
  max-width: 1240px;
  margin: 46px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.tier-note .gold {
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: rgba(16, 15, 18, 0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 8% 40px;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay a {
  color: #f1ece2;
  text-decoration: none;
  font-size: 28px;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: 0.3s;
  position: relative;
}
.mobile-menu-overlay a:hover {
  color: var(--gold-light);
}
.mobile-menu-overlay .nav-cta-mobile {
  margin-top: 20px;
  padding: 14px 40px;
  border: 1px solid rgba(232, 217, 168, 0.6);
  color: var(--gold-light) !important;
  font-size: 18px;
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu-overlay .nav-cta-mobile:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 26px;
  position: relative;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  position: absolute;
  right: 0;
  border-radius: 2px;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: 12px;
}
.burger span:nth-child(3) {
  top: 24px;
}
.burger.open span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}
@media (max-width: 980px) {
  section {
    padding: 90px 6%;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .trust-item:nth-child(2)::after,
  .trust-item:last-child::after {
    display: none;
  }
  .about-grid,
  .spotlight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero {
    padding: 140px 8% 80px;
  }
  .hero::before {
    inset: 14px;
  }
  .hero-watermark {
    font-size: 70vw;
  }
  .adv-grid,
  .cards,
  .testi-grid,
  .qual-grid,
  .tier-grid {
    grid-template-columns: 1fr;
  }
  .tier-card.featured {
    transform: none;
  }
  .tier-card.featured:hover {
    transform: translateY(-8px);
  }
  .proc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .proc-step {
    padding: 0;
  }
  .proc-step::after {
    display: none;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .menu {
    display: none !important;
  }
  .burger {
    display: flex;
  }
  .about-image {
    height: 420px;
  }
  .mobile-menu-overlay a {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .proc-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .trust-item::after {
    display: none !important;
  }
  .nav-cta {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .mobile-menu-overlay a {
    font-size: 20px;
  }
  .section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 400px) {
  section {
    padding: 60px 5%;
  }
  .hero {
    padding: 120px 5% 60px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 54px);
  }
  .about-image {
    height: 300px;
  }
  .mobile-menu-overlay a {
    font-size: 18px;
  }
  .adv-card {
    padding: 30px 24px;
  }
  .foot-grid {
    gap: 30px;
  }
  .tier-img {
    height: 260px;
  }
  .spot-img {
    height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

.page-content,
.shop-page {
  padding-top: 130px;
}
.woo-sparks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.shop-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8% 80px;
}

.woocommerce span.onsale {
  top: 1em;
  right: 1em;
}

/* ===== WhatsApp Floating ===== */
.karat-wa {
  position: fixed;
  bottom: 34px;
  left: 34px;
  z-index: 9999;
  font-family: "Heebo", sans-serif;
}
.karat-wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(247, 231, 19, 0.4);
  animation: wa-float 2.5s ease-in-out infinite;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.karat-wa-btn:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(247, 231, 19, 0.5);
}
@keyframes wa-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.karat-wa-dialog {
  position: absolute;
  bottom: 68px;
  left: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s;
}
.karat-wa-dialog.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.karat-wa-header {
  background: #075e54;
  color: #fff;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.karat-wa-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.8;
}
.karat-wa-close:hover {
  opacity: 1;
}
.karat-wa-body {
  padding: 16px;
}
.karat-wa-msg {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
}
.karat-wa-msg:focus {
  border-color: #25d366;
}
.karat-wa-send {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.karat-wa-send:hover {
  background: #1da851;
}
[dir="rtl"] .karat-wa {
  left: auto;
  right: 24px;
  bottom: 24px;
}
[dir="rtl"] .karat-wa-dialog {
  left: auto;
  right: 0;
}

/* ===== Cookie Consent Banner ===== */
.karat-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  font-family: "Heebo", sans-serif;
  direction: rtl;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.karat-cookie.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.karat-cookie-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}
.karat-cookie-main {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.1);
  padding: 28px 32px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.karat-cookie-text {
  flex: 1;
  min-width: 260px;
}
.karat-cookie-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.karat-cookie-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.karat-cookie-privacy {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  margin-top: 8px;
  transition: 0.25s;
}
.karat-cookie-privacy:hover {
  color: var(--gold);
}
.karat-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.karat-cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Heebo", sans-serif;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.karat-cookie-btn--accept {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.karat-cookie-btn--accept:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.karat-cookie-btn--reject {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.karat-cookie-btn--reject:hover {
  border-color: var(--muted);
  background: var(--stone);
}
.karat-cookie-btn--customize {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.karat-cookie-btn--customize:hover {
  background: var(--gold);
  color: var(--white);
}
.karat-cookie-btn--save {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.karat-cookie-btn--save:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.karat-cookie-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 0 32px 28px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    padding 0.45s ease;
}
.karat-cookie-panel.open {
  max-height: 500px;
  padding: 8px 32px 28px;
}
.karat-cookie-panel-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.karat-cookie-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.karat-cookie-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: 0.25s;
  position: relative;
}
.karat-cookie-option:hover {
  border-color: var(--gold-soft);
}
.karat-cookie-option-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.karat-cookie-option-label strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.karat-cookie-option-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.karat-cookie-switch {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.karat-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  background: #ddd;
  border-radius: 12px;
  transition: 0.3s;
}
.karat-cookie-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.karat-cookie-switch:checked + .karat-cookie-toggle {
  background: var(--gold);
}
.karat-cookie-switch:checked + .karat-cookie-toggle::after {
  right: 23px;
}
.karat-cookie-switch:disabled + .karat-cookie-toggle {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== Cookie Settings Floating Trigger ===== */
.karat-cookie-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9997;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}
.karat-cookie-trigger.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.karat-cookie-trigger:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.karat-cookie-trigger:hover svg {
  stroke: #fff;
}
.karat-cookie-trigger svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: 0.3s;
}
[dir="rtl"] .karat-cookie-trigger {
  right: auto;
  left: 24px;
}

.foot-bottom a:hover {
  color: var(--gold-light);
}
[dir="rtl"] .karat-cookie-main {
  text-align: right;
}

@media (max-width: 768px) {
  .karat-cookie-main {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px 20px;
    border-radius: 0;
  }
  .karat-cookie-text {
    min-width: 0;
  }
  .karat-cookie-text h3 {
    font-size: 16px;
  }
  .karat-cookie-text p {
    font-size: 13px;
  }
  .karat-cookie-actions {
    flex-direction: column;
  }
  .karat-cookie-btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
  .karat-cookie-panel {
    padding: 0 20px 20px;
    border-radius: 0;
  }
  .karat-cookie-panel.open {
    padding: 8px 20px 20px;
  }
  .karat-cookie-option {
    padding: 12px;
  }
  .karat-cookie-option-label strong {
    font-size: 14px;
  }
  .karat-cookie-option-desc {
    font-size: 12px;
  }
  .karat-cookie-trigger {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  [dir="rtl"] .karat-cookie-trigger {
    right: auto;
    left: 16px;
  }
}

@media (max-width: 400px) {
  .karat-cookie-main {
    padding: 18px 16px 16px;
  }
  .karat-cookie-panel {
    padding: 0 16px 16px;
  }
  .karat-cookie-panel.open {
    padding: 8px 16px 16px;
  }
}

/* ===== Accessibility Toolbar ===== */
.karat-a11y {
  position: fixed;
  bottom: 78px;
  right: 24px;
  z-index: 99996;
  font-family: "Heebo", sans-serif;
  direction: rtl;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.karat-a11y.show {
  opacity: 1;
  visibility: visible;
}
[dir="rtl"] .karat-a11y {
  right: auto;
  left: 24px;
}
.karat-a11y-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--white);
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: 0.3s;
  padding: 0;
}
.karat-a11y-toggle svg {
  width: 24px;
  height: 24px;
}
.karat-a11y-toggle:hover {
  background: var(--gold);
  transform: scale(1.08);
}
.karat-a11y-toggle:hover .cls-1 {
  fill: #fff;
}

.karat-a11y-panel {
  position: absolute;
  bottom: 58px;
  right: 0;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s;
}
[dir="rtl"] .karat-a11y-panel {
  right: auto;
  left: 0;
}
.karat-a11y-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.karat-a11y-header {
  background: var(--ink);
  color: var(--white);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.karat-a11y-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.8;
  transition: 0.2s;
}
.karat-a11y-close:hover {
  opacity: 1;
}
.karat-a11y-body {
  padding: 16px;
}
.karat-a11y-group {
  margin-bottom: 14px;
}
.karat-a11y-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}
.karat-a11y-size-group {
  display: flex;
  gap: 6px;
}
.karat-a11y-size-btn {
  flex: 1;
  padding: 10px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-family: "Heebo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: 0.25s;
}
.karat-a11y-size-btn:hover {
  border-color: var(--gold-soft);
}
.karat-a11y-size-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.karat-a11y-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.karat-a11y-option:last-of-type {
  border-bottom: none;
}
.karat-a11y-opt-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}
.karat-a11y-switch {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.karat-a11y-track {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  background: #ddd;
  border-radius: 11px;
  transition: 0.3s;
}
.karat-a11y-track::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.karat-a11y-switch:checked + .karat-a11y-track {
  background: var(--gold);
}
.karat-a11y-switch:checked + .karat-a11y-track::after {
  right: 21px;
}
.karat-a11y-reset {
  width: 100%;
  padding: 11px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-family: "Heebo", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: 0.25s;
}
.karat-a11y-reset:hover {
  border-color: var(--muted);
  color: var(--ink);
  background: var(--stone);
}

@media (max-width: 768px) {
  .karat-a11y {
    bottom: 70px;
    right: 16px;
  }
  [dir="rtl"] .karat-a11y {
    right: auto;
    left: 16px;
  }
  .karat-a11y-toggle {
    width: 42px;
    height: 42px;
  }
  .karat-a11y-panel {
    width: 260px;
  }
}
@media (max-width: 400px) {
  .karat-a11y {
    bottom: 62px;
    right: 12px;
  }
  [dir="rtl"] .karat-a11y {
    right: auto;
    left: 12px;
  }
  .karat-a11y-toggle {
    width: 38px;
    height: 38px;
  }
  .karat-a11y-panel {
    width: 240px;
  }
}

/* ===== Accessibility Mode Styles ===== */
html.a11y-large-text {
  zoom: 1.2;
}
html.a11y-xlarge-text {
  zoom: 1.5;
}
html.a11y-high-contrast {
  --gold: #ffd700;
  --gold-soft: #ffd700;
  --gold-bright: #ffed4a;
  --gold-light: #ffd700;
  --ink: #ffffff;
  --ink-2: #ffffff;
  --cream: #000000;
  --stone: #111111;
  --muted: #dddddd;
  --white: #000000;
  --whatsapp: #00e676;
}
html.a11y-high-contrast body {
  background: #000 !important;
  color: #fff !important;
}
html.a11y-high-contrast body::before {
  display: none !important;
}
html.a11y-high-contrast .btn,
html.a11y-high-contrast .karat-cookie-btn {
  border-width: 2px;
}
html.a11y-high-contrast * {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
html.a11y-grayscale body {
  filter: grayscale(1);
}
html.a11y-highlight-links a {
  text-decoration: underline !important;
  color: #0000ee !important;
  background: #ffff00 !important;
  outline: 2px solid #0000ee !important;
  outline-offset: 2px !important;
}
html.a11y-highlight-links a:hover {
  color: #ee0000 !important;
}
html.a11y-no-animation *,
html.a11y-no-animation *::before,
html.a11y-no-animation *::after,
html.a11y-no-animation .spark,
html.a11y-no-animation .reveal {
  animation: none !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}
html.a11y-no-animation .reveal {
  opacity: 1;
  transform: none;
}
html.a11y-no-animation .karat-wa-btn {
  animation: none !important;
}
html.a11y-no-animation .scroll-hint .line {
  animation: none !important;
  opacity: 0.4;
}
html.a11y-no-animation .hero h1 .gold {
  background-position: 0 center !important;
  animation: none !important;
}
html.a11y-no-animation .glint {
  animation: none !important;
  opacity: 1;
}
html.a11y-no-animation .tier-card:hover,
html.a11y-no-animation .adv-card:hover {
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .karat-a11y-toggle {
    animation: none;
  }
}
