/* ══════════════════════════════════════════════
   KALLARACKKAL — style.css
   Premium Fashion & Beauty | Since 2002
   ══════════════════════════════════════════════ */
/* ── 2. RESET / BASE ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: #f4efea;
  color: #ffffff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* ── 3. LOADING SCREEN ─────────────────────── */
.loader{
    position:fixed;
    inset:0;
    z-index:99999;
    background:linear-gradient(135deg,#0d0b08 0%,#1b1408 50%,#0d0b08 100%);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    transition:all .8s ease;
}

.loader.loader--gone{
    opacity:0;
    visibility:hidden;
}

.loader::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(201,168,76,.18),transparent 70%);
    animation:pulseAura 3s infinite ease-in-out;
}

.loader-logo-wrap{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.loader-glow{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(201,168,76,.5),transparent 70%);
    filter:blur(25px);
    animation:glowPulse 2s infinite ease-in-out;
}

.loader-logo{
    position:relative;
    width:140px;
    height:auto;
    z-index:2;
    opacity:0;
    transform:scale(.75);
    animation:logoReveal 1.6s forwards ease-out;
}

.loader-progress{
    width:220px;
    height:2px;
    background:rgba(255,255,255,.1);
    margin-top:35px;
    overflow:hidden;
    border-radius:20px;
}

.loader-progress-bar{
    display:block;
    width:0;
    height:100%;
    background:linear-gradient(90deg,#8b6914,#e2c97e,#8b6914);
    animation:loadingBar 2.4s ease forwards;
}

.loader-text{
    margin-top:20px;
    font-family:'Cinzel',serif;
    letter-spacing:4px;
    font-size:12px;
    color:#c9a84c;
    text-transform:uppercase;
    opacity:0;
    animation:textFade 1s forwards;
    animation-delay:.8s;
}

@keyframes logoReveal{
    0%{
        opacity:0;
        transform:scale(.75) rotate(-10deg);
        filter:blur(8px);
    }
    100%{
        opacity:1;
        transform:scale(1) rotate(0);
        filter:blur(0);
    }
}

@keyframes glowPulse{
    0%,100%{
        transform:scale(1);
        opacity:.6;
    }
    50%{
        transform:scale(1.25);
        opacity:1;
    }
}

@keyframes loadingBar{
    0%{
        width:0;
    }
    100%{
        width:100%;
    }
}

@keyframes textFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulseAura{
    0%,100%{
        transform:scale(.9);
        opacity:.4;
    }
    50%{
        transform:scale(1.2);
        opacity:.8;
    }
}
/* ── 4. SITE WRAPPER ───────────────────────── */
.site {
  min-height: 100vh;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.site--hidden {
  opacity: 0;
  pointer-events: none;
}
.site--visible {
  opacity: 1;
  pointer-events: auto;
}
/* ── 4.5. LAYOUT WRAPPERS ──────────────────── */
.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── 14. SCROLL ANCHOR OFFSET FOR STICKY HEADER ── */
section,
.contact__map-col {
  scroll-margin-top: 115px;
}

/* ── 5. HEADER / NAV ───────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 115px;
  background: linear-gradient(to bottom, rgba(10, 8, 4, 0.72) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.header--scrolled {
  background: rgba(13, 11, 8, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
/* Logo */
.header__logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.header__logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(201,168,76,0.7));
  transform: scale(1.03);
}
/* Nav list */
.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #c9a84c, #e2c97e);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__link:hover,
.nav__link--active {
  color: #e2c97e;
}
.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}
/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 19px;
}
/* Header Search Box */
.header__search {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}
.header__search.is-active {
  background: rgba(13, 11, 8, 0.6);
  border-color: #c9a84c;
}
.header__search-input {
  width: 0;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #ffffff;
  padding: 0;
  outline: none;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}
