:root {
  --c: #8b1a2e;
  --cd: #5c0e1d;
  --cl: #b5243f;
  --g: #c9933a;
  --gl: #e8b85a;
  --gp: #f5e6c8;
  --iv: #fdf8f0;
  --cr: #f5ecd7;
  --ch: #1e1410;
  --tx: #2d1b0e;
  --tm: #6b4c38;
  --wh: #ffffff;
  --sh: 0 8px 40px rgba(139, 26, 46, 0.12);
  --r: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--iv);
  color: var(--tx);
  overflow-x: hidden;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--cd);
  color: var(--gl);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--gl);
  text-decoration: none;
  font-weight: 700;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 147, 58, 0.25);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--g);
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cd);
  line-height: 1.1;
}

.nav-brand span {
  display: block;
  font-size: 0.68rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: var(--tm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--tx);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--c);
}

.btn-nav-cta {
  background: var(--c) !important;
  color: var(--wh) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
}

.btn-nav-cta:hover {
  background: var(--cd) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cd);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 56px 60px 40px;
  gap: 48px;
  position: relative;
  overflow: hidden;
  background-color: var(--iv);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(201, 147, 58, 0.12) 0px,
      rgba(201, 147, 58, 0.12) 1px,
      transparent 1px,
      transparent 14px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(201, 147, 58, 0.12) 0px,
      rgba(201, 147, 58, 0.12) 1px,
      transparent 1px,
      transparent 14px
    );
}

.hero::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 26, 46, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: 40%;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 147, 58, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero > div {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gp);
  border: 1px solid var(--g);
  color: var(--cd);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.07;
  color: var(--ch);
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: italic;
  color: var(--c);
}

.hero-sub {
  font-size: 1rem;
  color: var(--tm);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--c);
  color: var(--wh);
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(139, 26, 46, 0.28);
}

.btn-primary:hover {
  background: var(--cd);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 46, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--c);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid var(--c);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: var(--c);
  color: var(--wh);
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 147, 58, 0.3);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c);
  line-height: 1;
}

.trust-lbl {
  font-size: 0.72rem;
  color: var(--tm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.hero-img-main {
  grid-column: 1/3;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.hero-img-main img,
.hero-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.hero-img-main:hover img {
  transform: scale(1.04);
}

.hero-img-sm {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.hero-img-sm:hover img {
  transform: scale(1.06);
}

.img-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(201, 147, 58, 0.92);
  color: var(--wh);
  padding: 5px 13px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--c);
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  color: var(--gl);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-track span i {
  color: var(--gp);
  margin-right: 6px;
  font-size: 0.7rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── VISIT NOTICE ─── */
.visit-notice {
  background: linear-gradient(135deg, #fff8e7, #fef3c7);
  border: 2px solid var(--g);
  border-radius: var(--r);
  padding: 22px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 0 60px;
}

.vn-icon {
  width: 44px;
  height: 44px;
  background: var(--g);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--wh);
  flex-shrink: 0;
}

.vn-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cd);
  margin-bottom: 5px;
}

.vn-text {
  font-size: 0.86rem;
  color: var(--tx);
  line-height: 1.6;
}

.vn-text strong {
  color: var(--c);
}

/* ─── COMMON SECTION ─── */
section {
  padding: 76px 60px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 9px;
}

.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  font-weight: 700;
  color: var(--ch);
  line-height: 1.14;
  margin-bottom: 14px;
}

.sec-sub {
  color: var(--tm);
  font-size: 0.97rem;
  line-height: 1.68;
  max-width: 560px;
}

/* ─── COLLECTIONS ─── */
#collections {
  background: var(--cr);
}

.col-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
  gap: 20px;
  flex-wrap: wrap;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--wh);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(139, 26, 46, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(139, 26, 46, 0.15);
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.p-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  background: var(--c);
  color: var(--wh);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ch);
  margin-bottom: 3px;
}

.product-desc {
  font-size: 0.78rem;
  color: var(--tm);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c);
}

.btn-reserve {
  background: var(--c);
  color: var(--wh);
  border: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-reserve:hover {
  background: var(--cd);
  transform: translateY(-1px);
}

/* ─── HOW IT WORKS ─── */
#howitworks {
  background: var(--iv);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--g), var(--gl), var(--g));
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--wh);
  border: 3px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--c);
  box-shadow: 0 4px 18px rgba(201, 147, 58, 0.2);
  transition: all 0.3s;
}

.step-item:hover .step-circle {
  background: var(--c);
  color: var(--wh);
  border-color: var(--c);
}

.step-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ch);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--tm);
  line-height: 1.55;
}

/* ─── PROMISE ─── */
#promise {
  background: var(--cr);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.promise-card {
  background: var(--wh);
  border-radius: var(--r);
  padding: 26px 22px;
  border-top: 3px solid var(--g);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s;
}

