@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif !important;
      /* background-color: rgb(255,255,255); */
      background-color: #f0f0f0 !important;
    }

    /* ===== GENERAL OVERLAY ===== */

body.no-scroll {
  overflow: hidden;
}

/* Fullscreen overlay */
.welcome-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at top, rgba(255,255,255,0.03), rgba(0,0,0,0.95));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide state */
.welcome-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

/* Inner card */
.welcome-overlay-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.1), rgba(10,10,10,0.98));
  box-shadow: 0 24px 80px rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  animation: welcome-pop 0.7s ease-out;
}

/* Logo */
.welcome-logo {
  width: 200px !important;
  height: 90px !important;
  object-fit: contain;
  margin-bottom: 8px;
}


/* Eyebrow text */
.welcome-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: #E8C873;
  margin-bottom: 10px;
}


/* Title */
.welcome-title {
  font-family: "Marcellus", serif;
  font-size: 30px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Subtitle */
.welcome-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.welcome-properties {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* 2 columns */
  gap: 6px 15px;                  /* space between rows & columns */
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  text-align: left;
  margin: 20px auto 20px;
  max-width: 480px;               /* keep centered */
}

.welcome-subfooter {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
  color: rgba(255,255,255,0.75);
}

.welcome-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(120deg, #E8C873, #D4AF37);
  color: #1b1b1b;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.welcome-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  background: linear-gradient(120deg, #D4AF37, #E8C873);
}

/* ===== MOBILE (<= 768px) ===== */
@media (max-width: 768px) {
  .welcome-overlay {
    padding: 16px;
    align-items: center;
  }

  .welcome-overlay-inner {
    max-width: 100%;
    padding: 28px 18px;
    border-radius: 20px;
  }

  .welcome-logo {
    width: 72px !important;
    height: 65px !important;
    margin-bottom: 6px;
  }

  .welcome-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .welcome-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .welcome-properties {
    grid-template-columns: 1fr;  /* 1 column on mobile */
    gap: 6px;
    font-size: 13px;
    max-width: 100%;
  }

  .welcome-subfooter {
    font-size: 12px;
    margin-top: 8px;
  }

  .welcome-btn {
    width: 100%;
    padding: 12px 20px;
  }
}

/* Pop animation */
@keyframes welcome-pop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Notification Floating Icon */
.notify-float {
  position: fixed;
  bottom: 105px;   /* WhatsApp button eka ta uda */
  right: 22px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-float:hover {
  transform: scale(1.08);
}

/* Bell Icon */
.notify-icon {
  font-size: 22px;
  color: #333;
}

/* Red Notification Dot (Bigger Version) */
.notify-dot {
  position: absolute;
  top: 4px;      /* adjust for regular bell */
  right: 1px;
  width: 14px;   /* bigger dot */
  height: 14px;  /* bigger dot */
  background: red;
  border-radius: 50%;
  border: 2px solid white;   /* white outline more premium */
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .notify-float {
    bottom: 88px;
    right: 22px;
    width: 44px;
    height: 44px;
  }

  .notify-icon {
    font-size: 18px;
  }

  .notify-dot {
    width: 12px;
    height: 12px;
    top: 3px;
    right: 3px;
    border: 2px solid white;
  }
}


    /* Header */
    .site-header{
      position: fixed; top:0; left:0; right:0;
      /* background: rgba(26,38,29,0.32); */
      background: transparent;
      backdrop-filter: blur(0px);
      color:#fff;
      z-index:1000;
      border-bottom: 1px solid rgba(212,175,55,.12);
    }

    /* Grid layout */
    .site-header .wrap{
      margin:0 auto;
      padding:15px 30px;
      display:grid;
      grid-template-columns: 1fr auto 1fr;
      align-items:center;
      column-gap:12px;
    }

    /* Left logo */
    .logo .brand{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color:#fff;
      justify-self:start;
    }
    .logo .brand img{
      height:32px;
      width:auto;
      display:block;
    }

    /* Center */
    .nav{
      display:flex;
      gap:24px;
      align-items:center;
      justify-self:center;
    }
    .nav a{
      color:#fff;
      text-decoration:none;
      letter-spacing:.04em;
      font-size:14px;
    }
    .nav a:hover{ color:#D4AF37; }

    /* right */
    .nav-btn{
      justify-self:end;
    }
    .book-btn{
      background:#E8C873;
      color:#111 !important;
      padding:8px 14px;
      border-radius:8px;
      font-weight:600;
      text-decoration: none;
      display:inline-block;
      line-height:1.1;
    }
    .book-btn:hover{
      filter:brightness(.95);
      color:#111 !important;
      transform:translateX(-1px);
      background-color: #D4AF37 !important;
    }

    /* Scroll */
    .site-header.scrolled{
      background: linear-gradient(90deg, rgba(131, 122, 91, 0.85) 0%, rgba(24,35,25,0.85) 100%);
      box-shadow:0 6px 20px rgba(0,0,0,.2);
    }

    /* header mobile */
    @media (max-width:768px){
      .site-header .wrap{
        grid-template-columns: 1fr auto;
        padding:12px 16px;
      }

      .nav{
        display: none !important;
      }
      .nav-btn {
        display: block;
        justify-self: end;
      }

      .logo .brand img {
        height: 26px;
      }
    }
    


    /* Footer */
    .site-footer{
      background:#182319;
      color:#d9d9d9;
      padding:40px 0;
    }

    .footer-wrap{
      max-width:1200px;
      margin:0 auto;
      padding: 0 20px;
    }

    .footer-columns{
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 18px;
    }

    .footer-columns h6 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #c57726;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
      flex: 1;
      min-width: 200px;
    }
    .footer-left {
      text-align: left;
    }

    .footer-middle {
      text-align: center;
      display: none !important;
    }

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

    .bottom-left{
      text-align: left;
    }

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

    .site-footer a{
      color:#d9d9d9;
      text-decoration:none
    }

    .site-footer a:hover{
      color:#D4AF37
    }

    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:10px
    }

    .footer-brand img{
      height:30px
    }

    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:12px;
      font-size:13px;
      opacity:.9;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .social a{
      margin-right:12px;
      font-size:18px
    }

    @media (max-width: 768px) {
      .footer-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        text-align: center;
      }
      .footer-left,
      .footer-middle,
      .footer-right {
        min-width: 0;
        text-align: center;
        margin-bottom: 12px;
      }

      .footer-middle {
        display: block !important;
      }

      .footer-brand {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding-top: 10px;
      }

      .bottom-left,
      .bottom-right {
        text-align: center;
        width: 100%;
        display: block;
      }
    }


    .hero-slider {
      position: relative;
      height: 95vh;
      overflow: hidden;
    }

    .hero-slider-wrapper {
      height: 100%;
    }

    .hero-slide {
      position: relative;
      height: 95vh;
      background-size: cover;
      background-position: center;
      /* animation: zoomIn 8s ease-in-out forwards; */
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 2;
      color: white;
      min-width: 1200px;
      /* background-color: #31B0BC; */
    }

    .hero-title {
      font-size: 100px;
      font-weight: 400 !important;
      font-family: 'Marcellus', serif;
      margin-bottom: 10px;
    }

    .hero-subtitle {
      font-size: 25px;
      font-weight: 400;
      padding: 10px 20px;
      display: inline-block;
      font-family: 'Segoe UI', serif !important;
    }


    .slick-dots {
      bottom: 20px;
      z-index: 3;
    }

    .slick-dots li button:before {
      font-size: 14px;
      color: white;
    }

    .slick-dots li.slick-active button:before {
      color: #D4AF37;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 38px;
      }

      .hero-subtitle {
        font-size: 16px;
        padding: 8px 14px;
        max-width: 350px !important;
      }

      .hero-content {
        padding: 0 20px;
      }
    }

    /* partnership hotels logo loop */
    .logo-loop-section {
      background-color: rgb(255, 255, 255) !important;
      padding: 20px 0 !important;
      overflow: hidden !important;
      /* margin-bottom: 30px; */
    }

    .partnership-inline-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      max-width: 1500px;
      margin: 0 auto;
      flex-wrap: nowrap;
      padding: 0 40px;
    }

    

    .logo-loop-container {
      overflow: hidden;
      white-space: nowrap;
      background: #fff;
      padding: 40px 0;
      /* flex: 1; */
    }

    .logo-loop-container h2 {
      font-family: 'Marcellus', serif !important;
      font-weight: 400;
      font-style: normal;
      font-size: 32px;
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    .logo-track {
      display: flex;
      width: max-content;
    }

    .logo-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      animation: infiniteScroll 30s linear infinite;
      will-change: transform;
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      position: relative;
    }

    .logo-loop-container::before{
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }

    .logo-item::after{
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 30px;
      background: rgba(212, 175, 55, 0.2);
    }

    .logo-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      height: 100%;
      width: 1px;
      background-color: #ccc;
      opacity: 0.7;
    }

    .logo-item img {
      height: 30px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .logo-item img:hover {
      transform: scale(1.1);
      filter: grayscale(0%);
    }

    @keyframes infiniteScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    /* Logo loop mobile responsive styles */
    @media (max-width: 768px) {
      .logo-loop-section {
        padding: 30px 0 !important;
      }
      .partnership-inline-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
        align-items: flex-start;
      }
      
      .logo-loop-container {
        padding: 15px 0 10px 0;
        max-width: 100%;
        border-radius: 10px;
      }

      .logo-loop-container h2 {
        font-size: 30px;
        margin-bottom: 20px;
        padding: 0 10px;
      }

      .logo-track {
        gap: 10px;
      }
      .logo-item {
        padding: 0 15px;
      }
      .logo-item img {
        height: 30px;
      }
      .logo-item:not(:last-child)::after {
        width: 0.5px;
        top: 15%;
        height: 70%;
      }
    }

    /* tag section */
    .hotel-tabs {
      background: #ffffff;
      padding: 30px 0 20px;
      text-align: center;
    }

    .tab-menu {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      display: inline-flex;
      gap: 60px;
      border-bottom: 1px solid transparent;
    }

    .tab-link a{
      font-size: 16px;
      color: #444;
      font-family: 'Marcellus', serif;
      text-decoration: none;
    }

    .tab-link {
      font-family: 'Marcellus', serif;
      font-size: 16px;
      color: #444;
      position: relative;
      cursor: pointer;
      letter-spacing: 0.08em;
      transition: color 0.3s ease;
    }

    .tab-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background-color: #D4AF37;
      left: 0;
      bottom: -8px;
      transition: width 0.3s ease;
    }

    .tab-link.active {
      color: #D4AF37;
    }

    .tab-link.active::after {
      width: 100%;
    }

    .tab-link:hover {
      color: #D4AF37;
    }

    @media (max-width: 768px) {
      .tab-menu {
        flex-direction: column;
        gap: 20px;
      }
    }

    /* About Section */
    .about-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 60px 20px;
      height: max-content;
      box-sizing: border-box;
      flex-wrap: wrap;
    }

    .image-column {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .image-column img {
      min-width: 350px;
      height: 260px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .about-text {
      max-width: 500px;
      text-align: center;
      padding: 30px;
      display: flex;
      min-height: 540px;
      flex-direction: column;
      justify-content: center;
      background-color: #ffffff;
      border-radius: 12px;
    }

    .about-logo{
      width: 200px;
      height: auto;
      margin-bottom: 18px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .about-text h2 {
      font-family: 'Marcellus', serif;
      font-size: 32px;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
    }

    @media (max-width: 992px) {
      .about-row-section {
        flex-direction: column;
        height: auto;
      }

      .about-logo {
        width: 120px;
        margin-bottom: 12px;
      }

      .image-column {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }

      .image-column img {
        width: 45%;
        height: 200px;
      }

      .about-text {
        order: -1;
      }
    }

    /* hotels details */
    .destinations{
      padding: 0px 20px 20px 20px;
      background: #f9f9f9;
    }

    .section-title {
      text-align: center;
      font-family: 'Marcellus', serif;
      font-size: 32px;
      margin: 30px 0 30px;
      margin-bottom: 10px;
      color: #333;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 30px;
        margin: 30px 0 18px;
        padding: 0 10px;
      }
    }

    .hotel-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding: 0 40px 60px;
      max-width: 1200px;
      margin: auto;
    }

    .hotel-card {
      display: flex;
      flex-direction: row;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .hotel-card img {
      width: 50%;
      height: 500px;
      object-fit: cover;
    }

    .hotel-info {
      flex: 1;
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hotel-info h3 {
      font-family: 'Marcellus', serif;
      font-size: 24px;
      margin: 0 0 10px;
    }

    .hotel-info p {
      margin: 5px 0;
      color: #555;
      line-height: 1.5;
    }



    /* hotel card 2 */
    .hotel-card-2 {
      display: flex;
      flex-direction: row;
      background-color: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .hotel-card-2 img {
      width: 50%;
      height: 500px;
      object-fit: cover;
    }

    .hotel-info-2 {
      flex: 1;
      padding: 50px;
      /* width: 50%; */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hotel-info-2 h3 {
      font-family: 'Marcellus', serif;
      font-size: 24px;
      margin: 0 0 10px;
    }

    .hotel-info-2 p {
      margin: 5px 0;
      color: #555;
      line-height: 1.5;
    }

    .villa-subtitle {
      font-size: 0.9rem;
      color: #666;
      margin-top: 0.1rem;
      margin-bottom: 0.5rem;
    }

    .villa-subtitle a:hover {
      color: #C38C20;
      text-decoration: underline;
    }


    .btn-explore {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      /* background-color: #D4AF37; */
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }


    @media (max-width: 768px) {
      .hotel-grid {
        padding: 0 16px;
      }

      .hotel-card,
      .hotel-card-2 {
        flex-direction: column;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
      }

      .hotel-card img,
      .hotel-card-2 img {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: cover;
      }

      .hotel-info,
      .hotel-info-2 {
        padding: 18px;
        text-align: center;
      }

      .hotel-card-2 img {
        order: -1;
      }
    }


    /* Experience */
    .experiences-section {
      background: #ffffff !important;
      padding: 20px 0;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 40px 60px;
      max-width: 1400px;
      margin: auto;
      margin-top: 50px !important;
    }

    .experience-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .experience-card:hover {
      transform: translateY(-5px);
    }

    .experience-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .experience-info {
      padding: 20px;
      text-align: center;
    }

    .experience-info h3 {
      font-family: 'Marcellus', serif;
      font-size: 24px;
      margin: 0;
    }

    .experience-info p {
      color: #777;
      margin: 5px 0 15px;
    }

    @media (max-width: 768px) {
      .experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px 30px;
        max-width: 100%;
      }
      .experience-card img {
        height: 180px;
      }
      .experience-info {
        padding: 12px;
      }
      .experience-info h3 {
        font-size: 18px;
      }
      .experience-info p {
        font-size: 14px;
      }
    }

    /* Experience */
    .signature-experiences-section {
      background: #F9F9F9 !important;
      padding: 20px 0;
    }

    .signature-experience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 40px 60px;
      max-width: 1400px;
      margin: auto;
      margin-top: 50px !important;
    }

    .signature-experience-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .signature-experience-card:hover {
      transform: translateY(-5px);
    }

    .signature-experience-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .signature-experience-info {
      padding: 20px;
      text-align: center;
    }

    .signature-experience-info h3 {
      font-family: 'Marcellus', serif;
      font-size: 24px;
      margin: 0;
    }

    .signature-experience-info p {
      color: #777;
      margin: 5px 0 15px;
    }

    @media (max-width: 768px) {
      .signature-experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px 30px;
        max-width: 100%;
      }
      .signature-experience-card img {
        height: 180px;
      }
      .signature-experience-info {
        padding: 12px;
      }
      .signature-experience-info h3 {
        font-size: 18px;
      }
      .signature-experience-info p {
        font-size: 14px;
      }
    }

    

    /* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }

    .gift-icon{
      margin-right: 20px !important;
    }

    /* @media (max-width: 768px) {
      .gift-icon{
        display: none !important;
      }
    } */