.header__search.is-active .header__search-input {
  width: 180px;
  padding: 8px 0 8px 16px;
  opacity: 1;
}
.header__search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.header__search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}
.header__search-btn:hover {
  color: #e2c97e;
  background: rgba(201, 168, 76, 0.12);
}
/* ── 6. BUTTONS ────────────────────────────── */
.btn-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}
.btn-icon:hover {
  color: #e2c97e;
  background: rgba(201, 168, 76, 0.12);
}
.btn {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 40px;
}
.btn--outline {
  padding: 8px 22px;
  border: 1.5px solid #c9a84c;
  color: #8c6a15;
  background: #d0ba9e;
}
.btn--outline:hover {
  background: #c9a84c;
  color: #0d0b08;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}
.btn--hero {
  padding: 12px 32px;
  background: #d0ba9e;
  border: none;
  color: #8b6914;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
}
.btn--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 40px;
}
.btn--hero:hover {
  background: #d8c4ad;
  color: #8b6914;
  box-shadow: 0 0 20px rgba(208, 186, 158, 0.5);
}
.btn--hero:hover::before {
  transform: translateX(0);
}
/* ── 7. HERO SECTION ───────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 120vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Parallax background */
.hero__bg {
  position: absolute;
  inset: -8%;
  background-image: url('assets/imgs/hero-img.webp');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
  filter: brightness(0.78) saturate(1.1);
}
/* Gold shimmer overlay */
.hero__shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 70% 50%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
/* Gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 8, 4, 0.82) 0%,
    rgba(10, 8, 4, 0.55) 45%,
    rgba(10, 8, 4, 0.15) 75%,
    transparent 100%
  );
}
/* Particle canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* Content block */
.hero__wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}
.hero__content {
  padding-top: 40px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
/* Elegance · Heritage · Radiance badges */
.hero__badges {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 2px;
}
.badge__sep {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  color: #c9a84c;
  opacity: 0.85;
}
/* Main heading */
.hero__heading {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.hero__heading-line {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  display: block;
}
.hero__heading-gold {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  color: #e2c97e;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}
/* Sub-copy */
.hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
/* ── 8. REVEAL ANIMATION SYSTEM ────────────── */
.reveal {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal--up    { transform: translateY(36px); }
.reveal--down  { transform: translateY(-20px); }
.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* ── 9. GOLD SCAN LINE (hero accent) ────────── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #c9a84c 30%,
    #e2c97e 50%,
    #c9a84c 70%,
    transparent 100%
  );
  opacity: 0;
  animation: scanReveal 1s ease-out 2.5s forwards;
}
@keyframes scanReveal {
  to { opacity: 0.7; }
}
/* ── 10. SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0b08; }
::-webkit-scrollbar-thumb { background: #8b6914; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #c9a84c; }
/* ── 10.5. COLLECTIONS ─────────────────────── */
.collections {
  background-color: #f4efea;
  padding: 60px 0;
  color: #332b22;
  overflow: hidden;
}
.collections__title {
  font-family: 'Cinzel', serif;
  font-size: 56px;
  font-weight: 600;
  color: #8b6914;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.collections__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #8b6914;
  letter-spacing: 1px;
  line-height: 1.6;
}
.collections__flower {
  margin-bottom: 8px;
  animation: slowSpin 12s linear infinite;
}
@keyframes slowSpin {
  to { transform: rotate(360deg); }
}
.collections__slider-container {
  margin-top: 40px;
}
.collections__slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  cursor: grab;
}
.collections__slider.is-dragging {
  cursor: grabbing;
}
.collections__slider.is-dragging .collection-card {
  pointer-events: none;
}
.collections__slider::-webkit-scrollbar {
  display: none;
}
.collection-card {
  flex: 0 0 260px;
  height: 340px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  background-color: #d8caba;
}
.collection-card:hover {
  transform: translateY(-8px);
}
.collection-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.collection-card:hover .collection-card__img {
  transform: scale(1.05);
}
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,11,8,0.8) 100%);
}
.collection-card__title {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  padding: 0 16px;
  line-height: 1.2;
  letter-spacing: 1px;
}
.btn--explore {
  background: #c7b6a1;
  color: #705212;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.btn--explore:hover {
  background: #b09e89;
  color: #ffffff;
}
.progress-bar {
  height: 4px;
  background: rgba(139, 105, 20, 0.2);
  border-radius: 2px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.progress-bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #8b6914;
  width: 20%;
  transition: width 0.3s ease;
}
.btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d8caba;
  border: none;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-circle:hover {
  background: #c7b6a1;
}
/* Fix wrapper conflicts with Bootstrap */
.collections .wrapper {
  max-width: 1280px;
  padding-left: 64px;
  padding-right: 64px;
}
/* ── 10.6. STORY ─────────────────────────── */
.story {
  background-color: #f4efea;
  overflow: hidden;
  padding: 60px 0;
}
.story .collections__flower {
  animation: slowSpin 12s linear infinite;
}
.story__img {
  width: 100%;
  height: 600px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  object-fit: cover;
  max-height: 600px;
}
.story__title {
  font-family: 'Cinzel', serif;
  font-size: 52px;
  font-weight: 600;
  color: #8b6914;
  line-height: 1.1;
  margin-bottom: 24px;
}
.story__desc {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #8b6914;
  opacity: 0.85;
  line-height: 1.8;
  font-weight: 500;
}
.story__btn {
  background: #d8caba;
  color: #8b6914;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 14px 32px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.story__btn:hover {
  background: #c7b6a1;
  color: #ffffff;
}
/* ── 10.7. STATS ─────────────────────────── */
.stats {
  background-color: #f4efea;
  overflow: hidden;
  padding: 60px 0;
}
.stats img[src*="flower"] {
  animation: slowSpin 12s linear infinite;
}
.stats__title {
  font-family: 'Cinzel', serif;
  font-size: 56px;
  font-weight: 600;
  color: #8b6914;
  line-height: 1.1;
  margin-bottom: 24px;
}
.stats__subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #8b6914;
  line-height: 1.8;
  font-weight: 500;
  max-width: 700px;
}
.stat-card {
  background: linear-gradient(90deg, #d6c8b0 0%, #e8dccb 35%, #f5efe6 50%, #e8dccb 65%, #d6c8b0 100%);
  border-radius: 120px 120px 0 0;
  padding: 64px 24px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
}
.stat-card__number {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 500;
  color: #705212;
  margin-bottom: 16px;
}
.stat-card__icon-wrap {
  margin-bottom: 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card__title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: #332b22;
  letter-spacing: 2px;
  margin-bottom: 24px;
  line-height: 1.4;
}
.stat-card__desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #5c471c;
  line-height: 1.6;
  border-top: 1px solid rgba(139, 105, 20, 0.2);
  padding-top: 24px;
  margin-top: auto;
  width: 100%;
}
/* ── 10.8. CONTACT ───────────────────────── */
.contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/imgs/hero-bg.webp'); /* Using hero background as placeholder */
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.8);
  transform: scale(1.05); /* Prevents blurred edges from showing background */
  z-index: 0;
}
.contact__card {
  background: #f0e6da;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
  min-height: 600px;
}
.contact__form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.contact__title {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 600;
  color: #705212;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.contact__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.contact__social a {
  color: #2b333e; /* Dark navy like screenshot */
  transition: color 0.3s ease, transform 0.3s ease;
}
.contact__social a:hover {
  color: #8b6914;
  transform: translateY(-2px);
}
.contact__form .form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #5c471c;
  margin-bottom: 8px;
  display: block;
}
.contact__form .form-label .text-muted {
  color: #a4967d !important;
  font-size: 11px;
}
.contact__form .form-control {
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #332b22;
  width: 100%;
  transition: border-color 0.3s ease;
  margin-bottom: 16px; /* Space between fields when stacking */
}
.contact__form textarea.form-control {
  background: rgba(255, 255, 255, 0.4); /* Slightly transparent textarea */
  border: 1px solid rgba(139, 105, 20, 0.2);
  resize: none;
}
.contact__form .form-control:focus {
  outline: none;
  border-color: #8b6914;
}
.contact__form .form-control::placeholder {
  color: #a4967d;
}
.contact__submit {
  background: #363636;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 14px 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 10px;
  transition: background 0.3s ease;
  cursor: pointer;
}
.contact__submit:hover {
  background: #1a1a1a;
}
.contact__map-col {
  background: #e8e8e8; /* map fallback */
}
.contact__map-col img{
    height:100%;
    object-fit:cover;
}
.contact__map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(1.05); /* Match the stylized map look */
}
/* ── 12. FOOTER ────────────────────────────── */
.footer {
  background-color: #f4f5e7;
  padding: 80px 0 10px;
  color: #332b22;
}
.footer__top {
  margin-bottom: 50px;
}
.footer__heading {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #8a8881;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.footer__links li {
  margin-bottom: 16px;
}
.footer__links a {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 500;
  color: #38352b;
  transition: color 0.3s ease;
  letter-spacing: 1.5px;
}
.footer__links a:hover {
  color: #8b6914;
}
/*.footer__col--center {*/
/*  padding-left: 8%;*/
/*}*/
.footer__address {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 500;
  color: #38352b;
  line-height: 1.8;
  letter-spacing: 1px;
}
.footer__middle {
  border-top: 1px solid rgba(56, 53, 43, 0.1);
  padding-top: 25px;
  margin-bottom: 60px;
}
.footer__small-text {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #5a574f;
  line-height: 1.6;
}
/* ── 13. HAMBURGER / MOBILE DRAWER (hidden on desktop) ── */
.nav-toggle {
  display: none;
}
.mobile-drawer {
  display: none;
}
.footer__brand-img {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: block;
  opacity: 0.4;
}
.branch-map iframe {
    border: 1px solid #00000040;
    border-radius: 15px;
    box-shadow: 0 2px 8px 0 #00000047;
    margin-bottom: 20px;
}