.promise-card:hover {
  transform: translateY(-3px);
}

.p-icon {
  width: 48px;
  height: 48px;
  background: var(--gp);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--c);
  margin-bottom: 14px;
}

.p-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ch);
  margin-bottom: 7px;
}

.p-text {
  font-size: 0.82rem;
  color: var(--tm);
  line-height: 1.6;
}

/* ─── ORDER SECTION ─── */
#order {
  background: linear-gradient(135deg, var(--cd) 0%, var(--c) 60%, #a0203a 100%);
  position: relative;
  overflow: hidden;
}

#order::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(201, 147, 58, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}

#order .eyebrow {
  color: var(--gl);
}

#order .sec-title {
  color: var(--iv);
}

#order .sec-sub {
  color: rgba(253, 248, 240, 0.72);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 38px;
  align-items: start;
}

.order-form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 34px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gl);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--iv);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 248, 240, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gl);
  background: rgba(255, 255, 255, 0.14);
}

.form-group select option {
  color: var(--tx);
  background: var(--iv);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.delivery-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.dtog {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  color: var(--iv);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dtog.active {
  border-color: var(--gl);
  background: rgba(201, 147, 58, 0.25);
  color: var(--gl);
}

.pay-note {
  background: rgba(201, 147, 58, 0.18);
  border: 1px solid rgba(201, 147, 58, 0.4);
  border-radius: 8px;
  padding: 13px 15px;
  margin-bottom: 18px;
  color: var(--gp);
  font-size: 0.82rem;
  line-height: 1.55;
}

.pay-note strong {
  color: var(--gl);
}

.selected-product-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--gl);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-pay {
  width: 100%;
  background: linear-gradient(135deg, var(--g), var(--gl));
  color: var(--cd);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201, 147, 58, 0.4);
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 147, 58, 0.5);
}

.btn-pay:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.order-info-col {
  color: var(--iv);
}

.order-info-col h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.order-steps-list {
  list-style: none;
  margin: 20px 0 28px;
}

.order-steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.step-num-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--g);
  color: var(--cd);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-txt strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.step-txt span {
  font-size: 0.8rem;
  color: rgba(253, 248, 240, 0.62);
}

.cchips {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cchip {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--iv);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.cchip:hover {
  color: var(--gl);
}

.cchip-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--ch);
}

#gallery .eyebrow {
  color: var(--gl);
}

#gallery .sec-title {
  color: var(--iv);
}

#gallery .sec-sub {
  color: rgba(253, 248, 240, 0.58);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  margin-top: 32px;
}

.g-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.g-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.g-item:hover img {
  transform: scale(1.08);
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(139, 26, 46, 0);
  transition: background 0.3s;
}

.g-item:hover::after {
  background: rgba(139, 26, 46, 0.22);
}

/* ─── VIDEOS ─── */
#videos {
  background: var(--cr);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.video-wrap {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--sh);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── JOIN GROUP ─── */
.whatsapp-join {
  background: linear-gradient(135deg, #128c7e, #25d366);
  border-radius: var(--r);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 60px 60px;
}

.wj-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wj-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--wh);
  flex-shrink: 0;
}

.wj-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 4px;
}

.wj-sub {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-wa-join {
  background: var(--wh);
  color: #128c7e;
  padding: 13px 26px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-wa-join:hover {
  transform: scale(1.03);
}

/* ─── INVOICE LOOKUP ─── */
#lookup {
  background: var(--iv);
}

.lookup-card {
  max-width: 540px;
  margin: 36px auto 0;
  background: var(--wh);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--sh);
}

.lookup-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ch);
  margin-bottom: 6px;
}

.lookup-card p {
  font-size: 0.85rem;
  color: var(--tm);
  margin-bottom: 20px;
}

.lookup-row {
  display: flex;
  gap: 12px;
}

.lookup-row input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid rgba(201, 147, 58, 0.35);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--tx);
  outline: none;
  transition: border-color 0.2s;
}

.lookup-row input:focus {
  border-color: var(--g);
}

.btn-lookup {
  background: var(--c);
  color: var(--wh);
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-lookup:hover {
  background: var(--cd);
}

.orders-result {
  margin-top: 20px;
}

.order-result-item {
  background: var(--iv);
  border: 1px solid rgba(201, 147, 58, 0.3);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}

.ori-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.ori-id {
  font-weight: 700;
  color: var(--c);
  font-size: 0.9rem;
  font-family: monospace;
}

.ori-status {
  background: var(--gp);
  color: var(--cd);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ori-detail {
  font-size: 0.82rem;
  color: var(--tm);
  line-height: 1.6;
}

.btn-dl-invoice {
  background: var(--c);
  color: var(--wh);
  border: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: background 0.2s;
}

.btn-dl-invoice:hover {
  background: var(--cd);
}

.no-orders {
  text-align: center;
  padding: 24px;
  color: var(--tm);
  font-size: 0.9rem;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--cr);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 36px;
  align-items: start;
}

.contact-card {
  background: var(--wh);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--sh);
}

