 @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Young+Serif:ital@0;1&display=swap");

 
 html, body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    a { color:#613e20; }


    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all .4s ease;
    }
    header.transparent { background: transparent; box-shadow: none; }
    header.solid { background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
    .logo img { height: 20px; transition: transform .3s ease; }

    .header-icons { display: flex; align-items: center; gap: 18px; }
    header.transparent .burger-btn, header.transparent .user-icon { font-size: 1.8rem; cursor: pointer; color: #fff; transition: color .3s; }
    header.transparent .logo-light {display: inline-block;}
    header.transparent .logo-dark {display: none;}

       header.solid .logo-light {display: none;}
    header.solid .logo-dark {display: inline-block;}

    header.solid .burger-btn, header.solid .user-icon { font-size: 1.8rem; cursor: pointer; color: #000; transition: color .3s; }
    header.solid .burger-btn, header.solid .user-icon { color: #000; }
    .burger-btn:hover, .user-icon:hover { color: #613e20; }

    .overlay-menu {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(17,17,17,0.98); color: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      transform: translateY(-100%);
      transition: transform .5s ease;
      z-index: 200;
    }
    .overlay-menu.active { transform: translateY(0); }
    .overlay-menu a {
      color: #fff; text-decoration: none;
      font-size: 1.8rem; margin: 15px 0;
      font-weight: 600; transition: color .2s ease;
    }
    .overlay-menu a:hover { color: #613e20; }
    .overlay-close {
      position: absolute; top: 25px; right: 30px;
      font-size: 2rem; cursor: pointer; color: #fff;
    }

    .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; z-index: 0;
      filter: brightness(0.7);
    }

    .hero-swiper { width: 100%; height: 100dvh; }
    .hero-swiper .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: right;

      color: #fff;
    }
    .hero-swiper .swiper-slide::after {
      content: ""; position: absolute; inset: 0;
     z-index: 1;
    }

 .text-left { text-align:left; }
    
    .slide-content { position: absolute; bottom:10%;  z-index: 2;  padding: 0 100px; text-shadow: 0 2px 6px rgba(0,0,0,0.4);  }
    .slide-content h1 { font-size: 2.8rem; font-weight: 700; font-family: 'Young Serif',serif; margin-bottom:30px; }
    .slide-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 50px; }
    .btn-light { border-radius: 50px; padding: 10px 30px; font-weight: 500; }
    .hero-swiper .swiper-pagination-bullet { background: #fff; opacity: .7; }
    .hero-swiper .swiper-pagination-bullet-active { background: #613e20; }


    .scroll-down {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      z-index: 10; color: #fff; font-size: 1.5rem; opacity: .8;
      animation: bounce 1.5s infinite; cursor: pointer;
    }
    @keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

    section { padding: 5rem 1rem; text-align: center; }
    section:nth-of-type(even) { background: #f8f8f8; color: #111; }

    /* ===== MENU SWIPER STYLING ===== */
.menu-swiper {
  padding: 20px 0;
}

.menu-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto !important;
    margin-bottom:40px; 

}

.menu-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 240px; /* 🔹 Adjust height here if needed */
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.menu-thumb {
  width: 100%;
  height: 240px;  /* 🔹 Keeps all icons uniform height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.menu-thumb img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.menu-card:hover img {
  transform: scale(1.05);
}

/* Caption */
.menu-caption {
  margin-top: 1rem;
}
.menu-caption h6 {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.overlay-menu img { height:40px; margin-bottom:20px; }


    .menu-swiper .swiper-button-next, .menu-swiper .swiper-button-prev { color: #613e20; }
    .menu-swiper .swiper-pagination-bullet-active { background: #613e20; }

    .mil-jce {
  display: flex;
  justify-content: flex-end;
}

.mil-jcb {
  display: flex;
  justify-content: space-between;
}

.text-right { text-align:right; }

footer {
  padding: 5rem 1rem 2rem 1rem; 
  border-top: solid 1px rgba(115, 118, 123, 0.2);
}
footer ul {
  padding: 0;
  margin: 10px 0 5rem 0;
}
footer ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
footer .mil-footer-menu li a {
  color: #73767B;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  text-decoration: none;
}
footer .mil-footer-menu li a:hover {
  color: #000;
}
footer .mil-footer-bottom {
  padding: 50px 20px 0 20px;
  border-top: solid 1px rgba(115, 118, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}

.mil-logo-footer img { height: 40px; width: auto; margin-bottom:10px;}
    .mil-footer-bottom a { text-decoration:none; }

.mil-mb60 { margin-bottom:60px; }

.position-relative { position:relative!important; }
.swiper-wrapper a { text-decoration: none; }
.btn-primary { background: linear-gradient(180deg,#dcd3c0 0%,#dfdfdf 100%);  color:#000; border:0;  }
.btn-primary:hover {  background: linear-gradient(180deg,#fff 0%,#dcd3c0 100%); color:#000;}
.lovns-showcase {
  position: relative;
  background: #000;
  padding: 120px 0;
  min-height: 100vh;
  overflow: hidden;
}

.menu-section { background:#efefef; padding: 100px 0 }


/* Cup Center */
.lovns-cup-wrapper {
  position: relative;
  z-index: 2;
}
.lovns-cup {
  width: 380px;
  max-width: 35vw;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.35));
  z-index: 3;
}

/* Feature Cards */
.feature {
  position: absolute;
  width: 450px;
  background: rgba(255,255,255,.9);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  backdrop-filter: blur(8px);
  text-align: center;
}
.feature h4 { font-size: 1.1rem; font-weight: 600; color: #111; }
.feature p  { font-size: .9rem; color: #555; }


/* ❄️ DENSE FALLING SNOW BACKGROUND */
.lovns-showcase::before,
.lovns-showcase::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  background-repeat: repeat;
}

/* Front fast layer */
.lovns-showcase::before {
  background-image:
    radial-gradient(white 1.5px, transparent 1px),
    radial-gradient(white 1.5px, transparent 1px),
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 2px, transparent 1px);
  background-size:
    150px 150px, 200px 200px, 250px 250px, 300px 300px, 400px 400px;
  animation: snowFront 15s linear infinite;
}

/* Back slow layer */
.lovns-showcase::after {
  background-image:
    radial-gradient(rgba(255,255,255,0.8) 2px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.7) 3px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.6) 2px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.9) 4px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.8) 3px, transparent 1px);
  background-size:
    400px 400px, 500px 500px, 600px 600px, 800px 800px, 1000px 1000px;
  animation: snowBack 45s linear infinite;
}

@keyframes snowFront {
  0%   { background-position: 0 0, 50px 0, 100px 0, 150px 0, 200px 0; }
  100% { background-position: 0 1000px, 50px 900px, 100px 800px, 150px 1000px, 200px 900px; }
}

@keyframes snowBack {
  0%   { background-position: 0 0, 100px 0, 200px 0, 300px 0, 400px 0; }
  100% { background-position: 0 2000px, 100px 2200px, 200px 2100px, 300px 2300px, 400px 2200px; }
}


/* Clock Positions */
.feature-1 { top: 40%; left: 7%; }
.feature-2 { top: 45%; right: 7%; }
.feature-3 { bottom: 12%; left: 9%; }
.feature-4 { bottom: 5%; right: 9%; }

/* Responsive */
@media (max-width: 992px) {
  .feature {
    position: static;
    width: 90%;
    margin: 1rem auto;
  }
  .lovns-showcase {
    text-align: center;
  }

      .hero-swiper { width: 100%; height: 80dvh; }


}

.lovns-hero-section {
  position: relative;
  width: 100%;

  overflow: hidden;
}

/* Background Image */
.lovns-hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/banners/homebanner-2-desktop.jpg") center center / cover no-repeat;
  z-index: 1;

}

.lovns-hero-section .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}



.lovns-story-section .hero-bg-story {
  position: absolute;
  inset: 0;
  background: url("../img/home-lifestyle.jpg") center center / cover no-repeat;
  z-index: 0;
}

.lovns-story-section .hero-content { 
  position: absolute;
  width: 50%;
  min-height:600px; vertical-align: middle;
  left: 50%;
  right:0;
  bottom:0;
  top:0;
  z-index: 2;
  background:rgba(255,255,255,0.9); 
}

.background-video {

    width: 100%; 
    height: 650px;
    object-fit: cover;
    z-index: -2; 
            object-position: center top; /* Keep the content aligned to the left 60% */

}
.section-video { padding: 100px 0; }
.background-video-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;

  /* 🌫️ Add blur and brightness filter */
  filter: blur(12px) brightness(0.7);
}

/* Keep your content above the video */
.section-video .container {
  position: relative;
  z-index: 2;
padding-left:-3px;
}


.slogan { text-align:center; font-size:14pt;   }
.slogan h2 {  font-size:24pt; font-weight: 700; font-family: 'Young Serif', serif;  margin-bottom:50px; }

.slogan .card {
  height: 100%;
  min-height: 220px; /* ensures consistent size visually */
  padding:10px 20px;
}

/* ---------- Hero Banner ---------- */
.menu-category-hero {
    background: linear-gradient(180deg, #111, #000);
    padding: 100px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ---------- Product Card ---------- */
.lovns-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.lovns-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* Product Image */
.product-img-wrapper {
    height: 240px;
    overflow: hidden;
    background: #fff;
    padding:10px;
}

.product-img-wrapper img {
 width: 180px;      /* or 100% */
  height: 240px;     /* same as width = square */
  object-fit: cover!important; /* crop */
  object-position: center center;
  border-radius: 12px; /* optional */
  display:block; margin:0 auto;
}

.terms-container  { padding:60px 0;  }
.terms-container h5 { font-weight: 600; margin-top:30px; margin-bottom:20px;  }
.terms-container p { font-size:12pt!important; }
.terms-container ul li  { font-size:12pt!important; }
.img-placeholder {
    opacity: 0.1;
    filter: grayscale(100%);
}

.lovns-product-card:hover img {
    transform: scale(1.08);
}

/* Product Content */
.product-content {
    padding: 20px;
}

/* Link wrapper for swiper card */
.menu-link {
    text-decoration: none !important;
    color: inherit;
}


.menu-banner{min-height:320px;background-size:cover;background-position:center;position:relative}
.menu-banner::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.45)}
.menu-banner>*{position:relative;z-index:1}

.lovns-marquee{
    --h:600px;
    position:relative;
    overflow:hidden;
    width:100%;
    padding:0 20px 20px;
}

.lovns-marquee__viewport{
    display:flex;
    width:max-content;
    gap:16px;
    will-change:transform;
}

.lovns-marquee__track{
    display:inline-flex;
    gap:16px;
    white-space:nowrap;
}

.lovns-slide{
    width:var(--w);
    height:var(--h);
    flex:0 0 auto;
    overflow:hidden;
    border-radius:16px;
    background:#eee;
}

.lovns-img{
    width:100%;
    height:100%;
    object-fit:cover;
    cursor:pointer;
    transition:transform .3s ease;
}
.lovns-img:hover{transform:scale(1.03)}


/* ===== more sections ===== */ 
.lovns-box{ background:#fff; border-radius: 18px; padding: 24px; box-shadow: 0 10px 22px rgba(0,0,0,.06); } 
.story-card { background: #fff; border-radius: 16px; padding: 24px; height: 100%; box-shadow: 0 10px 22px rgba(0,0,0,.06); } 
.story-name { display: block; margin-top: 12px; font-size: 14px; color: #888; } 
.join-card { background: #fff; border-radius: 20px; padding: 48px 32px; }
.join-card h3 { font-size: 24pt; font-weight: 700; margin-bottom: 16px; color:#613e20; font-family: 'Young Serif',serif;  } 
.join-card p { font-size: 14pt; color:#555; margin-bottom:30px;  }
.step-no { font-size: 32pt; font-weight: 400; color: #c9a24d; display: block; margin-bottom: 10px; } 


.lightbox{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.85);
    z-index:9999;
}
.lightbox img{max-width:90%;max-height:90%;border-radius:14px}
.lightbox-close{
    position:absolute;
    top:20px;right:28px;
    font-size:40px;color:#fff;cursor:pointer;
}
.lovns-more { padding: 60px 0;}
.lovns-more h4 { font-size: 16pt; font-weight: 700; font-family: 'Young Serif', serif; margin-bottom:20px; color:#613e20;  }

.lovns-hero-community  { padding: 60px 0;}
.lovns-hero-community h1 { font-size: 28pt; font-weight: 700; font-family: 'Young Serif', serif; margin-bottom:20px;color:#613e20;  }
.lovns-hero-community p { font-size:16pt; color:#555;   }
.lovns-hero-community .content-area { max-width: 720px;}

.gallery-area { padding: 60px 0; }
.gallery-area h3 { font-size: 22pt; font-weight: 700; font-family: 'Young Serif', serif; margin-bottom:10px; color:#613e20;  }
.gallery-area p { font-size:14pt; color:#555;   margin-bottom:40px;  }
/* Content Card */
.lovns-hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-bottom: 0;
  background: #efefef;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  margin-top: 40dvh;
}

.lovns-hero-section .hero-content h2 {

  font-size: 18pt;
}


/* Responsive: make background visible through card */
@media (max-width: 768px) {
  .lovns-hero-section .hero-content {
    background: rgba(255, 255, 255, 0.7);
    padding: 60px 0;
    margin-bottom: 10vh;
  }

  .lovns-hero-section .hero-content {

  min-height: 0;
  margin-top: 0;
  margin-bottom:0;
      padding: 60px 20px!important;

}

}


.p-bottom-right {
  position: absolute;
  right: 30px;
  bottom: -10px;
  width: 200px;
  height: 182px; /* optional, better set a fixed height for background images */
  text-align: right;
  overflow: hidden;
opacity: 0.8;
  background-image: url('../img/charity-logo.png');
  background-size: contain;         /* fills the area proportionally */
  background-position: center;    /* centers the image */
  background-repeat: no-repeat;   /* prevents tiling */
}

.p-bottom-right img {
  width:100%;
  height:auto;
  opacity: 0.5;
}


/* Background Gradient */
.bg-gradient-light {
  background: linear-gradient(180deg, #dcd3c0 0%, #f5f5f5 100%)!important;
}

/* Step Card */
.lovns-step-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
}
.lovns-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}
.lovns-step-card h4 { font-family: 'Young Serif', serif; font-size: 1.3rem; font-weight: 700; color: #111; margin-top: 1rem; margin-bottom: 0.5rem; color:#613e20}
/* Step Circle */
.lovns-step-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #3b1e14 0%, #a46b45 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.lovns-menu-page { padding: 30px 0 60px 0; background:linear-gradient(#fff, #dcd3c0);}


/* Subtle Animated Background Accent */
.lovns-steps-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center, rgba(255, 200, 150, 0.15), transparent 70%);
  border-radius: 50%;
  animation: floaty 12s ease-in-out infinite alternate;
  z-index: 0;
}
.lovns-steps-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(255, 200, 150, 0.1), transparent 70%);
  border-radius: 50%;
  animation: floaty 15s ease-in-out infinite alternate-reverse;
  z-index: 0;
}

.text-primary { color:#613e20!important; }


.menu-banner {  background-position: center center; width: 100%; background-size: cover; height:320px;  box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.menu-banner h1 { color:#fff; font-size:24pt; text-transform: uppercase; font-weight: 700; font-family: 'Young Serif', serif; text-shadow: 0 2px 6px rgba(0,0,0,0.6); padding:0px; }
.menu-banner p { color:#fff; font-size:16pt; text-shadow: 0 2px 6px rgba(0,0,0,0.6); padding:0px; }




.hero-content h2, .lovns-showcase h2, .menu h2, .rewards h2, .spread-area h2 { font-family: 'Young Serif', serif; }
.ourstory-banner {
  position: relative;
  height: 800px;
  background: url("../img/storybanner.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}


@keyframes floaty {
  from { transform: translateY(0); }
  to { transform: translateY(30px); }
}

/* Responsive */
@media (max-width: 768px) {
  .lovns-step-card {
    padding: 2rem 1.5rem;
  }
  .lovns-step-circle {
    width: 55px; height: 55px; font-size: 1.2rem;
  }
}


    @media (max-width: 550px) { 
      .lovns-final-cta h3 { font-size:14pt; font-family:'Young Serif', serif; }
      .lovns-final-cta p { font-size:10pt;  }
      .lovns-final-cta .btn { font-size:10pt; padding:5px 20px;  }
      .mobile-hide { display:none!important;  } 
      .menu { padding: 30px 0;}
      .menu h2 { font-size:14pt!important; }
      .overlay-menu a {
      font-size: 10pt; margin: 10px 0;}
      
       header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 5px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all .4s ease;
    }


    .terms-container  { padding:0px 0;  }
.terms-container h5 { font-weight: 600; margin-top:0px; margin-bottom:10px; font-size:12pt;  }
.terms-container p { font-size:10pt!important; }
.terms-container ul li  { font-size:10pt!important; }
.terms-container ul { padding-top:0; margin-top:0; }

         .hero-swiper .swiper-slide::after {
      content: ""; position: absolute; inset: 0;
      background: rgba(0, 0, 0, 0.45); z-index: 1;
    }

    .logo img { height: 35px; transition: transform .3s ease; }
    .lovns-showcase { padding:60px 0; 
    }
        section { padding: 60px 1rem; text-align: center; }

        .menu-thumb {
  width: 100%;
  height: 120px;  /* 🔹 Keeps all icons uniform height */

}

.menu-caption {
  margin-top: 0!important;
}

.background-video {

    height: 220px;
    

}

.section-video { padding: 30px 0; }


.ourstory-banner {
  position: relative;
  height: 300px;
  background: url("../img/storybanner.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.lovns-hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/banners/homebanner-2.jpg") center center / cover no-repeat;
  z-index: 1;

}

.lovns-more { padding: 30px 0;}
.lovns-more h4 { font-size: 12pt; font-weight: 700; font-family: 'Young Serif', serif; margin-bottom:20px; color:#613e20;  }
.lovns-more p { font-size:10pt; }

    .slide-content { position: absolute; bottom:10%;  z-index: 2;  padding: 0 20px;   }
    .slide-content h1 { font-size: 15pt; margin-bottom:20px; }
    .slide-content p { font-size: 12pt; opacity: 0.9; margin-bottom: 20px; }
    .hero-swiper { width: 100%; height: 30dvh; }
.mobile-welcome-area { background: linear-gradient(#fff, #dcd3c0); padding:40px 10px 30px 10px; text-align:center; font-size:12pt;  position:relative;  z-index: 99; font-size:10pt; }
.mobile-welcome {  background: linear-gradient(#dcd3c0, #dcd3c0); font-size:10pt; position:absolute; top: -30px; left:10px; right: 10px; border-radius:5px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); padding:10px;}    
.mobile-welcome a { font-size:10pt;  background:#613e20; color:#fff;  }
 a.explore-btn { font-size:10pt;  background:#613e20; color:#fff;   text-decoration: none; border-radius:5px; }
.hero-swiper .swiper-slide {
      position: relative;
      background-size: cover;
      
      color: #fff;
    }
    .hero-swiper .swiper-slide .slide-content p, .hero-swiper .swiper-slide .slide-content a {

      display: none;
    }

    .hero-content h2, .lovns-showcase h2, .menu h2, .slogan h2,.spread-area h2 { font-family: 'Young Serif', serif; font-size:15pt;  }
.mobile-story-area { font-size:10pt; }

.mobile-story-area .btn-secondary { background: linear-gradient(#dcd3c0, #dcd3c0); color:#20222F; border:0; text-align: center; padding:20px; font-size:10pt; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.mobile-story-area .btn-secondary i {font-size:18pt; height:30px; padding-top:5px; }
.mobile-story-area .btn-secondary img { height: 28px; width:auto;margin-bottom:2px; }
.menu-section { padding: 30px 0;}
/* OVERLAY */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1049;
}

/* BOTTOM SHEET */
.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  transform: translateY(100%);
  transition: transform .3s ease;
  z-index: 1050;
}

/* SHOW STATE */
.bottom-sheet.show {
  transform: translateY(0);
}

.sheet-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* HANDLE */
.sheet-handle {
  width: 40px;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
  margin: 10px auto;
}

/* CONTENT */
.sheet-content {
  padding: 16px;
}

/* OPTIONAL: lock background scroll */
body.sheet-open {
  overflow: hidden;
}


.sheet-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #333;
  cursor: pointer;
}

.sheet-close:focus {
  outline: none;
}
.lovns-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f5f2; /* warm coffee cream */
  color: #2c2c2c;
  transition: all 0.25s ease;
}

.lovns-link + .lovns-link {
  margin-top: 12px;
}

.lovns-link:active {
  transform: scale(0.98);
}

.lovns-link:hover {
  background: #efece7;
}

.lovns-link-text {
  display: flex;
  flex-direction: column;
}

.lovns-title {
  font-weight: 600;
  font-size: 15px;
}

.lovns-sub {
  font-size: 13px;
  color: #7a7a7a;
  margin-top: 2px;
}

.lovns-arrow {
  font-size: 18px;
  color: #b59a6a; /* soft gold accent */
}

.new-user-area { background:#fff; padding:10px; overflow-x: hidden; overflow-y: hidden; margin-top:10px; border-radius:5px;}
.new-user-area h2 { font-size:9pt!important; font-weight: 600; text-transform: uppercase; margin-bottom:10px; padding-top:0!important; margin-top:0!important; color:#613e20; font-family: 'Young Serif', serif; }
.menu-section h2 { text-align:center; font-size:10pt!important; font-weight: 600; text-transform: uppercase; margin-bottom:10px; padding-top:0!important; margin-top:0!important; color:#613e20; font-family: 'Young Serif', serif; }
.product-img-wrapper {
    height: 120px;
    overflow: hidden;
    background: #fff;
    padding:10px;
}

.product-img-wrapper img {
 width: 80px;      /* or 100% */
  height: 120px;     /* same as width = square */
  object-fit: cover!important; /* crop */
  object-position: center center;
  border-radius: 12px; /* optional */
  display:block; margin:0 auto;
}
.lovns-menu-page { padding: 0px 0 30px 0;}
.product-content {
    padding: 0 10px!important;
}

.product-content h5 {
    font-size: 10pt;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px; padding-top:10px;
}


.gallery-area { padding: 30px 0; }
.gallery-area h3 { font-size: 14pt; font-weight: 700; font-family: 'Young Serif', serif; margin-bottom:10px; color:#613e20;  }
.gallery-area p { font-size:10pt; color:#555;   margin-bottom:20px;  }


.lovns-marquee{
    height:250px;
    position:relative;
    overflow:hidden;
    width:100%;
    padding:0 20px 20px;
}

.lovns-marquee__viewport{
    display:flex;
    width:max-content;
    gap:16px;
    will-change:transform;
}

.lovns-marquee__track{
    display:inline-flex;
    gap:16px;
    white-space:nowrap;
}

.lovns-slide{
    width:auto;
    height:250px;
    flex:0 0 auto;
    overflow:hidden;
    border-radius:16px;
    background:#eee;
}

.lovns-img{
    width:100%;
    height:100%;
    object-fit:cover;
    cursor:pointer;
    transition:transform .3s ease;
}
.lovns-img:hover{transform:scale(1.03)}

.menu-banner {  background-position: center center; width: 100%; background-size: cover; height:220px; border-radius:12px;  box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.menu-banner h1 { color:#fff; font-size:14pt; text-transform: uppercase; font-weight: 700; font-family: 'Young Serif', serif; text-shadow: 0 2px 6px rgba(0,0,0,0.6); padding:0px; }
.menu-banner p { color:#fff; font-size:12pt; text-shadow: 0 2px 6px rgba(0,0,0,0.6); padding:0px; }
.product-content p { font-size:10pt; }
/* Horizontal scroll container */
.voucher-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.voucher-scroll::-webkit-scrollbar {
  display: none;
}

/* 🎟️ Ticket-style card design */
.voucher-ticket {
  position: relative;
  min-width: 300px;
  background: #fff;
  border:1px dashed #ccc;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  scroll-snap-align: start;
}

.voucher-ticket::before,
.voucher-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #f8f9fa;
  border-radius: 50%;
  z-index: 2;
}

.voucher-ticket::before {
  left: -12px;
}

.voucher-ticket::after {
  right: -12px;
}

.voucher-left {
  background: linear-gradient(135deg, #c3b9b0 0%, #e8e2dd 100%);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  min-width: 110px;
}

.voucher-left.redeemed {
  background: linear-gradient(135deg, #f15838 0%, #831618 100%);
  color:#fff;
}

.voucher-left.expired {
  background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
  color:#fff; 
}

.btn-block { width:100%; }
.text-xs { font-size:10pt; }

.voucher-left h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
}

.voucher-right {
  flex: 1;
  padding: 1rem 1.25rem;
    background-image: url('../img/logo-icon-light.png'); /* 🟡 your logo path */
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 90px auto; /* adjust size */
  background-blend-mode: lighten; /* keeps it subtle */
}

.voucher-right h6 {
  font-size:10pt; 
  font-weight: 600;
}

.voucher-right p {
  font-size:8pt; 
  font-weight: 400;
}

.voucher-footer {
  border-top: 1px dashed #ccc;
  padding-top: .5rem;
  margin-top: .5rem;
  font-size: 9pt;
  color: #666;
}

.coming-soon-label {
  position: absolute;
  top: -6px;
  right: 15px;
  background: #c9a36b; /* Apple-style red tone */
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  z-index: 5;
  text-transform: uppercase;
}

.mobile-story-area h2 { margin-top:20px;  text-transform:uppercase; font-size: 10pt; color:#613e20; font-family: 'Young Serif', serif; margin-bottom:20px; }
    .hero-content p, .lovns-showcase p, .menu p { font-size:10pt; }
.mil-mb60 { margin-bottom:20px; }
.lovns-hero-section .hero-content {  background: linear-gradient(180deg, #c3b9b0 0%, #ffffff 100%); }
.mil-footer-bottom { font-size:8pt; }

.lovns-hero-community  { padding: 30px 0;}
.lovns-hero-community h1 { font-size: 14pt; font-weight: 700; font-family: 'Young Serif', serif; margin-bottom:20px;  }
.lovns-hero-community p { font-size:10pt; color:#555;  margin-bottom:0px;  }
.lovns-hero-community .content-area { max-width: 720px;}


footer { padding:20px 0 0 0!important }
footer p { font-size:10pt!important; }
footer img { height: 15px!important; }

footer ul li {
  list-style-type: none;
  margin-bottom: 5px;
  font-size:9pt!important;
}

footer .mil-footer-bottom {
  padding: 10px 10px 0 10px;
}
footer ul { margin-bottom:10px; }
footer ul.social i { font-size:14pt;  }
footer ul.social { margin-bottom:80px!important; }
footer .mil-footer-bottom p { font-size:8pt!important; }

.lovns-story-section .hero-content { 
  position: absolute;
  width: 100%;
  left: 0%;
  right:0;
  bottom:0;
  top:0;
  z-index: 2;
  background: rgba(255,255,255,1)!important;  border-radius:20px;  padding: 15px!important;
}

.lovns-story-section {
  padding:30px 30px;
}

.lovns-story-section .hero-content h2 {
  font-size: 12pt; margin-bottom:5px!important; padding-bottom:0!important;
}

.lovns-story-section .hero-content p {
  font-size: 10pt; padding:0;

}
.slogan { padding: 20px 0;}
.slogan h2 {
  font-size: 12pt; margin-bottom:10px!important; padding-bottom:0!important;
}
.slogan p { font-size:10pt; }
.slogan .card { padding: 0 20px; }
.slogan .card .card-body { padding:0;}
.slogan .card {
  height: 100%;
  min-height: 100px; /* ensures consistent size visually */
  padding:10px 10px;
}
.slogan .card h5 { font-size:10pt; margin-bottom:0; padding-bottom:0; }
.hero-content .btn, .slide-content .btn, .rewards .btn { border-radius: 10px!important; }
.spread-area p { font-size:12pt; }
footer .text-right { text-align: left;}

footer .mil-footer-menu li a {
 font-size: 10pt; 
}

footer .mil-fs16 { font-size:12pt;}
footer .mil-mb60 { margin-bottom:10px; }
footer ul.social li { float:left; margin-right: 14px; font-size:14pt; }

}
    @media (min-width: 551px) { .mobile-show { display:none!important; } }

.text-center { text-align: center; }


    /* Layout */
.login-wrapper {
  min-height: 90dvh;
  padding: 60px;
  background-color: #20222F;
  overflow: hidden;
}

/* Left Side Background */
.login-left {
  flex: 1;
  background: url('../img/banners/homebanner.jpg') center center/cover no-repeat;
  border-radius: 30px;
  margin-right: 40px;
  opacity: 0;
  transform: translateX(100%);
}

/* Right Side Form */
.login-right {
  flex: 1;
  background-color: #fff;
  border-radius: 30px;
  opacity: 0;
  transform: translateY(100px);
    box-shadow: 0 0 0 1px rgba(115, 118, 123, 0.3);

}

/* Animations */
@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-slide-left {
  animation: slideLeft 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.animate-slide-up {
  animation: slideUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}


/* Theme Colors */

.btn-brown:hover { background-color:#7b4b25; }
.tracking-widest { letter-spacing:8px; }

/* Responsive */
@media (max-width: 991px) {
  .login-wrapper { padding: 20px; }
  .login-left {  flex: 1 1 100%; margin-right:0 }
  .login-right { flex: 1 1 100%; background: #fff; border-radius: 16px; margin-top:-40px; }

  .login-wrapper {
  min-height: 96dvh;
  overflow: hidden;
}


}


#map {
  height: 320px;
  border-radius: 16px;
}

.store-card {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  cursor: pointer;
  transition: all .25s ease;
}

.store-card:hover {
  background: #f7f5f2;
}

.store-card.active {
  border: 2px solid #b59a6a;
}

.store-card.coming-soon {
  opacity: .7;
}



.login-right h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: 'Young Serif', serif;text-transform: uppercase;
}

.login-right h4 span {
  color: #000;
  
}
/* --- Make Select2 match .form-control style --- */
.select2-container--default .select2-selection--single {
  height: 50px !important;                  /* same height */
  padding-top: 12px !important;
  padding-bottom: 5px !important;
  padding-left: 0px !important;
  padding-right: 5px !important;
  font-size: 12pt !important;
  border-radius: 10px !important;
  border: 1px solid #ccc !important;
  display: flex;
  align-items: center;                      /* vertical align text */
  background-color: #fff;
  color:#333;
}

/* --- Adjust the selected text --- */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal !important;
  padding-left: 0px !important;
  color: #333;
}

/* --- Arrow alignment --- */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 8px!important;
  top: 10px!important;
}

/* --- Match border radius on focus --- */
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
  outline: 0;
}


.country-option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.country-code { width: 45px; font-weight: 600; }
.country-name { color: #555; }

.border-form p { font-size:8.5pt; line-height:1.2}
.border-form {
  position: relative;
  border: 2px solid #c3b9b0; /* primary color border */
  border-radius: 8px;
  padding: 10px 5px 10px 5px;
  margin-top: 20px;
}

/* Container to hold the hearts */
.border-form .heart-overlay {
  position: absolute;
  top: -10px; /* move up to overlap border */
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff; /* same as background to mask border behind */
  padding: 0 10px; /* small padding around hearts */
}

/* Optional: adjust icon size and color */
.border-form .heart-overlay i {
  font-size: 18px;
  color: #c3b9b0; /* Bootstrap primary color */
}

.input-group .form-control {
  padding: 5px 10px;
  width: 50%;
  font-size: 12pt;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #ccc;
  color:#333;
}
.input-group .form-control::placeholder {
  font-size: 12pt;
  color: #999;
}

.input-group .form-control2 {
  padding: 5px 10px;
  width: 80%;
  font-size: 12pt;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #ccc;
  color:#333;
}

.text-brown { color:#613e20; }
.border-form .btn-brown {
  color:#613e20;
  border:none;
  border-radius:40px;
  background:#c3b9b0;
  transition:all .3s;
  padding: 10px 20px;
  font-size:12pt; 
}

.border-form h5 { font-weight: 400; font-size:13pt; padding: 10px; margin:0; }
.border-form h5 strong { font-weight: 700; color:#613e20; }

.otp-input {
  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
.otp-input:focus {
  border-color: #613e20;
  box-shadow: 0 0 5px rgba(97,62,32,0.4);
  outline: none;
}

.countdown-text { font-size:10pt; color:#613e20}
.form-text { font-size:10pt; }
.pr-3 { padding-right:10px; }
.input-group .form-select2 {
  padding: 5px 10px;
  width: 80%;
  font-size: 12pt;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ccc;
  color:#333;
}

.is-invalid {
  border-color: #dc3545 !important; /* Bootstrap red */
  box-shadow: 0 0 5px rgba(220,53,69,0.3);
}
.text-danger {
  color: #dc3545;
  font-size: 0.85rem;
}
  /* MAP */
  #map {
    height: 520px;
    border-radius: 16px;
  }

  /* Sticky map (desktop) */
  @media (min-width: 768px) {
    .map-sticky {
      position: sticky;
      top: 90px; /* adjust if header height differs */
    }

    .store-list-scroll {
      max-height: 520px;
      overflow-y: auto;
      padding-right: 6px;
    }
  }

  /* STORE CARD */
  .store-card {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s ease;
  }

  .store-card:hover {
    background: #f7f5f2;
  }

  .store-card.active {
    border-color: #b59a6a;
  }

  .store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .store-name {
    font-weight: 600;
    font-size: 15px;
  }

  .store-address {
    font-size: 13px;
    color: #777;
    margin: 6px 0;
  }

  /* HOURS */
  .hours-table {
    font-size: 13px;
    margin-top: 6px;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    color: #555;
  }

  .hours-row.today {
    font-weight: 600;
    color: #2c2c2c;
  }

  .hours-day {
    min-width: 90px;
  }

  .hours-time {
    color: #444;
  }

  .hours-closed {
    color: #999;
  }

  .today-summary {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #3fa45b;
  }

  .today-summary.closed {
    color: #999;
  }

  .store-direction {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #b59a6a;
    text-decoration: none;
  }

  .store-direction:hover {
    text-decoration: underline;
  }

  /* .leaflet-control-attribution {
    display: none;
  } */

  /* Remove Leaflet attribution flag icon */
.leaflet-control-attribution svg {
  display: none !important;
}

.subpage-header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.subpage-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.subpage-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #2c2c2c;
}

.subpage-back {
  font-size: 14px;
  font-weight: 600;
  color: #b59a6a;
  text-decoration: none;
}

.subpage-back:hover {
  text-decoration: underline;
}

.subpage-action {
  font-size: 14px;
  font-weight: 600;
  color: #b59a6a;
  text-decoration: none;
}