@media only screen and (min-width: 300px) and (max-width: 576.98px) {
  /* ── Reduce header height ── */
  .header {
    height: 72px;
  }
  .wrapper {
    padding: 0 20px;
  }
  section,
  .contact__map-col {
    scroll-margin-top: 72px;
  }
  /* ── Shrink logo ── */
  .header__logo-img {
    height: 60px;
  }
  /* ── Hide desktop nav & actions ── */
  .header__nav,
  .header__actions {
    display: none;
  }
  /* ── Show hamburger ── */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.45);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .nav-toggle:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
  }
  .nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #e2c97e;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                width 0.3s ease;
    transform-origin: center;
  }
  /* Animated X when open */
  .nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* ── Mobile Drawer ── */
  .mobile-drawer {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 8, 4, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                visibility 0.35s ease;
    z-index: 99;
  }
  .mobile-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-drawer__inner {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  /* Search bar inside drawer */
  .mobile-drawer__search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 40px;
    padding: 10px 18px;
    transition: border-color 0.3s ease;
  }
  .mobile-drawer__search:focus-within {
    border-color: #c9a84c;
  }
  .mobile-drawer__search svg {
    color: #c9a84c;
    flex-shrink: 0;
  }
  .mobile-drawer__search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #ffffff;
  }
  .mobile-drawer__search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }
  /* Nav links */
  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-drawer__nav li {
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }
  .mobile-drawer__nav li:last-child {
    border-bottom: none;
  }
  .mobile-drawer__link {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 16px 4px;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  .mobile-drawer__link:hover,
  .mobile-drawer__link--active {
    color: #e2c97e;
    padding-left: 12px;
  }
  /* CTA button */
  .mobile-drawer__cta {
    align-self: flex-start;
    padding: 10px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    border-color: #c9a84c;
    color: #c9a84c;
  }
  .mobile-drawer__cta:hover {
    background: #c9a84c;
    color: #0d0b08;
  }
  /* ── Hero / Banner Mobile Adjustments ── */
  .hero {
    min-height: auto;
    height: 80vh;
  }
  .hero__content {
    padding-top: 80px;
  }
  .hero__heading {
    font-size: 32px;
  }
  .hero__heading-line,
  .hero__heading-gold {
    font-size: 32px;
  }
  .hero__sub {
    font-size: 10px;
    line-height: 1.6;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .badge {
    font-size: 13px;
  }
  /* ── Collections Mobile Adjustments ── */
  .collections {
    padding: 40px 0;
  }
  .collections .wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .collections__title {
    font-size: 30px;
    align-items: center;
  }
  .collections__title .collections__flower {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }
  .collections__subtitle {
    font-size: 14px;
  }
  .collection-card {
    flex: 0 0 100%;
    height: 280px;
  }
  .collections .row.align-items-center.mt-5 {
    flex-wrap: wrap;
    gap: 20px;
  }
  /* Hide progress bar on small mobile to save space */
  .collections .row.align-items-center.mt-5 > .col[style*="max-width: 400px"] {
    display: none;
  }
  /* Reset left margin on arrows/explore row */
  .collections .row.align-items-center.mt-5 > .col.d-flex {
    width: auto;
    flex: 1;
    justify-content: flex-end !important;
  }
  /* ── Story Mobile Adjustments ── */
  .story {
    padding: 40px 0;
  }
  .story__img {
    height: 300px;
    border-radius: 24px;
    margin-bottom: 24px;
  }
  .story .collections__flower {
    width: 50px;
    height: 50px;
    margin-bottom: 16px !important;
  }
  .story__title {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .story__desc {
    font-size: 14px;
    margin-bottom: 32px !important;
  }
  .story__btn {
    padding: 12px 28px;
    font-size: 12px;
  }
  /* ── Stats Mobile Adjustments ── */
  .stats {
    padding: 40px 0;
  }
  .stats img[src*="flower"] {
    width: 50px;
    height: 50px;
  }
  .stats__title {
    font-size: 30px;
  }
  .stats__subtitle {
    font-size: 14px;
    margin-top: 16px !important;
  }
  .stat-card {
    border-radius: 80px 80px 0 0;
    padding: 48px 20px 32px;
  }
  .stat-card__number {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .stat-card__title {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .stat-card__desc {
    padding-top: 16px;
    font-size: 12px;
  }
  /* ── Contact Mobile Adjustments ── */
  .contact {
    padding: 40px 0;
  }
  .contact__form-col {
    padding: 40px 24px;
  }
  .contact__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .contact__social {
    margin-bottom: 32px;
  }
  .contact__form .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }
  .contact__submit {
    width: 100%;
    padding: 14px;
  }
  .contact__map {
    min-height: 300px;
  }
  /* ── Footer Mobile Adjustments ── */
  .footer {
    padding: 40px 0 10px;
  }
  .footer__top {
    margin-bottom: 20px;
  }
  .footer__col {
    text-align: center !important;
    margin-bottom: 40px;
  }
  .footer__col--center {
    padding-left: 0;
  }
  .footer__middle {
    margin-bottom: 40px;
  }
  .footer__middle > div {
    text-align: center !important;
    margin-bottom: 24px;
  }
  .footer__middle > div:last-child {
    margin-bottom: 0;
  }
  .footer__small-text {
    font-size: 10px;
  }
  .footer__address {
    font-size: 13px;
  }
  .footer__links a {
    font-size: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width:768.98px) {
  /* ── Tablet Header & Nav Drawer ── */
  .header {
    height: 80px;
  }
  .wrapper {
    padding: 0 32px;
  }
  section,
  .contact__map-col {
    scroll-margin-top: 80px;
  }
  .header__logo-img {
    height: 70px;
  }
  .header__nav,
  .header__actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.45);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .nav-toggle:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
  }
  .nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #e2c97e;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* Tablet Drawer */
  .mobile-drawer {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 8, 4, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
    z-index: 99;
  }
  .mobile-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-drawer__inner {
    padding: 32px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .mobile-drawer__search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 40px;
    padding: 12px 20px;
  }
  .mobile-drawer__search:focus-within {
    border-color: #c9a84c;
  }
  .mobile-drawer__search svg {
    color: #c9a84c;
    flex-shrink: 0;
  }
  .mobile-drawer__search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #ffffff;
  }
  .mobile-drawer__search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }
  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-drawer__nav li {
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }
  .mobile-drawer__nav li:last-child {
    border-bottom: none;
  }
  .mobile-drawer__link {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 18px 8px;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  .mobile-drawer__link:hover,
  .mobile-drawer__link--active {
    color: #e2c97e;
    padding-left: 16px;
  }
  .mobile-drawer__cta {
    align-self: flex-start;
    padding: 12px 32px;
    font-size: 13px;
    letter-spacing: 2px;
    border-color: #c9a84c;
    color: #c9a84c;
  }
  .mobile-drawer__cta:hover {
    background: #c9a84c;
    color: #0d0b08;
  }
  /* ── Banner Tablet Adjustments ── */
  .hero {
    min-height: 70vh;
    height: auto;
    padding-bottom: 60px;
  }
  .hero__content {
    padding-top: 120px;
  }
  .hero__heading,
  .hero__heading-line,
  .hero__heading-gold {
    font-size: 36px;
  }
  .hero__heading-line.d-flex {
    flex-wrap: wrap;
    gap: 8px !important;
  }
  .hero__sub {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 28px;
    max-width: 95%;
  }
  .badge {
    font-size: 14px;
  }
  /* ── Collections Tablet Adjustments ── */
  .collections {
    padding: 50px 0;
  }
  .collections .wrapper {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .collections__title {
    font-size: 38px;
    align-items: center;
  }
  .collections__title .collections__flower {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }
  .collections__subtitle {
    font-size: 15px;
  }
  .collection-card {
    flex: 0 0 240px;
    height: 300px;
  }
  .collections .row.align-items-center.mt-5 {
    flex-wrap: nowrap;
    gap: 16px;
  }
  .collections .row.align-items-center.mt-5 > .col[style*="max-width: 400px"] {
    flex: 1;
    max-width: none !important;
  }
  /* ── Story Tablet Adjustments ── */
  .story {
    padding: 50px 0;
  }
  .story__img {
    height: 400px;
    border-radius: 32px;
    margin-bottom: 32px;
  }
  .story .collections__flower {
    width: 60px;
    height: 60px;
    margin-bottom: 20px !important;
  }
  .story__title {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .story__desc {
    font-size: 15px;
    margin-bottom: 40px !important;
  }
  .story__btn {
    padding: 14px 32px;
    font-size: 13px;
  }
  /* ── Stats Tablet Adjustments ── */
  .stats {
    padding: 50px 0;
  }
  .stats img[src*="flower"] {
    width: 60px;
    height: 60px;
  }
  .stats__title {
    font-size: 38px;
  }
  .stats__subtitle {
    font-size: 15px;
    margin-top: 16px !important;
  }
  .stat-card {
    border-radius: 100px 100px 0 0;
    padding: 56px 24px 36px;
    max-width: 440px;
    margin: 0 auto;
  }
  .stat-card__number {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .stat-card__title {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .stat-card__desc {
    padding-top: 20px;
    font-size: 13px;
  }
  /* ── Footer Tablet Adjustments ── */
  .footer {
    padding: 50px 0 20px;
  }
  .footer__top {
    margin-bottom: 24px;
  }
  .footer__col {
    text-align: center !important;
    margin-bottom: 40px;
  }
  .footer__col--center {
    padding-left: 0;
  }
  .footer__middle {
    margin-bottom: 40px;
  }
  .footer__middle > div {
    text-align: center !important;
    margin-bottom: 24px;
  }
  .footer__middle > div:last-child {
    margin-bottom: 0;
  }
  .footer__small-text {
    font-size: 11px;
  }
  .footer__address {
    font-size: 14px;
  }
  .footer__links a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width:991.98px) {
  /* ── Large Tablet Header & Nav Drawer ── */
  .header {
    height: 90px;
  }
  .wrapper {
    padding: 0 40px;
  }
  .header__logo-img {
    height: 75px;
  }
  .header__nav,
  .header__actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.45);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .nav-toggle:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
  }
  .nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #e2c97e;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* Drawer */
  .mobile-drawer {
    display: block;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    background: #0a0804;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
    z-index: 99;
  }
  .mobile-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-drawer__inner {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
  }
  .mobile-drawer__search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 40px;
    padding: 14px 24px;
  }
  .mobile-drawer__search:focus-within {
    border-color: #c9a84c;
  }
  .mobile-drawer__search svg {
    color: #c9a84c;
    flex-shrink: 0;
  }
  .mobile-drawer__search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #ffffff;
  }
  .mobile-drawer__search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }
  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-drawer__nav li {
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }
  .mobile-drawer__nav li:last-child {
    border-bottom: none;
  }
  .mobile-drawer__link {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 20px 12px;
    text-align: center;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer__link:hover,
  .mobile-drawer__link--active {
    color: #e2c97e;
    transform: scale(1.05);
  }
  .mobile-drawer__cta {
    align-self: center;
    padding: 14px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    border-color: #c9a84c;
    color: #8c6a15;
    background: #d0ba9e;
}
  
  .mobile-drawer__cta:hover {
    background: #c9a84c;
    color: #0d0b08;
  }
  /* ── Hero Large Tablet Adjustments ── */
  .hero {
    height: 80vh;
  }
  /* ── Footer Large Tablet Adjustments ── */
  .footer {
    padding: 50px 0 20px;
  }
  .footer__top {
    margin-bottom: 24px;
  }
  /*.footer__top > .col-md-4 {*/
  /*  flex: 0 0 100%;*/
  /*  max-width: 100%;*/
  /*}*/
  .footer__col {
    text-align: center !important;
    margin-bottom: 40px;
  }
  .footer__col--center {
    padding-left: 0;
  }
  .footer__middle {
    margin-bottom: 40px;
  }
  .footer__middle > div {
    /*flex: 0 0 100%;*/
    /*max-width: 100%;*/
    text-align: center !important;
    margin-bottom: 24px;
  }
  .footer__middle > div:last-child {
    margin-bottom: 0;
  }
  .footer__small-text {
    font-size: 11px;
  }
  .footer__address {
    font-size: 14px;
  }
  .footer__links a {
    font-size: 16px;
  }
  .footer__brand-img {
    max-width: 80%;
  }
}

@media only screen and (min-width: 991px) and (max-width:1200.98px) {
  /* ── Desktop/Large Tablet Header & Nav Drawer ── */
  .header {
    height: 100px;
  }
  .wrapper {
    padding: 0 64px;
  }
  section,
  .contact__map-col {
    scroll-margin-top: 90px;
  }
  .header__logo-img {
    height: 85px;
  }
  .header__nav,
  .header__actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.45);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .nav-toggle:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
  }
  .nav-toggle__bar {
    display: block;
    width: 26px;
    height: 2px;
    background: #e2c97e;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* Drawer */
  .mobile-drawer {
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: #0a0804;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
    z-index: 99;
  }
  .mobile-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-drawer__inner {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 600px;
    margin: 0 auto;
  }
  .mobile-drawer__search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 40px;
    padding: 16px 28px;
  }
  .mobile-drawer__search:focus-within {
    border-color: #c9a84c;
  }
  .mobile-drawer__search svg {
    color: #c9a84c;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
  .mobile-drawer__search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #ffffff;
  }
  .mobile-drawer__search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }
  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-drawer__nav li {
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }
  .mobile-drawer__nav li:last-child {
    border-bottom: none;
  }
  .mobile-drawer__link {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 24px 12px;
    text-align: center;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .mobile-drawer__link:hover,
  .mobile-drawer__link--active {
    color: #e2c97e;
    transform: scale(1.05);
  }
  .mobile-drawer__cta {
    align-self: center;
    padding: 16px 48px;
    font-size: 15px;
    letter-spacing: 2px;
    border-color: #c9a84c;
    color: #c9a84c;
  }
  .mobile-drawer__cta:hover {
    background: #c9a84c;
    color: #0d0b08;
  }
}