.c-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--cr);
}

.c-row:last-child {
  border-bottom: none;
}

.c-row-icon {
  width: 38px;
  height: 38px;
  background: var(--gp);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--c);
  flex-shrink: 0;
}

.c-row-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--tm);
  font-weight: 600;
  margin-bottom: 3px;
}

.c-row a,
.c-row p {
  font-size: 0.9rem;
  color: var(--tx);
  text-decoration: none;
  font-weight: 500;
}

.c-row a:hover {
  color: var(--c);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--wh);
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.soc-btn:hover {
  transform: scale(1.1);
}

.soc-wa {
  background: #25d366;
}

.soc-ig {
  background: #e1306c;
}

.soc-fb {
  background: #1877f2;
}

.soc-yt {
  background: #ff0000;
}

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}
/* ─── FOOTER ─── */
footer {
  background: var(--ch);
  color: rgba(253, 248, 240, 0.6);
  padding: 48px 60px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--iv);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--gl);
  line-height: 1.6;
  margin-bottom: 14px;
}

.fc-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.fc-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 248, 240, 0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.fc-social a:hover {
  border-color: var(--gl);
  color: var(--gl);
}

.fc-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--iv);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.fc-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc-links a {
  color: rgba(253, 248, 240, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.fc-links a i {
  font-size: 0.75rem;
  color: var(--gl);
  width: 13px;
}

.fc-links a:hover {
  color: var(--gl);
}

.fc-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-contact div {
  font-size: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.fc-contact div i {
  color: var(--gl);
  font-size: 0.78rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.fc-contact a {
  color: rgba(253, 248, 240, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.fc-contact
/* ─── FLOATING WA ─── */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--wh);
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  transition: all 0.25s;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ─── SUCCESS MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: var(--wh);
  border-radius: 20px;
  padding: 42px 38px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--wh);
  margin: 0 auto 18px;
}

.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ch);
  margin-bottom: 9px;
}

.modal-sub {
  color: var(--tm);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 7px;
}

.modal-oid {
  display: inline-block;
  background: var(--gp);
  color: var(--cd);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.86rem;
  margin: 10px 0 18px;
  font-family: monospace;
  letter-spacing: 0.04em;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-modal-dl {
  background: var(--c);
  color: var(--wh);
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
}

.btn-modal-dl:hover {
  background: var(--cd);
}

.btn-modal-close {
  background: var(--iv);
  color: var(--tx);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background 0.2s;
}

.btn-modal-close:hover {
  background: var(--cr);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  section {
    padding: 56px 24px;
  }

  nav {
    padding: 11px 20px;
  }

  footer,
  .visit-notice,
  .whatsapp-join {
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 36px 24px 28px;
    min-height: auto;
    gap: 28px;
  }

  .hero-visual {
    grid-template-columns: 1fr 1fr;
    order: -1;
  }

  .hero-img-main {
    grid-column: 1/3;
  }

  .hero-trust {
    gap: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .g-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .order-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--iv);
    border-bottom: 1px solid var(--cr);
    padding: 14px 22px 18px;
    gap: 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
    z-index: 99;
  }

  .menu-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .steps-grid::before {
    display: none;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .col-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .modal-box {
    padding: 28px 20px;
  }

  .lookup-row {
    flex-direction: column;
  }

  .delivery-toggle {
    flex-direction: column;
  }
}

/* ─── LIGHTBOX ─── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  animation: lbIn 0.3s ease;
}

@keyframes lbIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.lightbox-counter {
  text-align: center;
  color: var(--gl);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 0.08em;
}

.lb-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.lb-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.lb-prev {
  left: -56px;
}

.lb-next {
  right: -56px;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(201, 147, 58, 0.35);
  border-color: var(--gl);
}

/* thumbnail strip */
.lb-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.lb-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.lb-thumb.active {
  border-color: var(--gl);
}

.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* gallery item cursor */
.g-item {
  cursor: zoom-in;
}

@media (max-width: 680px) {
  .lb-prev {
    left: -12px;
  }

  .lb-next {
    right: -12px;
  }

  .lb-thumbs {
    display: none;
  }
}

/* ─── ANIMATION BASE ─── */
.anim {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.anim.visible {
  opacity: 1;
  transform: none !important;
}

/* directions */
.anim-up {
  transform: translateY(36px);
}

.anim-down {
  transform: translateY(-36px);
}

.anim-left {
  transform: translateX(-40px);
}

.anim-right {
  transform: translateX(40px);
}

.anim-scale {
  transform: scale(0.93);
}

.anim-fade {
  transform: none;
}

/* stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}
