body {
  font-family: Arial, sans-serif;
}

h2 {
  margin-bottom: 20px;
}

/*  */
/********************************
header start
********************************/

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 999;
}

.navbar {
  min-height: 90px;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Logo */

.navbar-brand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-brand {
  margin: 0;
}

.navbar-brand img {
  max-width: 90px;
  height: auto;
  display: block;
}

.brand-content {
  text-align: center;
  margin-top: 4px;
}

.brand-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #18343b;
}

.brand-content span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #d92b65;
}

/* Menu */

.navbar-collapse {
  flex-grow: 1;
}

.navbar-nav {
  gap: 35px;
}

.nav-link{
    color:#1d3c43;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    padding:35px 0 !important;
    position:relative;
    transition:all .3s ease;
}

.nav-link:hover{
    color:#df2f6c;
}


/* Underline Animation */
.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:20px;
    width:100%;
    height:3px;
    background:#df2f6c;

    transform:scaleX(0);
    transform-origin:left center;
    transition:transform .35s ease;
}

/* Hover Effect */
.nav-link:hover::after{
    transform:scaleX(1);
}

/* Active Menu */
.nav-link.active{
    color:#df2f6c;
}

.nav-link.active::after{
    transform:scaleX(1);
}

/* Dropdown */

.navbar-nav .dropdown {
  position: relative;
}

.navbar-nav .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;

  position: absolute;
  top: 120%;
  left: 0;

  min-width: 240px;
  border: none;
  background: #fff;

  box-shadow: 0 15px 40px rgba(0,0,0,.08);

  transform: translateY(15px);

  transition: .3s;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100%;
}

.dropdown-item {
  padding: 12px 20px;
}

.dropdown-item:hover {
  background: #df2f6c;
  color: #fff;
}

/* Button */

.call-btn {
  background: #0c3d45;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
}

.call-btn:hover {
  background: #df2f6c;
  color: #fff;
}

.desktop-call {
  margin-left: 25px;
}

/* Mobile */

.mobile-right {
  display: none;
}

.mobile-menu-call {
  display: none;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* Mobile */
@media (min-width: 992px) and (max-width: 1199px){

    .navbar-nav{
        gap:18px;
    }

    .nav-link{
        font-size:13px;
    }

    .call-btn{
        padding:10px 16px;
        font-size:13px;
    }

    .brand-content h3{
        font-size:16px;
    }

    .navbar-brand img{
        max-width:70px;
    }
}

@media (max-width:991.98px) {

  .navbar {
    min-height: 80px;
  }

  .navbar-brand img {
    max-width: 75px;
  }

  .brand-content h3 {
    font-size: 14px;
  }

  .brand-content span {
    font-size: 7px;
  }

  /* Right side */
  .mobile-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .mobile-top-call {
    padding: 10px 18px;
    font-size: 13px;
  }

  .desktop-call {
    display: none !important;
  }
 .nav-link::after{
        display:none;
    }
  /* Overlay Menu */

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #fff;

    padding: 20px;

    z-index: 9999;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 12px 0 !important;
  }

  .nav-link.active::after {
    display: none;
  }

  .mobile-menu-call {
    display: block;
    margin-top: 20px;
  }

  .mobile-menu-call .call-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    box-shadow: none;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }
}
@media(max-width:560px){
    .mobile-top-call {
    padding: 6px 10px;
    font-size: 12px;
  }
  .navbar-brand img{
      width: 60px;
  }
  .brand-content h3{
      margin : -10px auto;
  }.mobile-right{
      gap:6px;
  }
  .navbar-toggler-icon{
      width: 1.2rem;
      height: 1.2rem;
  }
  .navbar-toggler{
      padding: .25rem .50rem;
  }
}
/* nav END */

/* hero section start  */
.hero-section {
  position: relative;
}

.hero-container {
  display: flex;
  min-height: 500px;
}

/* FIXED LEFT SIDE */

.hero-left {
  width: 35%;
  min-width: 35%;

  background: #fdf9f3 url("../img/banner-left.webp") no-repeat top left;
  background-size: cover;

  padding: 80px 50px;

  position: relative;
  z-index: 5;

  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 420px;
}

.hero-content h5 {
  font-size: 32px;
  font-weight: 600;
  color: #d99835;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 70px;
  line-height: 0.9;
  font-weight: 700;
  color: #0b3b43;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: auto;
}

.hero-content h2 {
  font-size: 68px;
  line-height: 1.2;
  font-weight: 700;
  color: #d92b65;
  font-family: "Tangerine", cursive;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-menu {
  background: #d92b65;
  color: #fff;
  text-decoration: none;

  padding: 14px 28px;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s;
}

.btn-menu:hover {
  background: #b91f54;
  color: #fff;
}

.btn-book {
  background: #083c43;
  color: #fff;
  text-decoration: none;

  padding: 14px 28px;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s;
}

.btn-book:hover {
  background: #d92b65;
  color: #fff;
}

/* RIGHT SIDE */

.hero-right {
  width: 65%;
  position: relative;
}

.heroSwiper {
  height: 100%;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  height: 100%;
}

.heroSwiper .swiper-slide img {
  max-height: 500px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pagination Container */
.heroSwiper .swiper-pagination {
  position: absolute;
  right: 25px !important;
  left: auto !important;
  top: 50% !important;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;

  gap: 14px;

  width: auto !important;
}

/* Bullets */
.heroSwiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;

  margin: 0 !important;

  background: #fff;
  opacity: 1;

  border: 2px solid #d92b65;

  transition: all 0.3s ease;
}

/* Active Bullet */
.heroSwiper .swiper-pagination-bullet-active {
  background: #d92b65;
  transform: scale(1.2);
}

/* =========================
   LARGE LAPTOP
========================= */
@media (max-width: 1200px) {

  .hero-left {
    padding: 60px 35px;
  }

  .hero-content h5 {
    font-size: 26px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content h2 {
    font-size: 54px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn-menu,
  .btn-book {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* =========================
   LAPTOP 1024
========================= */
@media (max-width: 1024px) {

  .hero-container {
    min-height: 500px;
  }

  .hero-left {
    width: 40%;
    min-width: 40%;
    padding: 40px 25px;
  }

  .hero-right {
    width: 60%;
  }

  .hero-content h5 {
    font-size: 22px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content h2 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .btn-menu,
  .btn-book {
    padding: 7px 12px;
    font-size: 16px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

  .hero-container {
    flex-direction: column;
    max-height: none;
  }

  .hero-left {
    width: 100%;
    min-width: 100%;
    padding: 60px 40px;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h5 {
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-content h2 {
    font-size: 56px;
  }

  .hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 25px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    height: 500px;
  }

  .heroSwiper .swiper-slide img {
    max-height: none;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

  .hero-left {
    padding: 50px 25px;
  }

  .hero-content h5 {
    font-size: 18px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h2 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-menu,
  .btn-book {
    width: 100%;
    text-align: center;
    padding: 14px 35px;
  }
  

  .hero-right {
    height: 350px;
  }

  .heroSwiper .swiper-pagination {
    right: 10px !important;
    gap: 10px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .hero-left {
    padding: 40px 20px;
  }

  .hero-content h5 {
    font-size: 16px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-right {
    height: 260px;
  }

  .heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* hero section end  */

/* feature section start*/
.feature-section {
  position: relative;
  z-index: 20;

  margin-top: -40px;
}

.feature-wrapper {
  background: #fff;

  border-radius: 25px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  overflow: hidden;
}

.feature-item {
  padding: 35px 35px;

  text-align: center;

  position: relative;
}

.feature-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 1px;
  height: 120px;

  background: #ececec;
}

.feature-icon {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  /*background: transparent;*/

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;
}
.feature-icon.dark-green{
    background: #034345;
}
.feature-icon.pink {
  background: #d92b65;
}

.feature-icon.orange {
  background: #f4a12b;
}

.feature-icon i {
  color: #fff;

  font-size: 30px;
}

.feature-item h3 {
  font-size: 16px;

  font-weight: 700;

  color: #17353b;

  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;

  line-height: 1.7;

  color: #555;

  margin: 0;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

  .feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    padding: 25px 20px;
  }

  .feature-item:nth-child(2)::after {
    display: none;
  }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

  .feature-section {
    margin-top: -20px;
  }

  .feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }

  .feature-item {
    padding: 18px 12px;
  }

  /* Remove vertical divider */
  .feature-item::after {
    display: none !important;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-item h3 {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .feature-item p {
    font-size: 12px;
    line-height: 1.5;
  }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    padding: 15px 10px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

  .feature-icon i {
    font-size: 16px;
  }

  .feature-item h3 {
    font-size: 11px;
  }

  .feature-item p {
    font-size: 11px;
    line-height: 1.4;
  }
}

/*   */
/********************************
feature section end
********************************/

/********************************
 food product section start 
********************************/

.signature-dishes {
  padding: 40px 0 40px;
  background: #fff;
  max-width: 100%;
  
}

.section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}

.section-header  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.section-header img {
  width: 65px;
  height: auto;
}
.section-header h2 {
  margin: 0;
  color: #073d40;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  font-family: auto;
}


.view-menu-btn {
  position: absolute;
  right: 20px;

  padding: 14px 25px;

  border: 1px solid #d9d9d9;

  border-radius: 8px;

  text-decoration: none;

  color: #16363d;

  font-size: 13px;
  font-weight: 600;

  transition: 0.3s;
}

.view-menu-btn:hover {
  background: #16363d;
  color: #fff;
}

/* Slider wrapper exactly testimonial style */

.dish-slider-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Slider */

.dishesSlider {
  width: 100%;
}

/* Navigation Buttons */

.dish-prev,
.dish-next {
  width: 42px;
  height: 42px;
  min-width: 42px;

  border: 2px solid #d92b65;
  border-radius: 50%;

  background: #fff;
  color: #d92b65;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: .3s ease;
}

.dish-prev:hover,
.dish-next:hover {
  transform: scale(1.08);
}

.dish-prev svg,
.dish-next svg {
  width: 18px;
  height: 18px;
}

/* Product Card */

.dish-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 15px 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.dish-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px;
}

.dish-card h4 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #16363d;
}

/* Pagination */

.dishes-pagination {
  position: relative !important;
  margin-top: 30px;
}

.dishes-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e6c48c;
  opacity: 1;
}

.dishes-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: #d92b65;
}
/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

  .section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }

   .section-header img {
    width: 55px;
    height: auto;
    flex-shrink: 0;
  }

  .section-header h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    text-align: center;
    width: auto;
  }

  .view-menu-btn {
    position: static;
    width: fit-content;
    margin-top: 15px;
    order: 10;
  }

  .dish-slider-wrap {
    gap: 15px;
  }

  .dish-prev,
  .dish-next {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

   .section-header img {
    width: 55px;
    height: auto;
    flex-shrink: 0;
  }

  .section-header h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    text-align: center;
    width: auto;
  }

  .view-menu-btn {
    position: static;
    width: fit-content;
    margin-top: 15px;
    order: 10;
  }

  .dish-slider-wrap {
    gap: 10px;
  }

  .dish-prev,
  .dish-next {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .dish-card {
    padding: 10px;
    border-radius: 15px;
  }

  .dish-card img {
    height: 180px;
    border-radius: 12px;
  }

  .dish-card h4 {
    font-size: 14px;
    margin-top: 12px;
  }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

   .section-header img {
    width: 36px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .view-menu-btn {
    padding: 8px 14px;
    font-size: 11px;
  }

  .dish-card img {
    height: 220px;
  }

  .dish-card h4 {
    font-size: 13px;
  }

  .dish-prev,
  .dish-next {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}
/* food product section end */

/* MENU LIST START */

.nk-menu-section{
    padding: 40px 20px;
    background:#ffffff;
}

.nk-menu-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.nk-menu-card{
    background:#FDF7F1;
    border-radius:15px;
    overflow:hidden;
    transition:.4s ease;
    border:1px solid rgba(1,57,61,.08);
}

.nk-menu-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(1,57,61,.12);
}

.nk-menu-img{
    overflow:hidden;
}

.nk-menu-img img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.nk-menu-card:hover .nk-menu-img img{
    transform:scale(1.04);
}

.nk-menu-content{
    padding:14px;
    text-align:center;
}

.nk-menu-content h3{
    color:#01393d;
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    line-height:1.3;
}

.nk-menu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    background:#cf1f57;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
}

.nk-menu-btn:hover{
    background:#01393d;
    color:#fff;
}

.nk-menu-btn::after{
    content:"→";
    transition:.3s ease;
}

.nk-menu-btn:hover::after{
    transform:translateX(4px);
}

/* Tablet */
@media (max-width:991px){

    .nk-menu-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .nk-menu-img img{
        height:280px;
    }
}

/* Mobile */
@media (max-width:767px){

    .nk-menu-grid{
        grid-template-columns:1fr;
    }

    .nk-menu-img img{
    }

    .nk-menu-content h3{
        font-size:18px;
    }

    .nk-menu-btn{
        width:100%;
    }
}
/* MENU LIST END */

/* =========================
   ABOUT SECTION START
========================= */

.uc-about-section {
  padding: 20px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.uc-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.uc-about-wrapper {
  display: flex;
  align-items: stretch;
  background: #fdf7f1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eadfce;
  min-height: 520px;
  position: relative;
}

/* Left Content */

.uc-about-content {
  flex: 0 0 50%;
  padding: 60px 50px;
  position: relative;
  z-index: 2;
}

.uc-about-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #d58a28;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.uc-about-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #0f3b3a;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  text-transform: uppercase;
}

.uc-about-subtitle {
  color: #e48d26;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.uc-about-text {
  color: #555;
  line-height: 1.5;
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 20px;
}

.uc-about-features {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.uc-feature-item {
  text-align: center;
  flex: 1;
}

.uc-feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

.uc-feature-item span {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  color: #444;
  font-weight: 600;
}

.uc-story-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*min-width: 220px;*/
  /*height: 54px;*/
  padding: 14px 28px;
    font-size: 14px;
  background: #0f3b3a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.uc-story-btn:hover {
  background: #154f4d;
}

/* Right Image */

.uc-about-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.uc-about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
}

/* =========================
   LAPTOP
========================= */
@media (max-width: 1199px) {

  .uc-about-content {
    padding: 40px 35px;
  }

  .uc-about-title {
    font-size: 32px;
  }

  .uc-about-subtitle {
    font-size: 20px;
  }

  .uc-about-text {
    font-size: 16px;
  }

  .uc-feature-item img {
    width: 42px;
    height: 42px;
  }

  .uc-feature-item span {
    font-size: 14px;
  }
}


@media (max-width: 991px) {

  .uc-about-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .uc-about-content {
    width: 100%;
    padding: 40px 30px;
    order: 1;
    text-align: left;
  }

  .uc-about-image {
    width: 100%;
    order: 2;
  }

  .uc-about-image img {
    height: 420px;
    object-fit: cover;
    object-position: center;
  }

  .uc-about-title {
    font-size: 34px;
  }

  .uc-about-subtitle {
    font-size: 20px;
  }

  .uc-about-text {
    max-width: 100%;
    font-size: 16px;
  }

  /* Features single row */
  .uc-about-features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
  }

  .uc-feature-item {
    flex: 1;
    text-align: center;
  }

  .uc-feature-item img {
    width: 42px;
    height: 42px;
  }

  .uc-feature-item span {
    font-size: 13px;
    line-height: 1.4;
  }

  .uc-story-btn {
    margin: 0;
  }
}


@media (max-width: 767px) {

  .uc-about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 10px;
  }

  .uc-feature-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    text-align: center;
  }

  .uc-feature-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .uc-feature-item span {
    font-size: 13px;
    line-height: 1.4;
  }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .uc-about-content {
    padding: 25px 15px;
  }

  .uc-about-title {
    font-size: 24px;
  }

  .uc-about-subtitle {
    font-size: 16px;
  }

  .uc-about-text {
    font-size: 14px;
  }

  .uc-feature-item {
    flex: 0 0 calc(50% - 8px);
  }

  .uc-feature-item img {
    width: 36px;
    height: 36px;
  }

  .uc-feature-item span {
    font-size: 12px;
  }

  .uc-story-btn {
    min-width: 180px;
    height: 44px;
    font-size: 13px;
  }

  .uc-about-image img {
    height: 250px;
  }
}
/* =========================
   ABOUT SECTION END
========================= */

/* =========================
   CTA BANNER START
========================= */

.uc-cta-banner {
  margin: 40px 60px;
  
  max-width: 100%;
   min-height: 400px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 14px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-cta {
  width: 100%;
  text-align: center;
  padding: 20px 30px;
}
.uc-cta-title-above{
    font-size: 24px;
    font-weight: 500;
    color: #b2144d;
    margin-bottom: 1rem;
}
.uc-cta-title {
  margin-bottom: 1rem;
  font-size: 48px;
  font-weight: 700;
  color: #0f3b3a;
  text-transform: uppercase;
  line-height: 1.4;
  font-family: auto;
}

.uc-cta-subtitle {
  margin: 8px 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #0f3b3a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uc-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 1rem;
}

.uc-cta-btn {
  /*min-width: 160px;*/
  /*height: 42px;*/

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  border-radius: 4px;

  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  transition: all 0.3s ease;
  padding: 8px 12px;
}

.uc-book-btn {
  background: #d31b5b;
  color: #fff;
}

.uc-book-btn:hover {
  background: #b2144d;
}

.uc-order-btn {
  background: #003f45;
  color: #fff;
}

.uc-order-btn:hover {
  background: #002f34;
}

/* =========================
   LAPTOP
========================= */
@media (max-width: 1199px) {

  .uc-cta-banner {
    margin: 35px 30px;
    min-height: 150px;
  }

  .uc-cta-title {
    font-size: 26px;
  }

  .uc-cta-subtitle {
    font-size: 15px;
  }
}


/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

  .uc-cta-banner {
    margin: 30px 20px;
    min-height: 180px;
    border-radius: 12px;
  }

  .uc-cta {
    padding: 25px 20px;
  }

  .uc-cta-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .uc-cta-subtitle {
    font-size: 14px;
    margin: 10px 0 18px;
  }

  .uc-cta-btn {
    min-width: 160px;
    height: 44px;
  }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

  .uc-cta-banner {
    margin: 25px 15px;
    min-height: auto;
    border-radius: 10px;
    background-position: center;
  }

  .uc-cta {
    padding: 30px 20px;
  }

  .uc-cta-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .uc-cta-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0 15px;
  }

  .uc-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .uc-cta-btn {
    width: 100%;
    max-width: 220px;
    min-width: auto;
    height: 42px;
  }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .uc-cta-title-above{
        font-size: 12px;
    }

  .uc-cta-banner {
    margin: 20px 10px;
  }

  .uc-cta {
    padding: 25px 15px;
  }

  .uc-cta-title {
    font-size: 16px;
  }

  .uc-cta-subtitle {
    font-size: 12px;
  }

  .uc-cta-btn {
    max-width: 200px;
    font-size: 13px;
  }
}

/* =========================
   CTA BANNER END
========================= */

/* ==========================
   TESTIMONIAL SECTION
========================== */

.uc-testimonial-section {
  padding: 40px 20px;
  background: #fffdf9;
}

.uc-testimonial-heading {
    
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.uc-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.uc-title-wrap img {
  width: 65px;
  height: auto;
}

.uc-title-wrap h2 {
  margin: 0;
  color: #073d40;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  font-family: auto;
}
.uc-testimonial-heading h2 {
  margin: 0;
  color: #083c3f;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: auto;
}
.uc-quote {
  margin-bottom: 18px;
}

.uc-quote img {
  width: 30px;
  height: auto;
}
.uc-heading-decoration {
  color: #f3a336;
  font-size: 24px;
}

.uc-testimonial-slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.uc-testimonial-slider {
  width: 100%;
}

.uc-testimonial-card {
  background: #fff;
  border: 1px solid #efe6dc;
  border-radius: 18px;
  padding: 20px 25px;
  text-align: center;
  height: 100%;
  min-height: 230px;
}

.uc-quote {
  color: #083c3f;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}

.uc-testimonial-card p {
  font-size: 17px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
}

.uc-stars {
  color: #f7941d;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.uc-testimonial-card h4 {
  margin-top: 15px;
  margin-bottom: 0;
  text-align: center;
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.uc-testimonial-prev,
.uc-testimonial-next {
  width: 42px;
  height: 42px;
  min-width: 38px;

  border-radius: 50%;
  background: #063c3f;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.3s ease;
}

.uc-testimonial-prev:hover,
.uc-testimonial-next:hover {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 991px) {
  .uc-testimonial-heading h2 {
    font-size: 30px;
  }

  .uc-testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {

  .uc-testimonial-section {
    padding: 20px 15px;
  }

  /* Heading */
  .uc-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
  }

  .uc-title-wrap img {
    width: 40px;
    flex-shrink: 0;
  }

  .uc-title-wrap h2 {
    font-size: 22px;
    line-height: 1.15;
    text-align: center;
    margin: 0;
  }

  /* Slider */
  .uc-testimonial-slider-wrap {
    position: relative;
    gap: 0;
    padding: 0 45px;
  }

  /* Navigation */
  .uc-testimonial-prev,
  .uc-testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .uc-testimonial-prev {
    left: 0;
  }

  .uc-testimonial-next {
    right: 0;
  }

  /* Card */
  .uc-testimonial-card {
    padding: 20px 18px;
    border-radius: 15px;
    min-height: auto;
  }

  .uc-quote img {
    width: 24px;
  }

  .uc-testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .uc-stars {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .uc-testimonial-card h4 {
    font-size: 16px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {

  .uc-title-wrap img {
    width: 32px;
  }

  .uc-title-wrap h2 {
    font-size: 24px;
  }

  .uc-testimonial-slider-wrap {
    padding: 0 38px;
  }

  .uc-testimonial-prev,
  .uc-testimonial-next {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .uc-testimonial-card {
    padding: 10px 12px;
  }

  .uc-testimonial-card p {
    font-size: 14px;
  }
}
/* testimonial ends */



/* =========================
   GALLERY SECTION START
========================= */

.uc-gallery-section {
  padding: 40px 20px;
}

.uc-gallery-header {
   display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.uc-gallery-header h2 {
  margin: 0;
  font-size: 36px;
  color: #073d40;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  font-family: auto;
}
.uc-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.uc-gallery-header img {
  width: 65px;
  height: auto;
}

.uc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 25px;
}

.uc-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.uc-gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  transition: 0.4s ease;
}

.uc-gallery-item:hover img {
  transform: scale(1.08);
}

.uc-gallery-btn-wrap {
  text-align: center;
}

.uc-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 230px;
  height: 52px;

  background: #073d40;
  color: #fff;
  text-decoration: none;

  border-radius: 6px;

  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;

  transition: 0.3s ease;
}

.uc-gallery-btn:hover {
  background: #0d5559;
}

.uc-gallery-btn span {
  font-size: 16px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {

  .uc-gallery-section {
    padding: 35px 15px;
  }

  .uc-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .uc-gallery-item img {
    height: 180px;
  }

  .uc-gallery-header h2 {
    font-size: 30px;
  }

  .uc-gallery-header img {
    width: 50px;
  }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

  .uc-gallery-section {
    padding: 20px 15px;
  }

  .uc-gallery-header {
    gap: 8px;
    margin-bottom: 25px;
  }

  .uc-gallery-header img {
    width: 40px;
    flex-shrink: 0;
  }

  .uc-gallery-header h2 {
    font-size: 24px;
    margin: 0;
    line-height: 1;
  }

  .uc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
  }

  .uc-gallery-item img {
    height: 140px;
  }

  .uc-gallery-btn {
    width: 100%;
    max-width: 260px;
    min-width: auto;
    height: 48px;
    font-size: 13px;
  }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .uc-gallery-header img {
    width: 30px;
  }

  .uc-gallery-header h2 {
    font-size: 20px;
  }

  /* KEEP 2 IMAGES PER ROW */
  .uc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .uc-gallery-item img {
    height: 120px;
  }

  .uc-gallery-btn {
    max-width: 220px;
    font-size: 12px;
  }
}

/* =========================
   GALLERY SECTION END
========================= */


/* =========================
   BOOK TABLE SECTION START
========================= */

.uc-book-table-section {
  padding: 40px 20px;
  
}

.uc-book-wrapper {
  max-width: 100%;
  margin: 0 auto;

  display: flex;
  align-items: stretch;

  
  border-radius: 14px;
  overflow: hidden;
background: #f8f5ef;
  border: 1px solid #ece4d8;
}

/* Left Side */

.uc-book-content {
  flex: 0 0 33%;
  padding: 40px;
}

.uc-book-content h2 {
  margin: 0 0 10px;
  color: #0f3b3a;
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  font-family: Georgia, serif;
}

.uc-book-content p {
  margin: 0 0 5px;
  color: #0f3b3a;
  font-size: 18px;
  line-height: 1.4;
}

.uc-book-form {
  width: 100%;
}

.uc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.uc-form-row select {
  width: 100%;
  height: 42px;

  border: 1px solid #ddd;
  border-radius: 4px;

  padding: 0 12px;

  background: #fff;
  color: #555;

  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.uc-table-book-btn {
  width: 100%;
  height: 44px;

  border: none;
  border-radius: 4px;

  background: #cf1f57;
  color: #fff;

  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  cursor: pointer;
  transition: .3s;
}

.uc-table-book-btn:hover {
  background: #b2184a;
}

.uc-book-phone {
  margin-top: 5px;
  text-align: center;
  font-size: 18px;
  color: #0f3b3a;
  font-weight: 600;
}

/* Right Side Image */

.uc-book-image {
  flex: 0 0 67%;
  overflow: hidden;
  position: relative;
  background: #f8f5ef;
}

.uc-book-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: left;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .uc-book-wrapper {
    flex-direction: column;
  }

  .uc-book-content {
    flex: 0 0 100%;
    width: 100%;
    padding: 30px;
  }

  .uc-book-image {
    flex: 0 0 100%;
    width: 100%;
  }

  .uc-book-image img {
    height: 350px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .uc-book-content {
    padding: 20px 10px;
  }

  .uc-book-content h2 {
    font-size: 24px;
  }

  .uc-form-row {
    grid-template-columns: 1fr;
  }

  .uc-book-image img {
    height: 150px;
  }
}

/* =========================
   BOOK TABLE SECTION END
========================= */


/* =========================
   GIFT CARD SECTION
========================= */

.uc-gift-card-section {
  margin: 40px 20px;

  min-height: 200px;

  border-radius: 18px;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid #efe6db;
}

.uc-gift-card-overlay {
  min-height: 200px;

  display: flex;
  align-items: center;

  padding: 30px 60px;
}

.uc-gift-content {
  max-width: 420px;
}

.uc-gift-title {
  margin: 0 0 15px;

  font-size: 36px;
  line-height: 1;
font-family:Georgia, 'Times New Roman', Times, serif;
  color: #083c3f;
  font-weight: 600;
  text-transform: uppercase;
}

.uc-gift-text {
  margin: 0 0 25px;
  color: #444;
  color: #083c3f;
  font-size: 18px;
  line-height: 1.4;
}

.uc-gift-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.uc-gift-btn-primary,
.uc-gift-btn-secondary {
  min-width: 160px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  transition: .3s ease;
}

.uc-gift-btn-primary {
  background: #d81f63;
  color: #fff;
}

.uc-gift-btn-primary:hover {
  background: #be1452;
}

.uc-gift-btn-secondary {
  background: #fff;
  color: #444;
  border: 2px solid #d8d8d8;
}

.uc-gift-btn-secondary:hover {
  border-color: #083c3f;
  color: #083c3f;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .uc-gift-card-overlay {
    padding: 30px;
  }

  .uc-gift-title {
    font-size: 40px;
  }

  .uc-gift-text {
    font-size: 16px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .uc-gift-card-section {
    margin: 20px 10px;
  }

  .uc-gift-card-overlay {
    padding: 25px 20px;
    text-align: center;
    justify-content: center;
  }

  .uc-gift-content {
    max-width: 100%;
  }

  .uc-gift-title {
    font-size: 24px;
  }

  .uc-gift-buttons {
    justify-content: center;
  }

  .uc-gift-btn-primary,
  .uc-gift-btn-secondary {
    width: 100%;
  }
}

/* =========================
   END
========================= */




/* ==========================
   FAQ SECTION START
========================== */

.uc-faq-section {
  padding: 40px 20px;
}

.uc-faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.uc-faq-title {
  text-align: center;
  margin-bottom: 30px;
  color: #073d40;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: auto;
}

.uc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.uc-faq-item {
  border: 1px solid #ece4d8;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.uc-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
  text-align: left;

  font-size: 18px;
  font-weight: 600;
  color: #0f3b3a;
}

.uc-faq-icon {
  font-size: 28px;
  color: #073d40;
  font-weight: 600;
  line-height: 1;
  min-width: 25px;
  text-align: center;
}

.uc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.uc-faq-answer-inner {
  padding: 0 22px 22px;
  font-size: 16px;
  line-height: 1.8;
  color: #0f3b3a;
}

/* First FAQ Open */

.uc-faq-item.active .uc-faq-answer {
  max-height: 200px;
}

/* hover effect */
.uc-faq-item {
  border: 1px solid #ece4d8;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.uc-faq-item:hover {
  border-color: #073d40;
  box-shadow: 0 8px 25px rgba(7, 61, 64, 0.08);
}


.uc-faq-item:hover .uc-faq-question {
  color: #073d40;
}
.uc-faq-icon {
  font-size: 28px;
  color: #073d40;
  font-weight: 600;
  line-height: 1;
  min-width: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.uc-faq-item:hover .uc-faq-icon {
  transform: scale(1.15);
}


/* Responsive */

@media (max-width: 768px) {

  .uc-faq-title {
    font-size: 24px;
  }

  .uc-faq-question {
    font-size: 14px;
    padding: 15px;
  }

  .uc-faq-answer-inner {
    padding: 0 15px 15px;
  }

  .uc-faq-icon {
    font-size: 24px;
  }
}

/* ==========================
   FAQ SECTION END
========================== */


/* ==========================
   INFO STRIP SECTION START
========================== */

.uc-info-strip-section {
  padding: 25px 20px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.uc-info-strip-container {
  max-width: 1400px;
  margin: 0 auto;

  background: transparent;
  border-radius: 14px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  overflow: hidden;
}

.uc-info-card {
  flex: 1;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 25px;
}

.uc-info-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.uc-info-content h4 {
  margin: 0 0 8px;

  color: #073d40;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.uc-info-content p {
  margin: 0;

  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.uc-info-content a {
  display: inline-block;
  margin-top: 8px;

  color: #d11f5b;
  font-size: 13px;
  font-weight: 700;

  text-decoration: none;
}

.uc-info-divider {
  width: 1px;
  align-self: stretch;
  background: #ece4d8;
}

.uc-rating-card {
  justify-content: center;
}

.uc-rating-card img {
  max-width: 180px;
  width: 100%;
  height: auto;
}

/* Hover */

.uc-info-card {
  transition: all .3s ease;
}



.uc-info-icon img {
  transition: all .3s ease;
}

/* Tablet */

@media (max-width: 991px) {

  .uc-info-strip-container {
    flex-wrap: wrap;
  }

  .uc-info-card {
    width: 50%;
    flex: 0 0 50%;
  }

  .uc-info-divider {
    display: none;
  }
}

/* Mobile */

@media (max-width: 767px) {

  .uc-info-card {
    width: 100%;
    flex: 0 0 100%;
    padding: 20px;
  }

  .uc-info-strip-container {
    display: block;
  }

  .uc-info-card:not(:last-child) {
    border-bottom: 1px solid #ece4d8;
  }
}

/* ==========================
   INFO STRIP SECTION END
========================== */

/* ==========================
   FOOTER START
========================== */

.uc-footer {
  background: linear-gradient(
    90deg,
    #01383c 0%,
    #04484a 50%,
    #01383c 100%
  );

  position: relative;
  overflow: hidden;
}

/*.uc-footer::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/

/*  background-image: url("img/footer-pattern.png");*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  background-size: cover;*/

/*  opacity: .08;*/
/*}*/

.uc-footer-container {
  max-width: 100%;
  margin: 0 auto;

  padding: 60px 25px;

  display: grid;
  grid-template-columns:
    1.4fr
    1.3fr
    1.2fr
    1fr
    1.5fr;

  gap: 30px;

  position: relative;
  z-index: 2;
}

.uc-footer h4 {
  margin: 0 0 18px;

  color: #e48d26;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.uc-footer p,
.uc-footer a,
.uc-footer li,
.uc-footer-copyright {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.8;
}

/* Newsletter */

.uc-footer-newsletter {
  display: flex;
  margin-top: 15px;
}

.uc-footer-newsletter input {
  flex: 1;
  height: 46px;

  border: none;
  outline: none;

  padding: 0 15px;

  border-radius: 5px 0 0 5px;
}

.uc-footer-newsletter button {
  width: 95px;

  border: none;

  background: #d41f60;
  color: #fff;

  font-weight: 700;
  cursor: pointer;

  border-radius: 0 5px 5px 0;
}


/* Social Icons */

.uc-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.uc-footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);

  color: #fff;
  font-size: 18px;

  text-decoration: none;

  transition: all 0.35s ease;
}

/* Hover Effect */
.uc-footer-social a:hover {
  background: #d41f60;
  border-color: #d41f60;

  transform: translateY(-4px) scale(1.08);

  box-shadow: 0 8px 20px rgba(212,31,96,0.35);
}

.uc-footer-social a i {
  transition: transform 0.35s ease;
}

.uc-footer-social a:hover i {
  transform: rotate(12deg);
}

.uc-footer-copyright {
  margin-top: 18px;
}

.uc-footer-copyright {
  margin-top: 18px;
}

/* Contact */

.uc-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uc-footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 12px;
}

.uc-footer-contact img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Logo */

.uc-footer-logo-col {
  display: flex;
  align-items: center;
  justify-content: left;
}

.uc-footer-logo {
  width: 140px;
  max-width: 100%;
}

/* Links */

.uc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uc-footer-links li {
  margin-bottom: 8px;
}

.uc-footer-links a:hover {
  color: #d4a34c;
}

/* Map */

.uc-footer-map {
  border-radius: 8px;
  overflow: hidden;
}

.uc-footer-map iframe {
  width: 100%;
  height: 140px;
  border: 0;
  display: block;
}

.uc-footer-policy {
  margin-top: 12px;
}

.uc-footer-policy span {
  color: rgba(255,255,255,.4);
  margin: 0 8px;
}

/* Hover */

.uc-footer-links a,
.uc-footer-policy a {
  transition: .3s;
}

.uc-footer-links a:hover,
.uc-footer-policy a:hover {
  color: #d4a34c;
}

.uc-footer-gallery{
    width:100%;
    padding:15px 0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
   
    border-top:1px solid rgba(255,255,255,.08);
}

/* Same size for all items */
.uc-award-item{
   border-radius: 10px;
    width:180px;
    height:110px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    padding:10px;

    cursor:pointer;
    text-decoration:none;
}

.uc-award-item img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.uc-footer-bottom {
  position: relative;
  z-index: 2;

  text-align: center;

  padding: 18px 15px;

  border-top: 1px solid rgba(255,255,255,.1);

  color: #fff;
  font-size: 14px;
}
/* Tablet */

@media (max-width: 991px) {

  .uc-footer-container {
    grid-template-columns: repeat(2,1fr);
  }

  .uc-footer-logo-col {
    grid-column: span 2;
    order: -1;
  }
  .uc-footer-gallery{
        gap: 20px;
    }

    .uc-award-item{
        width: 150px;
        height: 85px;
    }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 767px) {

  .uc-footer-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 35px;
    text-align: left;
  }

  /* Hide center logo */
  .uc-footer-logo-col {
    display: none;
  }

  /* Headings */
  .uc-footer h4 {
    text-align: left;
    margin-bottom: 15px;
  }

  /* Newsletter */
  .uc-footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .uc-footer-newsletter input,
  .uc-footer-newsletter button {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border-radius: 6px;
  }

  .uc-footer-newsletter input {
    padding: 10px 15px;
    font-size: 15px;
  }

  .uc-footer-newsletter button {
    font-size: 16px;
    font-weight: 700;
  }

  /* Contact */
  .uc-footer-contact li {
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
  }

  /* Links */
  .uc-footer-links {
    text-align: left;
  }

  /* Map */
  .uc-footer-map iframe {
    height: 180px;
  }

  /* Policy */
  .uc-footer-policy {
    text-align: left;
  }
   .uc-footer-bottom {
    font-size: 13px;
    padding: 15px;
  }
   .uc-footer-gallery{
        gap: 15px;
        padding: 12px 0;
    }

    .uc-award-item{
        width: 130px;
        height: 75px;
    }

  /* Copyright */
  .uc-footer-copyright {
    text-align: left;
    margin-top: 15px;
  }
}
/* ==========================
   FOOTER END
========================== */


/* ==========================
   ABOUT PAGE SATRT 
========================== */ 


.custom-story-section{
    overflow:hidden;
}
.custom-story-section .row{
    min-height:300px;
}
/* LEFT SIDE */

.story-left{
    background:url('../img/left-hero.jpg') center left no-repeat;
    background-size:cover;
    min-height:500px;
    display:flex;
    align-items:center;
    padding:60px 50px;
}

.content-wrap{
    max-width:520px;
    position:relative;
    z-index:2;
}


.story-subtitle{
    color:#d49a2a;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:20px;
}

.story-heading{
    font-family:'Playfair Display', serif;
    font-size:46px;
    line-height:1.05;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
}

.story-heading .pink-text{
    color:#cf1f57;
}

.story-heading em{
    font-style:italic;
    font-weight:400;
}

.story-description{
    color:#f1f1f1;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

/* BUTTONS */

.btn-journey{
    background:#cf1f57;
    color:#fff;
    padding:14px 35px;
    border-radius:4px;
    font-weight:600;
}

.btn-journey:hover{
    background:#e42174;
    color:#fff;
}

.btn-book{
    border:2px solid rgba(255,255,255,.5);
    color:#fff;
    padding:14px 35px;
    border-radius:4px;
    font-weight:600;
}

.btn-book:hover{
    background:#fff;
    color:#000;
    border:2px solid #cf1f57;
}

/* RIGHT SIDE */

.story-image{
    height:100%;
    min-height:550px;
}

.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* MOBILE */

@media(max-width:991px){

    .story-left{
        min-height:auto;
        padding:50px 30px;
    }

    .story-image{
        height:450px;
    }

    .story-heading{
        font-size:48px;
    }
}

@media(max-width:575px){


    .story-heading{
        font-size:30px;
    }

    .story-description{
        font-size:15px;
    }

    .story-image{
      height: 250px;
        min-height:250px;
    }

    .mandala-img{
        width:100px;
    }
}

/* HERO SECTION END */


/* ABOUT SECTION START */
.story-section{
    background:#ffffff;
}


.story-section .about-story-image{
    width:100%;
    border-radius:18px;
    display:block;
    max-height: 500px;
    height: 100%; 
    object-fit: cover;
}
.about-subtitle{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.about-story-subtitle{
    color:#cf1f57;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    line-height:1;
    margin:0;
}

.about-subtitle img{
    height:24px;
    width:auto;
    display:block;
    object-fit:contain;
}

.story-title{
    font-family:'Playfair Display', serif;
    font-size:42px;
    line-height:1.15;
    font-weight:700;
    color:#01393d;
    margin-bottom:25px;
}

.story-text{
    color:#4f4f4f;
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

/* Tablet */

@media(max-width:991px){

    .story-title{
        font-size:42px;
    }

    .story-text{
        font-size:17px;
    }
}

/* Mobile */

@media(max-width:767px){

    .story-section{
        padding:20px 20px !important;
        
    }

    .story-title{
        font-size:28px;
        line-height:1.25;
    }

    .story-text{
        font-size:16px;
        line-height:1.8;
    }

    .story-image-wrapper{
        margin-bottom:10px;
    }
}
/* ABOUT SECTION END */

/************ ABOUT JOURNEY START **********************/

.journey-section{
    padding:40px 0;
    background:#fff;
}

.journey-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:70px;
}

.journey-heading img{
    width:70px;
}

.journey-heading h2{
    margin:0;
    font-size:36px;
    font-weight:600;
    color:#034345;
    text-transform:uppercase;
    letter-spacing:2px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Timeline */

.journey-wrapper{
    position:relative;
    display:flex;
    gap: 26px;
    justify-content:space-between;
}

.journey-line{
    position:absolute;
    top:40px;
    left:8%;
    right:8%;
    height:2px;
    background:#d79a4a;
    z-index:1;
}

.journey-item{
    width:20%;
    position:relative;
    z-index:2;
    text-align:center;
}

.journey-icon{
    width:82px;
    height:82px;
    border:2px solid #d79a4a;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
}

.journey-icon img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.journey-year{
    color:#d81b60;
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.journey-item h4{
    font-size:18px;
    font-weight:700;
    color:#034345;
    line-height:1.4;
    margin-bottom:15px;
}

.journey-item p{
    color:#444;
    font-size:16px;
    line-height:1.8;
    max-width:220px;
    margin:auto;
}

.last-item h4{
    font-size:18px;
    font-weight:800;
    line-height:1.9;
}

/************ MOBILE **********************/

@media(max-width:991px){

    .journey-heading{
        margin-bottom:40px;
    }

    .journey-heading h2{
        font-size:30px;
        text-align:center;
    }

    .journey-heading img{
        width:45px;
    }

    .journey-line{
        display:none;
    }

    .journey-wrapper{
        display:block;
    }

    .journey-item{
        width:100%;
        display:flex;
        align-items:flex-start;
        gap:20px;
        text-align:left;
        padding:20px;
        margin-bottom:20px;
        border:1px solid #ececec;
        border-radius:15px;
        box-shadow:0 5px 15px rgba(0,0,0,.05);
        background:#fff;
    }

    .journey-icon{
        width:70px;
        height:70px;
        min-width:70px;
        margin:0;
    }

    .journey-icon img{
        width:42px;
        height:42px;
    }

    .journey-content{
        flex:1;
    }

    .journey-year{
        font-size:28px;
        margin-bottom:10px;
        line-height:1;
    }

    .journey-item h4{
        font-size:16px;
        margin-bottom:10px;
    }

    .journey-item p{
        max-width:100%;
        margin:0;
        font-size:15px;
        line-height:1.7;
    }

    .last-item h4{
        font-size:22px;
    }

}

@media(max-width:575px){

    .journey-section{
        padding:20px 0;
    }

    .journey-heading{
        gap:8px;
    }

    .journey-heading h2{
        font-size:24px;
    }

    .journey-item{
        display:grid;
        grid-template-columns:80px 1fr;
        gap:15px;
        padding:20px 15px;
        align-items:flex-start;
    }

    /* Left Column */
    .journey-icon{
        width:60px;
        height:60px;
        min-width:60px;
        margin:0 auto;
        grid-column:1;
        grid-row:1;
    }

    .journey-year{
        font-size:26px;
        margin-top:10px;
        text-align:center;
        grid-column:1;
        grid-row:2;
        line-height:1;
    }

    /* Right Column */
    .journey-item h4{
        grid-column:2;
        grid-row:1;
        font-size:20px;
        margin:0;
        align-self:center;
    }

    .journey-item p{
        grid-column:2;
        grid-row:2;
        font-size:14px;
        margin-top:5px;
        line-height:1.7;
    }

    /* Last Item */
    .last-item h4{
        grid-column:2;
        grid-row:1 / span 2;
        align-self:center;
    }
}

/************ ABOUT JOURNEY END **********************/


/******** COUNTER SECTION START ********/

.counter-section{
    padding:40px 0;
}

.counter-wrapper{
    position:relative;

    /* Background Image */
    background-image:url('../img/bg-counter.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:12px;
    padding:17px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    overflow:hidden;
}

.counter-item{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    position:relative;
}

/* Divider only between columns */
.counter-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:60px;
    background:rgba(255,255,255,0.20);
}

.counter-icon img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.counter-content h3{
    margin:0;
    color:#fff;
    font-size:42px;
    font-weight:700;
    line-height:1;
}

.counter-content .plus-sign{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-left:2px;
}

.counter-content p{
    margin:5px 0 0;
    color:#fff;
    font-size:16px;
    opacity:.9;
}

/******** TABLET ********/

@media(max-width:991px){

    .counter-wrapper{
        flex-wrap:wrap;
        padding:35px 30px;
        gap:25px 0;
    }

    .counter-item{
        flex:0 0 50%;
        max-width:50%;
    }

    .counter-item:nth-child(2)::after{
        display:none;
    }

    .counter-item:nth-child(3)::after{
        display:block;
    }
}

/******** MOBILE ********/

@media(max-width:767px){
  
  .counter-section{
    padding:20px 0;
}
    .counter-wrapper{
        padding:20px 10px;
        background-size:cover;
        flex-wrap:wrap;
        row-gap:20px;
    }

    .counter-item{
        flex:0 0 50%;
        max-width:50%;
        justify-content:center;
        padding:10px;
    }

    /* Remove all vertical dividers */
    .counter-item::after{
        display:none !important;
    }

    .counter-icon img{
        width:36px;
        height:36px;
    }

    .counter-content h3{
        font-size:24px;
    }

    .counter-content .plus-sign{
        font-size:20px;
    }

    .counter-content p{
        font-size:12px;
        line-height:1.3;
    }
}

/******** COUNTER SECTION END ********/

/*********************
 CELEBRATE SECTION START
**********************/

.celebrate-section{
    padding:40px 40px;
}

.celebrate-wrapper{
    position:relative;
    min-height:280px;

    /* Dynamic Background Image */
    background-image:url('../img/celebratio-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:15px;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:60px 30px;
}

.celebrate-content{
    max-width:650px;
    text-align:center;
    color:#fff;
}

.celebrate-subtitle{
    display:block;
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
    letter-spacing:.5px;
}

.celebrate-title{
    font-size:58px;
    line-height:1.1;
    margin-bottom:15px;
    color:#fff;
    font-weight:700;
}

.celebrate-desc{
    font-size:18px;
    line-height:1.7;
    margin-bottom:30px;
    color:#fff;
}

.celebrate-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.celebrate-buttons a{
    min-width:200px;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#01443f;
    color:#fff;
}

.btn-primary:hover{
    background:#012f2b;
}

.btn-secondary{
    background:#fff;
    color:#e83e6d;
}

.btn-secondary:hover{
    background:#f4f4f4;
}

/*********************
 TABLET
**********************/

@media(max-width:991px){

    .celebrate-wrapper{
        min-height:240px;
        padding:50px 25px;
    }

    .celebrate-title{
        font-size:44px;
    }

    .celebrate-desc{
        font-size:16px;
    }
}

/*********************
 MOBILE
**********************/

@media(max-width:767px){

    .celebrate-section{
        padding:20px 0;
    }

    .celebrate-wrapper{
        min-height:auto;
        padding:40px 20px;
        border-radius:12px;
    }

    .celebrate-subtitle{
        font-size:15px;
    }

    .celebrate-title{
        font-size:32px;
        margin-bottom:12px;
    }

    .celebrate-desc{
        font-size:14px;
        line-height:1.6;
        margin-bottom:25px;
    }

    .celebrate-buttons{
        flex-direction:column;
        gap:12px;
    }

    .celebrate-buttons a{
        width:100%;
        min-width:100%;
        padding:14px 20px;
    }
}

/*********************
 CELEBRATE SECTION END
**********************/



/* ===================================
   WHY GUESTS LOVE US
=================================== */

.why-love-section{
    padding:40px 0;
    background:#fff;
}

/* Grid */

.why-love-section .wgl-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* Card */

.why-love-section .wgl-card{
    position:relative;
    background:#fff;
    border:1px solid #ece7e2;
    border-radius:18px;
    min-height:300px;
    padding:28px 24px;
    overflow:hidden;
    transition:.3s ease;
}

.why-love-section .wgl-card:hover{
    transform:translateY(-6px);
}

/* Top Right Decorative Shape */

.why-love-section .wgl-card::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    top:-100px;
    right:-100px;
    z-index:1;
}

/* Number */

.why-love-section .wgl-number{
    position:relative;
    z-index:5;
    display:block;
    font-size:54px;
    line-height:1;
    font-weight:700;
    font-family:Georgia, serif;
}

/* Icon */

.why-love-section .wgl-icon{
    position:absolute;
    top:18px;
    right:18px;
    width:100px;
    height:100px;
    border:2px dotted;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    z-index:5;
}

.why-love-section .wgl-icon img{
    width:55px;
    height:55px;
    object-fit:contain;
}

/* Content */

.why-love-section .wgl-content{
    position:relative;
    z-index:5;
    margin-top:50px;
}

.why-love-section .wgl-content h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
    color:#17352f;
}

.why-love-section .wgl-content p{
    font-size:16px;
    font-weight: 500;
    line-height:1.7;
    color:#444;
    max-width:165px;
}

/* Bottom Left Shape */

.why-love-section .wgl-corner{
    position:absolute;
    left:0;
    bottom:0;
    width:95px;
    height:95px;
    z-index:2;
}

.why-love-section .wgl-corner svg{
    width:100%;
    height:100%;
    display:block;
}

/* ==========================
   GREEN
========================== */

.why-love-section .wgl-green{
    border-color:#dbe6df;
}

.why-love-section .wgl-green .wgl-number{
    color:#00483f;
}

.why-love-section .wgl-green .wgl-icon{
    border-color:#b9d0c8;
}

.why-love-section .wgl-green .wgl-corner path{
    fill:#00483f;
}

.why-love-section .wgl-green::after{
    background:#f4faf7;
}

/* ==========================
   PINK
========================== */

.why-love-section .wgl-pink{
    border-color:#f3d6e3;
}

.why-love-section .wgl-pink .wgl-number{
    color:#e91e73;
}

.why-love-section .wgl-pink .wgl-icon{
    border-color:#f3bfd4;
}

.why-love-section .wgl-pink .wgl-corner path{
    fill:#e91e73;
}

.why-love-section .wgl-pink::after{
    background:#fff6fa;
}

/* ==========================
   ORANGE
========================== */

.why-love-section .wgl-orange{
    border-color:#f6dfc2;
}

.why-love-section .wgl-orange .wgl-number{
    color:#f28c13;
}

.why-love-section .wgl-orange .wgl-icon{
    border-color:#f2cb92;
}

.why-love-section .wgl-orange .wgl-corner path{
    fill:#f28c13;
}

.why-love-section .wgl-orange::after{
    background:#fff8ef;
}

/* ==========================
   DARK GREEN
========================== */

.why-love-section .wgl-dark-green{
    border-color:#dbe6df;
}

.why-love-section .wgl-dark-green .wgl-number{
    color:#00483f;
}

.why-love-section .wgl-dark-green .wgl-icon{
    border-color:#b9d0c8;
}

.why-love-section .wgl-dark-green .wgl-corner path{
    fill:#00483f;
}

.why-love-section .wgl-dark-green::after{
    background:#f4faf7;
}

/* Responsive */

@media(max-width:991px){

    .why-love-section .wgl-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
  .why-love-section{
    padding : 20px 0;
  }

    .why-love-section .wgl-grid{
        grid-template-columns:1fr;
    }

    .why-love-section .wgl-icon{
        width:80px;
        height:80px;
    }

    .why-love-section .wgl-icon img{
        width:42px;
        height:42px;
    }

    .why-love-section .wgl-number{
        font-size:42px;
    }
}

/********************************
WHY LOVE SECTION END
********************************/

/********************************
LOYALITY SECTION START 
**********************************/




.uc-loyalty-section{
    background: url('../img/loyal-bg.jpg') center center / cover no-repeat;
    padding: 40px 0;
    /* min-height: 650px; */
}

/* Left Content */

.uc-loyalty-title{
    color:#fff;
    font-size:38px;
    font-weight:600;
    margin-bottom:15px;
}

.uc-loyalty-subtitle{
    color:#fff;
    margin-bottom:20px;
    font-weight:600;
    font-size: 20px;
}

.uc-loyalty-list{
    color:#fff;
    padding-left:20px;
}

.uc-loyalty-list li{
    margin-bottom:8px;
    font-size: 16px;
    line-height:1.2;
}

/* Button */

.uc-loyalty-btn{
    margin-top:25px;

    background:#e41e3f;
    color:#fff;

    padding:14px 28px;
    border-radius:8px;

    font-weight:600;
    letter-spacing:.5px;

    transition:.3s;
}

.uc-loyalty-btn:hover{
    background:#c71634;
    color:#fff;
}

/* Cards */

.uc-card{
    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;

    border-radius:18px;
    overflow:hidden;

    height:150px;

    text-decoration:none;
    cursor:pointer;

    transition:.35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.15);
}

.uc-card:hover{
    transform:translateY(-6px);
}

.uc-card img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:12px;
}

/* ===================================
   TABLET
=================================== */

@media (max-width:991px){

    .uc-loyalty-section{
        padding:70px 0;
    }

    .uc-loyalty-title{
        font-size:42px;
    }

    .uc-card{
        height:190px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width:767px){

    .uc-loyalty-section{
        padding:50px 0;
        text-align:center;
    }

    .uc-loyalty-title{
        font-size:32px;
    }

    .uc-loyalty-list{
        text-align:left;
    }

    .uc-card{
        height:150px;
    }

    .uc-loyalty-btn{
        width:100%;
    }
}

/* ===================================
   LOYALTY SECTION END
=================================== */

/********************************
COMMITMENT SECTION START
********************************/
.restaurant-commitment{
    padding:40px 40px;
    background:#fff;
}

.commitment-wrapper{
    display:flex;
    align-items:stretch;
    border:1px solid #e7dfd8;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
}

/* Left Image */

.commitment-image{
    width:28%;
    flex-shrink:0;
    position:relative;
    overflow:hidden;
}

.commitment-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    position:relative;
    z-index:1;
}
.commitment-image::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:220px;
    height:100%;
    z-index:2;
    pointer-events:none;
    background:linear-gradient(
        90deg,
        rgba(255,246,231,0) 0%,
        rgba(255,246,231,.4) 30%,
        rgba(255,246,231,.9) 70%,
        rgba(255,246,231,1) 100%
    );
}

/* Center Content */

.commitment-content{
    width:25%;
    padding:40px 15px;
    border-right:1px solid #e7dfd8;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background: #fff6e7 ;
}

.commitment-subtitle{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.commitment-subtitle span{
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    color:#d8872c;
    text-transform:uppercase;
}

.commitment-subtitle img{
    height:14px;
}

.commitment-content h2{
    font-size:30px;
    line-height:1.15;
    color:#0b2f2c;
    margin-bottom:20px;
    font-weight:700;
}

.commitment-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin:0;
}

/* Features */

.commitment-features{
    width:47%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background: #fff6e7;
}

.feature-item{
    padding:35px 10px;
    text-align:center;
    border-right:1px solid #e7dfd8;
}

.feature-item:last-child{
    border-right:none;
}

.feature-icon{
    margin-bottom:18px;
}

.feature-icon img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.feature-item h4{
    font-size:16px;
    color:#17352f;
    margin-bottom:12px;
    font-weight:700;
    line-height:1.4;
    letter-spacing: -1px;
}

.feature-item p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .commitment-wrapper{
        flex-direction:column;
    }

    .commitment-image,
    .commitment-content,
    .commitment-features{
        width:100%;
    }

    .commitment-image{
        height:350px;
    }

    .commitment-content{
        border-right:none;
        border-bottom:1px solid #e7dfd8;
    }

    .commitment-features{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-item:nth-child(2){
        border-right:none;
    }
}

/* Mobile */

@media(max-width:767px){

    .restaurant-commitment{
        padding:20px 0;
    }

    .commitment-image{
        height:250px;
    }

    .commitment-content{
        padding:30px 10px;
    }

    .commitment-content h2{
        font-size:30px;
    }

    .commitment-features{
        grid-template-columns:1fr;
    }

    .feature-item{
        border-right:none;
        border-bottom:1px solid #e7dfd8;
    }

    .feature-item:last-child{
        border-bottom:none;
    }
}

/********************************
COMMITMENT END
********************************/

/***************************  
New Card section start
****************************/


.uc-signature-showcase{
    padding:40px ;
    background:#01393d;
}

.uc-signature-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:10px;
    justify-content:center;
}

.uc-signature-card{
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.uc-signature-card:hover{
    transform:translateY(-6px);
}

.uc-signature-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    display:block;
}
.uc-signature-card a{
    display:block;
}
/************************
TABLET
************************/

@media(max-width:991px){

    .uc-signature-grid{
        grid-template-columns:repeat(5, 1fr);
    }

}

/************************
MOBILE
************************/

@media(max-width:767px){

    .uc-signature-showcase{
        padding:50px 0;
    }

    .uc-signature-grid{
        grid-template-columns:repeat(3, 1fr);
        gap:15px;
    }

    .uc-signature-card img{
        height:180px;
    }

}

/************************
SMALL MOBILE
************************/

@media(max-width:480px){

    .uc-signature-grid{
        grid-template-columns:1fr;
        max-width:350px;
        margin:auto;
    }

}
/*******************
Card section end  
********************/

/********************************
CTA SECTION START
********************************/

.restaurant-cta{
    padding:40px 0;
    background:#fff;
}

.cta-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    /* min-height:350px; */
}

/* Background Image */

.cta-bg{
    position:absolute;
    inset:0;
}

.cta-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Overlay */

/* .cta-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(199,18,86,.85) 0%,
        rgba(214,28,97,.80) 50%,
        rgba(193,20,88,.85) 100%
    );
    z-index:1;
} */

/* Decorative Pattern Left */


/* Content */

.cta-content{
    position:relative;
    z-index:3;
    max-width: 1000px;
    margin:0 auto;
    padding: 30px 40px;
    text-align:center;
    color:#fff;
}

.cta-content h2{
    font-size:38px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:600;
    color:#fff;
}

.cta-content p{
    max-width:650px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.4;
    color:rgba(255,255,255,.95);
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn{
    min-width:220px;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    transition:all .3s ease;
}

/* Book Table */

.primary-btn{
    background:#083a35;
    color:#fff;
    border:2px solid #083a35;
}

.primary-btn:hover{
    background:#062a27;
    border-color:#062a27;
    color:#fff;
}

/* Contact */

.secondary-btn{
    background:#fff;
    color:#c71560;
    border:2px solid #fff;
}

.secondary-btn:hover{
    background:#f8f8f8;
    color:#c71560;
}

/********************************
TABLET
********************************/

@media(max-width:991px){

    .cta-content{
        padding:40px 30px;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-content p{
        font-size:16px;
    }

    .cta-btn{
        min-width:180px;
    }
}

/********************************
MOBILE
********************************/

@media(max-width:767px){

    .restaurant-cta{
        padding:20px 0;
    }

    .cta-wrapper{
        min-height:auto;
    }

    .cta-content{
        padding:50px 20px;
    }

    .cta-content h2{
        font-size:30px;
        line-height:1.25;
    }

    .cta-content p{
        font-size:15px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .cta-buttons{
        flex-direction:column;
        gap:12px;
    }

    .cta-btn{
        width:100%;
        max-width:280px;
        min-width:auto;
    }
}

/********************************
CTA SECTION END
********************************/



/********************************** MENU PAGE START  ************************/

/**************
  HERO SECTION START
************/


.uc-menu-hero {
  width: 100%;
  overflow: hidden;
  background: #f8f4ef;
}

.uc-menu-hero__wrapper {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

/* Left Side - 40% */
.uc-menu-hero__content {
  width: 40%;
  position: relative;

  /* Left Background Pattern Image */
  background: url("../img/left-top.webp") no-repeat left top;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 30px;
  background-color: #fbf7f2;
}

.uc-menu-hero__content-inner {
  max-width: 420px;
}

/* Heading */
.uc-menu-hero__title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  color: #0d5b5f;
  text-transform: uppercase;
  font-family: auto;
}

.uc-menu-hero__title span {
  font-size: 52px;
  display: block;
  color: #cf1f57;
  margin-top: 8px;
}

/* Subtitle */
.uc-menu-hero__subtitle {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 52px;
  line-height: 1;

  font-family: "Tangerine", cursive;
  color: #f28c13;
  font-weight: 600;
}

/* Description */
.uc-menu-hero__text {
  margin-top: 5px;
  margin-bottom: 5px;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
  max-width: 360px;
}

/* Buttons */
.uc-menu-hero__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.uc-btn-menu,
.uc-btn-book {
  padding: 14px 28px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
}

.uc-btn-menu {
  background: #cf1f57;
}

.uc-btn-menu:hover {
  background: #c52d60;
  color: #fff;
}

.uc-btn-book {
  background: #0d5b5f;
}

.uc-btn-book:hover {
  background: #08464a;
  color: #fff;
}

/* Right Side - 60% */
.uc-menu-hero__image {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.uc-menu-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================
   Tablet
========================== */

@media (max-width: 991px) {
  .uc-menu-hero__wrapper {
    flex-direction: column;
  }

  .uc-menu-hero__content,
  .uc-menu-hero__image {
    width: 100%;
  }

  .uc-menu-hero__content {
    padding: 50px 30px;
    text-align: center;
  }

  .uc-menu-hero__content-inner {
    max-width: 100%;
  }

  .uc-menu-hero__text {
    max-width: 100%;
  }

  .uc-menu-hero__buttons {
    justify-content: center;
  }

  .uc-menu-hero__image {
    height: 420px;
  }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 767px) {
  .uc-menu-hero__content {
    padding: 40px 20px;
  }

  .uc-menu-hero__title {
    font-size: 36px;
  }

  .uc-menu-hero__subtitle {
    font-size: 24px;
  }

  .uc-menu-hero__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .uc-menu-hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .uc-btn-menu,
  .uc-btn-book {
    width: 240px;
    text-align: center;
  }

  .uc-menu-hero__image {
    height: 300px;
  }
}

/******************
HERO SECTION END  
********************/

/******************
CATEGORY SECTION START
 ****************** */
/* =========================
   FLOATING CATEGORY NAV
========================= */

.category-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -40px;
  padding: 0 20px;
}

.category-nav {
  max-width: 1180px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(8, 1fr);

  background: #fff;
  border-radius: 18px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.category-item {
  position: relative;

  min-height: 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 14px;

  text-decoration: none;
  text-align: center;

  padding: 22px 15px;

  transition: all 0.3s ease;
}

/* Light divider */
.category-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 1px;
  height: calc(100% - 40px);
  background: #ececec;
}

.category-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.category-item span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.4px;
  color: #034345;
}

.category-item:hover {
  background: #fafafa;
}

.category-item:hover img {
  transform: translateY(-2px);
}

/* Optional active state */
.category-item.active {
  background: #fff;
}

.category-item.active span {
  color: #143746;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .category-nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-item:nth-child(4n)::after {
    display: none;
  }
}

/* =========================
   MOBILE
   2 categories in one row
========================= */

@media (max-width: 576px) {
  .category-wrapper {
    margin-top: -40px;
    padding: 0 15px;
  }

  .category-nav {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14px;
  }

  .category-item {
    min-height: 100px;
    padding: 18px 12px;
  }

  .category-item img {
    width: 32px;
    height: 32px;
  }

  .category-item span {
    font-size: 12px;
  }

  .category-item:nth-child(even)::after {
    display: none;
  }
}
/****************** 
 CATEGORY SECTION END  
 *********************/

/********************  
MENU SECTION START
*********************/
.menu-info-section {
  position: relative;
  overflow: hidden;

  padding: 80px 30px;

  /* Single background image for whole section */
  background-image: url("../img/menu-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark green overlay */
.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 78, 73, 0.6);
}

.menu-info-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.menu-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.menu-btn {
  background: #ff1548;
  color: #fff;
  text-decoration: none;

  min-width: 220px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;

  transition: 0.3s;
}

.menu-btn:hover {
  transform: translateY(-2px);
}

.menu-description p {
  color: #fff;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;

  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Tablet */
@media (max-width: 991px) {
  .menu-description p {
    font-size: 18px;
  }

  .menu-btn {
    min-width: 180px;
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .menu-info-section {
    padding: 50px 20px;
  }

  .menu-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu-btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }

  .menu-description p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/********************  
MENU SECTION END
*********************/

/********************
WEEKEND THALI SECTION START
*********************/



.thali-exp-section {
    margin: 0 auto;
    padding: 40px 60px;
}

/* Container */

.thali-exp-container {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: stretch;

    gap: 40px;

    /* Remove left padding */
    padding: 0;

    border: 1px solid #ece6dc;
    border-radius: 18px;
}

/* Background */

.thali-exp-bg {
    position: absolute;
    inset: 0;

    background-image: url("../img/bg-thali.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    z-index: 1;
}

/* Content Above Background */

.thali-exp-image-wrap,
.thali-exp-content {
    position: relative;
    z-index: 2;
}

/* ==========================
   LEFT IMAGE
========================== */

.thali-exp-image-wrap {
    flex: 0 0 40%;
    align-self: stretch;

    display: flex;
    align-items: center;

    margin-left: 0;
}

.thali-exp-image {
    width: 100%;
    height: 100%;
    display: block;

    max-width: none;
}

/* ==========================
   RIGHT CONTENT
========================== */

.thali-exp-content{
    flex: 1;

    padding: 30px 40px 30px 0;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.thali-inner-content{
    width: 100%;
    text-align: center;
}
.thali-exp-title {
    margin: 0 0 10px;

    color: #0f4a4c;

    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;

    text-transform: uppercase;
    font-family: auto;
}

.thali-exp-subtitle {
    margin: 0 0 15px;

    color: #51676a;

    font-size: 18px;
    line-height: 1.6;
}

/* Divider */

.thali-exp-divider img {
    width: 200px;
    height: 34px;

    /* background: #d6a756; */

    margin: 0 auto 0;
}

/* Day */

.thali-exp-day {
    color: #0f4a4c;

    font-size: 24px;
    font-weight: 700;

    text-transform: uppercase;
}

/* Time */

.thali-exp-time {
    margin-top: 5px;
    margin-bottom: 28px;

    color: #51676a;

    font-size: 18px;
    font-weight: 600;
}

/* ==========================
   PRICE CARDS
========================== */

.thali-exp-pricing {
    display: flex;
    justify-content: center;
    gap: 18px;

    margin-bottom: 28px;
}

.thali-exp-card {
    min-width: 150px;

    background: #fff;

    border: 1px solid #ececec;
    border-radius: 8px;

    padding: 14px 12px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.thali-exp-card-title {
    display: block;

    margin-bottom: 6px;

    color: #2d4346;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.thali-exp-price {
    display: block;

    color: #222;

    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

/* ==========================
   BUTTON
========================== */

.thali-exp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 230px;
    height: 48px;

    padding: 0 25px;

    background: #e91e63;
    color: #fff;

    border-radius: 4px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;

    transition: all .3s ease;
}

.thali-exp-btn:hover {
    transform: translateY(-2px);
}

/* ==========================
   LARGE TABLET
========================== */

@media (max-width: 1199px) {

    .thali-exp-title {
        font-size: 34px;
    }

    .thali-exp-card {
        min-width: 135px;
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .thali-exp-container {
        flex-direction: column;
        text-align: center;

        padding: 35px 25px;
    }

    .thali-exp-image-wrap {
        flex: auto;
        max-width: 420px;
        width: 100%;
    }

    .thali-exp-content {
        width: 100%;
    }

    .thali-exp-title {
        font-size: 32px;
    }

    .thali-exp-pricing {
        flex-wrap: wrap;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .thali-exp-container {
        padding: 25px 20px;
        gap: 25px;
    }

    .thali-exp-title {
        font-size: 26px;
    }

    .thali-exp-subtitle {
        font-size: 16px;
    }

    .thali-exp-day {
        font-size: 20px;
    }

    .thali-exp-time {
        font-size: 16px;
    }

    .thali-exp-pricing {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;

        width: 100%;
    }

    .thali-exp-card {
        width: 100%;
        min-width: auto;
    }

    .thali-exp-price {
        font-size: 28px;
    }

    .thali-exp-btn {
        width: 100%;
        min-width: auto;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .thali-exp-section{
        padding: 20px 10px;
  }

    .thali-exp-container {
        padding: 20px 15px;
    }
    .thali-exp-content{
      padding: 20px 0px 20px 0;
    }

    .thali-exp-title {
        font-size: 22px;
    }

    .thali-exp-subtitle {
        font-size: 14px;
    }

    .thali-exp-day {
        font-size: 18px;
    }

    .thali-exp-time {
        font-size: 15px;
    }

    .thali-exp-price {
        font-size: 24px;
    }

    .thali-exp-btn {
        font-size: 12px;
        padding: 0 15px;
    }
}

/********************
WEEKEND THALI SECTION END
*********************/





/*********************************
CRAFTED COCKTAILS SECTION
*********************************/

.drinks-section {
    padding: 40px 60px;
    background: #fff;
}

/* Heading */

.uc-gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-bottom: 40px;
}

.uc-gallery-header img {
    max-width: 90px;
}

.uc-gallery-header h2 {
    margin: 0;

    color: #0f4a4c;

    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

/* Grid */

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

/* Card */

.drink-card {
    background: #fff;

    border: 1px solid #ececec;
    border-radius: 12px;

    padding: 12px;

    text-align: center;

    box-shadow: 0 4px 12px rgba(0,0,0,.05);

    transition: .3s ease;
}

.drink-card:hover {
    transform: translateY(-5px);
}

/* Image */

.drink-card img {
    width: 100%;
    height: 240px;

    object-fit: cover;

    border-radius: 8px;
    display: block;
}

/* Title */

.drink-card h3 {
    margin: 18px 0 14px;

    color: #0f4a4c;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;

    text-transform: uppercase;
}

/* Divider */

.drink-card .thali-exp-divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.drink-card .thali-exp-divider img {
    width: 90px;
    height: auto;
    object-fit: contain;
}

/*********************************
TABLET
*********************************/

@media (max-width: 1199px) {

    .drinks-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .uc-gallery-header h2 {
        font-size: 34px;
    }
}

/*********************************
MOBILE
*********************************/

@media (max-width: 767px) {

    .drinks-section {
        padding: 20px 20px;
    }

    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .uc-gallery-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .uc-gallery-header h2 {
        font-size: 24px;
    }

    .drink-card h3 {
        font-size: 18px;
    }

    .drink-card img {
        height: 140px;
    }
}

/*********************************
SMALL MOBILE
*********************************/

@media (max-width: 480px) {
    .drinks-section{
        padding: 20px 10px;
    }
    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .drink-card{
        padding: 8px;
    }    
    .drink-card h3{
    font-size: 16px;
    }
    .drink-card h3 {
          margin: 12px 0 9px;  
}

    .drink-card img {
        height: 180px;
    }
}
/********************
COCKTAIL SECTION END  
*********************/



/*********************************
DIET FEATURES SECTION START
*********************************/

.diet-features-section {
    padding: 30px 60px;
}

.diet-features-wrap {
    background: #00555B; /* Same dark teal */

    border-radius: 18px;

    min-height: 95px;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    padding: 20px 35px;

    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

/* Feature Item */

.diet-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;

    flex: 1;
    justify-content: center;
}

/* Icon Circle */

.diet-feature-icon {
    width: 62px;
    height: 62px;

    border: 2px solid #f28c13;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.diet-feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

/* Text */

.diet-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.diet-feature-text span:first-child {
    color: #f28c13;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
}

.diet-feature-text span:last-child {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

/* Dashed Divider */

.diet-divider {
    width: 1px;
    height: 58px;

    border-right: 2px dashed #f28c13;

    flex-shrink: 0;
}

/*********************************
TABLET
*********************************/

@media (max-width: 991px) {

    .diet-features-section {
        padding: 25px;
    }

    .diet-features-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    .diet-divider {
        display: none;
    }

    .diet-feature-item {
        flex: 0 0 calc(50% - 10px);
        justify-content: flex-start;
    }
}

/*********************************
MOBILE
*********************************/

@media (max-width: 576px) {
    .diet-features-section{
        padding : 20px 10px;
    }
    .diet-features-wrap {
        padding: 25px 20px;
    }

    .diet-feature-item {
        flex: 0 0 100%;
    }

    .diet-feature-icon {
        width: 54px;
        height: 54px;
    }

    .diet-feature-icon img {
        width: 24px;
        height: 24px;
    }

    .diet-feature-text span {
        font-size: 15px !important;
    }
}

/*********************************
DIET FEATURES SECTION END
*********************************/



/*********************************
CHEF CTA SECTION START
*********************************/

.chef-cta-section {
    padding: 40px 60px;
}

.chef-cta-container {
    position: relative;
    overflow: hidden;

    min-height: 170px;

    border-radius: 18px;

    display: flex;
    align-items: center;

    padding: 40px 60px;
}

/* Background Layer */

.chef-cta-bg {
    position: absolute;
    inset: 0;

    background-image: url("../img/last-cta.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    z-index: 1;
}

/* Optional Dark Overlay */

.chef-cta-bg::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 60, 65, 0.35);
}

/* Content */

.chef-cta-content {
    position: relative;
    z-index: 2;

    max-width: 630px;
}

.chef-cta-title {
    margin: 0 0 12px;

    color: #fff;

    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;

    text-transform: uppercase;
    font-family: auto;
}

.chef-cta-subtitle {
    margin: 0 0 5px;

    color: #f28c13;

    font-size: 42px;
    font-family: "Tangerine", cursive;
    line-height: 1.3;
}

/* Buttons */

.chef-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.chef-btn {
    min-width: 180px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;

    transition: .3s ease;
}

.chef-btn-primary {
    background: #e91e63;
    color: #fff;
}

.chef-btn-primary:hover {
    transform: translateY(-2px);
}

.chef-btn-outline {
    border: 2px solid #f28c13;
    color: #fff;
    background: transparent;
}

.chef-btn-outline:hover {
    background: rgba(214,167,86,.15);
}

/*********************************
TABLET
*********************************/

@media (max-width: 991px) {

    .chef-cta-section {
        padding: 30px;
    }

    .chef-cta-container {
        padding: 35px;
    }

    .chef-cta-title {
        font-size: 34px;
    }

    .chef-cta-subtitle {
        font-size: 24px;
    }
}

/*********************************
MOBILE
*********************************/

@media (max-width: 767px) {

    .chef-cta-section {
        padding: 20px;
    }

    .chef-cta-container {
        padding: 30px 20px;
    }

    .chef-cta-title {
        font-size: 26px;
    }

    .chef-cta-subtitle {
        font-size: 36px;
    }

    .chef-cta-buttons {
        flex-direction: column;
    }

    .chef-btn {
        width: 100%;
        min-width: auto;
    }
}

/*********************************
CHEF CTA SECTION END
*********************************/

/*********************************** GAllERY PAGE START   **************************************/

/* ==========================
   URBAN CHOOLA GALLERY
========================== */
/* Tabs Card */

.uc-gallery-tabs {
  max-width: 1100px;
  margin: -55px auto 50px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.uc-tab {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #ececec;
  transition: 0.3s;
}

.uc-tab:last-child {
  border-right: none;
}

.uc-tab img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.uc-tab span {
  font-size: 13px;
  font-weight: 700;
  color: #0c5652;
  letter-spacing: 0.5px;
}

.uc-tab.active {
  background: #0c5652;
}

.uc-tab.active span {
  color: #fff;
}

.uc-tab.active img {
  filter: brightness(0) invert(1);
}

/* Gallery Grid */

.uc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.uc-gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.uc-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.uc-gallery-item:hover img {
  transform: scale(1.08);
}

.uc-hide {
  display: none !important;
}

/* Tablet */

@media (max-width: 991px) {
  .uc-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .uc-gallery-tabs {
    flex-wrap: wrap;
  }

  .uc-tab {
    flex: 0 0 50%;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .uc-gallery-banner {
    height: 220px;
  }

  .uc-gallery-tabs {
    margin: -40px 15px 30px;
  }

  .uc-tab {
    flex: 0 0 50%;
    padding: 18px 10px;
  }

  .uc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .uc-gallery-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .uc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* next plan start */

/* ===========================
   EXPERIENCE CTA SECTION
   =========================== */

.uc-exp-section {
  padding: 20px 15px;
}

.uc-exp-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: linear-gradient(90deg, #01454a 0%, #01383d 50%, #01454a 100%);

  border-radius: 12px;
  padding: 28px 40px;
}

/* Decorative Mandala Corners */
.uc-exp-wrap::before,
.uc-exp-wrap::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  opacity: 0.18;
  pointer-events: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23d6a248' stroke-width='2'%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.uc-exp-wrap::before {
  left: -45px;
  top: -45px;
}

.uc-exp-wrap::after {
  right: -45px;
  bottom: -45px;
}

.uc-exp-content {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.uc-exp-icon {
  min-width: 72px;
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #d6a248;
  border-radius: 50%;

  color: #d6a248;
}

.uc-exp-text h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uc-exp-text p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
}

.uc-exp-btn-wrap {
  position: relative;
  z-index: 2;
}

.uc-exp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  padding: 14px 28px;

  background: #ff2f63;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  border-radius: 4px;
  transition: 0.3s ease;
}

.uc-exp-btn:hover {
  transform: translateY(-2px);
  background: #ff1e58;
  color: #fff;
}

/* ===========================
   TABLET
   =========================== */
@media (max-width: 991px) {
  .uc-exp-wrap {
    padding: 25px;
    gap: 20px;
  }

  .uc-exp-text h2 {
    font-size: 28px;
  }

  .uc-exp-text p {
    font-size: 16px;
  }
}

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 767px) {
  .uc-exp-wrap {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .uc-exp-content {
    flex-direction: column;
    gap: 18px;
  }

  .uc-exp-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }

  .uc-exp-text h2 {
    font-size: 24px;
  }

  .uc-exp-text p {
    font-size: 15px;
    max-width: 100%;
  }

  .uc-exp-btn {
    width: 100%;
    min-width: unset;
  }
}
/*********************************** GAllERY PAGE END  **************************************/

/*********************************** CONTACT PAGE START   **************************************/
/* map section start */
.uc-contact-map {
  padding: 40px 0;
  background: #fff;
}

.uc-contact-wrap {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* LEFT SIDE */
.uc-contact-info {
  width: 340px;
  flex-shrink: 0;
  border: 1px solid #ece6df;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.uc-info-card {
  display: flex;
  gap: 20px;
  padding: 28px 25px;
  /*border-bottom: 1px solid #ece6df;*/
}

.uc-info-card:last-child {
  border-bottom: none;
}

.uc-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: #004f4f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-icon i {
  color: #fff;
  font-size: 28px;
}

.uc-info-content h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #003d3d;
}

.uc-info-content p {
  margin: 0 0 8px;
  color: #333;
  line-height: 1.6;
}

.uc-info-content span {
  display: block;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.uc-info-content a {
  display: inline-block;
  margin-top: 2px;
  color: #e63946;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* MAP */
.uc-map-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #ece6df;
  min-height: 600px;
}

.uc-map-box iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.uc-map-overlay {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 5;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  max-width: 310px;
}

.uc-map-overlay h4 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #003d3d;
}

.uc-map-overlay p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #444;
}

.uc-map-overlay a {
  color: #e63946;
  text-decoration: none;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .uc-contact-wrap {
    flex-direction: column;
  }

  .uc-contact-info {
    width: 100%;
  }

  .uc-map-box {
    min-height: 500px;
  }
   .uc-map-box iframe {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .uc-contact-map {
    padding: 20px 0;
  }

  .uc-info-card {
    gap: 15px;
    padding: 15px 10px;
  }

  .uc-icon {
    width: 48px;
    height:48px;
    min-width: 48px;
  }

  .uc-icon i {
    font-size: 22px;
  }

  .uc-map-overlay {
    left: 15px;
    right: 15px;
    max-width: none;
  }

  .uc-map-box {
    min-height: 420px;
  }
  .uc-map-box iframe {
    height: 420px;
  }
}

.place-details-compact-container {
  display: none !important;
}

/* map section end */

/* map form satrt */
/*********************************
CONTACT FORM SECTION
*********************************/

.uc-contact-form-section {
  padding: 40px 0;
}

.uc-contact-form-wrap {
  border: 1px solid #efe4d7;
  border-radius: 24px;

  display: flex;
  gap: 20px;

  padding: 20px;

  background: #fff;
}

/* LEFT */

.uc-contact-form-left {
  flex: 1;
}

.uc-contact-heading-wrap {
  display: flex;
  /* gap: 20px; */
  align-items: flex-start;
  margin-bottom: 30px;
}

.uc-contact-heading-icon img {
  width: 55px;
}

.uc-contact-title {
  font-size: 28px;
  line-height: 1.2;
  color: #0d4d4f;
  margin: 0 0 10px;
  font-weight: 600;
}

.uc-contact-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* FORM */

.uc-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.uc-contact-field {
  margin-bottom: 18px;
}

.uc-contact-field input,
.uc-contact-field textarea {
  width: 100%;
  border: 1px solid #efe4d7;
  border-radius: 10px;

  padding: 16px 18px;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

.uc-contact-field input:focus,
.uc-contact-field textarea:focus {
  border-color: #f4a628;
}

.uc-contact-field textarea {
  height: 130px;
  resize: none;
}

/* BUTTON */

.uc-contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #e81f54;

  color: #fff;

  border: none;

  padding: 15px 28px;

  border-radius: 8px;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.uc-contact-submit-btn:hover {
  transform: translateY(-2px);
}

.uc-contact-submit-btn i {
  font-size: 18px;
}

/* RIGHT PANEL */

.uc-help-panel {
  width: 420px;

  border-radius: 24px;

  position: relative;

  overflow: hidden;

  background: url("../img/form-right.jpg");

  background-size: cover;
  background-position: center;
}

.uc-help-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.uc-help-content h3 {
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin: 0 0 35px;
}

.uc-help-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.uc-help-item:last-child {
  margin-bottom: 0;
}

.uc-help-icon {
  width: 54px;
  height: 54px;

  min-width: 54px;

  border: 2px solid #d8a33c;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-help-icon i {
  color: #d8a33c;
  font-size: 20px;
}

.uc-help-item h4 {
  color: #fff;
  margin: 0 0 5px;
  font-size: 22px;
}

.uc-help-item p {
  margin: 0;
  color: #f0f0f0;
  font-size: 16px;
}

/*********************************
RESPONSIVE
*********************************/

@media (max-width: 991px) {
  .uc-contact-form-wrap {
    flex-direction: column;
  }

  .uc-help-panel {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .uc-contact-grid {
    grid-template-columns: 1fr;
  }

  .uc-contact-title {
    font-size: 28px;
  }

  .uc-contact-subtitle {
    font-size: 16px;
  }

  .uc-help-content {
    padding: 30px;
  }

  .uc-help-content h3 {
    font-size: 28px;
  }

  .uc-help-item h4 {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .uc-contact-form-section{
    padding: 20px 0;
  }
  .uc-contact-title{
    font-size: 20px;
  }
  .uc-contact-form-wrap {
    padding: 20px 10px;
  }
  .uc-help-content {
    padding: 20px 10px;
  }
  .uc-help-content h3 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .uc-help-item h4 {
    font-size: 16px;
  }
  .uc-help-item p {
    font-size: 14px;
  }
  .uc-contact-field input,
.uc-contact-field textarea {
 
  padding: 10px 14px;

}
.uc-contact-field{
  margin-bottom: 10px;
}
}
/* map form end  */

/* response feature start */

/*********************************
URBAN CHOOLA SUPPORT STRIP
*********************************/

.uc-support-strip {
  padding: 40px 0;
}

.uc-support-strip__wrapper {
  background: #faf8f5;
  border: 1px solid #ebe4dc;
  border-radius: 18px;

  display: flex;
  align-items: center;

  overflow: hidden;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.uc-support-card {
  flex: 1;

  display: flex;
  align-items: start;
  gap: 14px;

  padding: 18px 20px;

  min-height: 105px;
}

.uc-support-card__icon {
  width: 58px;
  height: 58px;

  min-width: 58px;

  border-radius: 50%;

  background: linear-gradient(135deg, #e3134d, #ff456f);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(227, 19, 77, 0.25);
}

.uc-support-card__icon i {
  color: #fff;
  font-size: 24px;
}

.uc-support-card__content h4 {
  margin: 0 0 6px;

  color: #0a4f58;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.2;
}

.uc-support-card__content p {
  margin: 0;

  color: #4f4f4f;

  font-size: 15px;
  line-height: 1.6;
}

.uc-support-divider {
  width: 1px;
  height: 70px;

  background: #e5ddd3;

  flex-shrink: 0;
}

/*********************************
TABLET
*********************************/

@media (max-width: 991px) {
  .uc-support-strip__wrapper {
    flex-wrap: wrap;
  }

  .uc-support-card {
    flex: 0 0 50%;

    border-bottom: 1px solid #ebe4dc;
  }

  .uc-support-divider {
    display: none;
  }
}

/*********************************
MOBILE
*********************************/

@media (max-width: 576px) {
  .uc-support-strip {
    padding: 25px 0;
  }

  .uc-support-strip__wrapper {
    flex-direction: column;
  }
  .uc-contact-grid{
    gap: 10px;
  }

  .uc-support-card {
    width: 100%;

    padding: 20px;

    min-height: auto;

    border-bottom: 1px solid #ebe4dc;
  }

  .uc-support-card:last-child {
    border-bottom: none;
  }

  .uc-support-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .uc-support-card__icon i {
    font-size: 20px;
  }

  .uc-support-card__content h4 {
    font-size: 17px;
  }

  .uc-support-card__content p {
    font-size: 14px;
  }
}

/* response feature end */
/*********************************** GAllERY PAGE END   **************************************/
/*********************************** GIFT CARD START **********************************/

/*********************************
GIFT CARD BANNER START
*********************************/

.uc-gift-banner{
    overflow:hidden;
}

/* LEFT SIDE */

.uc-gift-banner__content{
    height:420px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:60px 40px 60px 40px;

    position:relative;

    background: #034345;
}

/* .uc-gift-banner__content::before{
    content:"";

    position:absolute;
    inset:0;

    background:url("../img/pattern-bg.png");
    background-size:cover;

    opacity:.08;

    pointer-events:none;
} */

.uc-gift-banner__breadcrumb{
    color:#f4f4f4;
    font-size:14px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.uc-gift-banner__breadcrumb span{
    margin:0 8px;
}

.uc-gift-banner__title{
    font-size:52px;
    font-weight:700;
    line-height:1;
    color:#fff;

    margin-bottom:15px;
    font-family: auto;
    position:relative;
    z-index:2;
}

.uc-gift-banner__subtitle{
    font-size:48px;
   font-family: "Tangerine", cursive;
    font-weight:400;

    color:#f02b68;

    margin-bottom:10px;

    position:relative;
    z-index:2;
}

.uc-gift-banner__desc{
    max-width:420px;

    color:#fff;

    font-size:20px;
    line-height:1.4;

    position:relative;
    z-index:2;
}

/* RIGHT SIDE */

.uc-gift-banner__image{
    height:420px;
}

.uc-gift-banner__image img{
    width:100%;
    height:100%;

    object-fit:cover;
    display:block;
}


@media(max-width:991px){

    .uc-gift-banner__content{
        height:auto;

        padding:60px 30px;
    }

    .uc-gift-banner__image{
        height:350px;
    }

    .uc-gift-banner__title{
        font-size:52px;
    }

    .uc-gift-banner__subtitle{
        font-size:34px;
    }

    .uc-gift-banner__desc{
        font-size:18px;
    }
}

/*********************************
MOBILE
*********************************/

@media(max-width:767px){

    .uc-gift-banner__content{
        padding:45px 20px;
    }

    .uc-gift-banner__title{
        font-size:40px;
    }

    .uc-gift-banner__subtitle{
        font-size:28px;
    }

    .uc-gift-banner__desc{
        font-size:16px;
        line-height:1.7;
    }

    .uc-gift-banner__image{
        height:250px;
    }
}



/*********************************
GIFT CARD BANNER END
*********************************/
/**************** PACKAGE GIFT CARD START ************/
  /* ===========================
   Voucher Detail Section
=========================== */

    .voucher-detail-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 35px;
        background: #fff;
        border: 1px solid #e8dfd8;
        border-radius: 18px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, .06);
    }

    /* LEFT */

    .voucher-preview img {
        width: 100%;
        border-radius: 18px;
        display: block;
    }

    .voucher-preview-details {
        margin-top: 25px;
    }

    .voucher-preview-title {
        font-size: 34px;
        font-weight: 700;
        color: #01393d;
        margin-bottom: 20px;
    }

    .preview-label {
        display: block;
        font-weight: 700;
        color: #01393d;
        margin-bottom: 8px;
    }

    .preview-value,
    .preview-message {
        min-height: 24px;
        color: #666;
        font-size: 15px;
    }

    /* RIGHT */

    .voucher-title {
        font-size: 48px;
        font-weight: 700;
        color: #01393d;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .voucher-price {
        font-size: 34px;
        font-weight: 700;
        color: #01393d;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #01393d;
    }

    /* Amount Buttons */

    .price-pill {
        min-width: 72px;
        height: 46px;
        border: 1px solid #d8d8d8;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: #fff;
        transition: .3s;
        font-weight: 600;
        font-size: 15px;
        margin-right: 8px;
        margin-bottom: 10px;
    }

    .price-pill:hover {
        border-color: #cf1f57;
        color: #cf1f57;
    }

    .price-pill.active {
        background: #fff;
        border: 2px solid #cf1f57;
        color: #cf1f57;
    }

    /* Custom Amount */

    .custom-price-input {
        display: none;
        max-width: 280px;
        height: 48px;
        border-radius: 4px;
        border: 1px solid #ddd;
        padding: 12px;
        margin-top: 10px;
    }

    .custom-price-input:focus {
        outline: none;
        border-color: #cf1f57;
        box-shadow: none;
    }

    /* Delivery */

    .delivery-section {
        margin-top: 35px;
    }

    .delivery-title {
        font-size: 30px;
        color: #01393d;
        font-weight: 700;
        margin-bottom: 20px;
    }

    /* Tabs */

    .delivery-tabs {
        display: flex;
        gap: 8px;
    }

    .delivery-tab {
        flex: 1;
        text-align: center;
        padding: 14px;
        border: 1px solid #ddd;
        cursor: pointer;
        font-weight: 600;
        border-radius: 4px;
        transition: .3s;
        background: #fff;
    }

    .delivery-tab.active {
        background: #cf1f57;
        color: #fff;
        border-color: #cf1f57;
    }

    /* Form */

    .form-label {
        font-weight: 600;
        color: #01393d;
        margin-bottom: 8px;
    }

    .form-control {
        height: 48px;
        border-radius: 4px;
        border: 1px solid #d8d8d8;
        box-shadow: none;
    }

    textarea.form-control {
        height: 140px;
        resize: none;
    }

    .form-control:focus {
        border-color: #cf1f57;
        box-shadow: none;
    }

    .myself-info {
        padding: 15px;
        background: #fafafa;
        border-radius: 6px;
        border: 1px solid #eee;
    }

    /* Cart */

    .cart-section {
        margin-top: 30px;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .qty-input {
        width: 90px;
        height: 50px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .add-to-cart-btn {
        flex: 1;
        height: 50px;
        border: none;
        background: #cf1f57;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        border-radius: 4px;
        transition: .3s;
    }

    .add-to-cart-btn:hover {
        background: #b3194d;
    }

    /* Space Between Sections */

    .amount-section {
        margin-bottom: 35px;
    }

    /* Responsive */

    @media(max-width:991px) {

        .voucher-detail-section {
            padding: 20px;
        }

        .voucher-title {
            font-size: 36px;
        }

        .voucher-price {
            font-size: 28px;
        }

        .delivery-tabs {
            flex-direction: column;
        }

        .cart-section {
            flex-direction: column;
        }

        .qty-input {
            width: 100%;
        }

        .add-to-cart-btn {
            width: 100%;
        }

    }
     @media(max-width:560px) {
         .voucher-detail-section {
        
        margin: 20px auto;
        
    }
         
     }

/**************** PACKAGE GIFT CARD END ************/

/**************** PACKAGE GIFT CARD START ************/

.uc-gift-product {
  padding: 40px 0;
}

.uc-gift-product__wrapper {
  background: #fff;
  border: 1px solid #ece8e4;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}

/* IMAGE */

.uc-gift-product__image {
  overflow: hidden;
  border-radius: 16px;
}

.uc-gift-product__image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* CONTENT */

.uc-gift-product__content {
  padding-left: 10px;
}

.uc-gift-product__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: #0d4c52;
  margin-bottom: 6px;
}

.uc-gift-product__price {
  font-size: 24px;
  font-weight: 600;
  color: #294f57;
  margin-bottom: 6px;
}

/* GROUP */

.uc-gift-product__group {
  margin-bottom: 10px;
}

.uc-gift-product__group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #294f57;
  margin-bottom: 8px;
}

/* AMOUNT BUTTONS */

.uc-gift-product__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.uc-amount-btn {
  height: 36px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #dddddd;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.uc-amount-btn:hover,
.uc-amount-btn.active {
  border-color: #e91e63;
  color: #e91e63;
}

/* QUANTITY */

.uc-qty {
  display: flex;
  align-items: center;
  width: 145px;
  border: 1px solid #dddddd;
}

.uc-qty button {
  width: 45px;
  height: 40px;
  border: none;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.uc-qty input {
  width: 55px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #444;
}
/**************** GIFT FORM ****************/

.uc-gift-form {
  margin-top: 25px;
}

.uc-gift-form__group {
  margin-bottom: 10px;
}

.uc-gift-form__group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #294f57;
  margin-bottom: 8px;
}

.uc-gift-form__group label span {
  color: #e91e63;
}

.uc-gift-form__group input,
.uc-gift-form__group select,
.uc-gift-form__group textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  color: #444;
  background: #fff;
  outline: none;
}

.uc-gift-form__group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: normal;
}

/* Recipient Buttons */

.uc-gift-recipient-type {
  display: flex;
  gap: 10px;
}

.uc-recipient-btn {
  flex: 1;
  height: 48px;
  border: 1px solid #d6d6d6;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  transition: .3s;
  border-radius: 4px;
}

.uc-recipient-btn.active {
  background: #cf1f57;
  border-color: #cf1f57;
  color: #fff;
}

.uc-recipient-btn:hover {
  border-color: #b30a40;
}

/* Expiry Text */

.uc-gift-expiry {
  margin: -5px 0 20px;
  font-size: 14px;
  color: #555;
}

/* BUY BUTTON */

.uc-gift-buy-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 4px;
  background: #e91e63;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

.uc-gift-buy-btn:hover {
  opacity: 0.9;
}

/******** TABLET ********/

@media (max-width: 991px) {
  .uc-gift-product__content {
    padding-left: 0;
  }

  .uc-gift-product__title {
    font-size: 36px;
  }

  .uc-gift-product__price {
    font-size: 24px;
  }
}

/******** MOBILE ********/

@media (max-width: 767px) {
  .uc-gift-product {
    padding: 50px 0;
  }

  .uc-gift-product__wrapper {
    padding: 20px;
  }

  .uc-gift-product__title {
    font-size: 30px;
  }

  .uc-gift-product__price {
    font-size: 22px;
  }

  .uc-gift-product__group label {
    font-size: 16px;
  }

  .uc-gift-recipient-type {
    flex-direction: column;
  }

  .uc-recipient-btn {
    width: 100%;
  }

  .uc-gift-form__group input,
  .uc-gift-form__group select,
  .uc-gift-form__group textarea {
    font-size: 14px;
    padding: 12px;
  }

  .uc-gift-expiry {
    font-size: 13px;
  }

  .uc-amount-btn {
    width: calc(50% - 6px);
    padding: 0 10px;
    font-size: 14px;
  }

  .uc-gift-buy-btn {
    height: 55px;
    font-size: 16px;
  }
}


/**************** PACKAGE GIFT CARD END ************/



/*********************************
GIFT BENEFITS SATRT
*********************************/

.uc-gift-benefits{
    padding:40px 0;
}

.uc-gift-benefits-wrap{

    background:#fff;

    border:1px solid #ece6de;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 3px 12px rgba(0,0,0,.03);
}

/* ITEM */

.uc-gift-benefit-item{

    position:relative;

    text-align:center;

    padding:20px 15px;

    min-height:200px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background: #FDF4E5;
}

/* DESKTOP DIVIDER */

.uc-gift-benefit-item::after{

    content:"";

    position:absolute;

    right:0;
    top:50%;

    width:1px;
    height:120px;

    background:#e8dfd6;

    transform:translateY(-50%);
}

.uc-gift-benefit-item-last::after{
    display:none;
}

/* ICON */

.uc-gift-benefit-icon{

    width:70px;
    height:70px;

    margin-bottom:18px;
}

.uc-gift-benefit-icon img{

    width:100%;
    height:100%;

    object-fit:contain;
}

/* TITLE */

.uc-gift-benefit-item h4{

    margin:0 0 12px;

    font-size:20px;
    font-weight:600;
    font-family: auto;

    color:#0c4d52;

    line-height:1.3;
}

/* TEXT */

.uc-gift-benefit-item p{

    margin:0;

    font-size:16px;

    color:#4c5b61;

    line-height:1.4;
}

/*********************************
TABLET
*********************************/

@media(max-width:991px){

    .uc-gift-benefit-item{

        border-bottom:1px solid #ece6de;
    }

    .uc-gift-benefit-item::after{
        display:none;
    }

    .uc-gift-benefit-item h4{
        font-size:20px;
    }

    .uc-gift-benefit-item p{
        font-size:16px;
    }
}

/*********************************
MOBILE
*********************************/

@media(max-width:767px){

    .uc-gift-benefits{
        padding:20px 0;
    }

    .uc-gift-benefit-item{

        min-height:auto;

        padding:30px 20px;
    }

    .uc-gift-benefit-icon{

        width:55px;
        height:55px;
    }

    .uc-gift-benefit-item h4{

        font-size:18px;
    }

    .uc-gift-benefit-item p{

        font-size:15px;
        line-height:1.6;
    }
}

/*********************************
GIFT BENEFITS END
*********************************/




/*********************************
UC GIFT JOURNEY
*********************************/

.ucgiftjourney-section{
    padding:40px 0;
    background:#01393d;
}

/* HEADING */

.ucgiftjourney-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    margin-bottom:30px;
}

.ucgiftjourney-heading img{
    height:20px;
    width:auto;
}

.ucgiftjourney-heading h2{
    margin:0;
    color:#fff;
    font-size:36px;
    font-weight:600;
    text-transform:uppercase;
}

/* STEP */

.ucgiftjourney-step{
    position:relative;
    padding:0 20px;
}

.ucgiftjourney-icon{
    width:100px;
    height:100px;
    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.ucgiftjourney-icon img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.ucgiftjourney-step h4{
    color:#d7a34a;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
}

.ucgiftjourney-step p{
    color:#fff;
    font-size:17px;
    line-height:1.7;
    margin:0;
}

/* DESKTOP ARROWS */

@media(min-width:992px){

    .ucgiftjourney-step::after{
        content:"→";
        position:absolute;
        top:20px;
        right:-25px;

        color:#fff;
        font-size:40px;
        font-weight:300;
    }

    .ucgiftjourney-step-last::after{
        display:none;
    }
}

/* TABLET */

@media(max-width:991px){

    .ucgiftjourney-step{
        margin-bottom:40px;
    }

    .ucgiftjourney-heading h2{
        font-size:34px;
    }

    .ucgiftjourney-step h4{
        font-size:18px;
    }

    .ucgiftjourney-step p{
        font-size:16px;
    }
}

/* MOBILE */

@media(max-width:767px){

    .ucgiftjourney-section{
        padding:60px 0;
    }

    .ucgiftjourney-heading{
        gap:10px;
        margin-bottom:40px;
    }

    .ucgiftjourney-heading img{
        height:14px;
    }

    .ucgiftjourney-heading h2{
        font-size:26px;
    }

    .ucgiftjourney-icon{
        width:80px;
        height:80px;
    }

    .ucgiftjourney-icon img{
        width:38px;
        height:38px;
    }

    .ucgiftjourney-step h4{
        font-size:16px;
    }

    .ucgiftjourney-step p{
        font-size:15px;
        line-height:1.6;
    }
}
@media(max-width:560px){

    

    .ucgiftjourney-heading h2{
        font-size:24px;
    }
    
}
/*********************************
HOW IT WORKS END
*********************************/
/************************************* GIFT CARD END   ********************************/
/**************************************Privacy policy**********************************************/

.uc-privacy-heading{
  font-size: 42px;
  font-weight: 600;
}
@media (max-width: 560px) {
  .uc-privacy-heading {
    font-size: 24px;
  }
}


/* PRIVACY FEATURE START */
.uc-policy-section{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.uc-policy-item{
    display:flex;
    gap:35px;
    padding:35px 0;
    border-bottom:1px solid #eadfce;
}

.uc-policy-item:last-child{
    border-bottom:none;
}

.uc-policy-icon{
    min-width:110px;
    width:110px;
    height:110px;
    border-radius:50%;
    background:#faf2e9;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    overflow:hidden;
}

.uc-policy-icon img{
    width:50px;
    height:50px;
    object-fit:contain;
}

/* Individual Icon Colors */

.uc-policy-item:nth-child(1) .uc-policy-icon i{
    color:#e73f73;
}

.uc-policy-item:nth-child(2) .uc-policy-icon i{
    color:#f4a62a;
}

.uc-policy-item:nth-child(3) .uc-policy-icon i{
    color:#0d4b59;
}

.uc-policy-item:nth-child(4) .uc-policy-icon i{
    color:#e73f73;
}

.uc-policy-item:nth-child(5) .uc-policy-icon i{
    color:#f4a62a;
}

.uc-policy-item:nth-child(6) .uc-policy-icon i{
    color:#01393d;
}

.uc-policy-content{
    flex:1;
}

.uc-policy-content h3{
    margin:0 0 15px;
    color:#01393d;
    font-size: 24px;
    font-weight:600;
    text-transform:uppercase;
    font-family:Georgia, serif;
}

.uc-policy-content p{
    margin-bottom:15px;
    color:#444;
    line-height:1.8;
    font-size:17px;
}

.uc-policy-content ul{
    padding-left:20px;
    margin:0;
}

.uc-policy-content ul li{
    color:#444;
    line-height:1.8;
    margin-bottom:8px;
    font-size:16px;
}

/* Responsive */

@media(max-width:768px){

    .uc-policy-item{
        flex-direction:column;
        gap:20px;
        text-align:left;
    }

    .uc-policy-icon{
        width:90px;
        height:90px;
        min-width:90px;
    }

    .uc-policy-icon i{
        font-size:34px;
    }

    .uc-policy-content h3{
        font-size:24px;
        line-height:1.4;
    }
}
/* PRIVACY FEATURE END */



/*********** Cart Page START ******************************/

/*=====================================
            CART PAGE
======================================*/

.cart-banner{
    background:#01393d;
    padding:60px 0;
    text-align:center;
}

.cart-banner h1{
    color:#fff;
    font-size:46px;
    font-weight:700;
    margin:0;
    font-family:'Playfair Display',serif;
}

.cart-wrapper{
    padding:40px 0;
    background:#fff;
}

/*=========================
        NOTICE
=========================*/

.cart-notice{
    background:#FCF2E8;
    border-left:5px solid #cf1f57;
    border-radius:8px;
    padding:18px 25px;
    margin-bottom:35px;
    font-size:15px;
}

.cart-notice span{
    color:#01393d;
    font-weight:600;
}

.cart-notice a{
    color:#cf1f57;
    font-weight:700;
    text-decoration:none;
    margin-left:8px;
}

.cart-notice a:hover{
    text-decoration:underline;
}

/*=========================
        TABLE
=========================*/

.cart-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border:1px solid #ececec;
}

.cart-table thead th{
    background:#01393d;
    color:#fff;
    padding:18px;
    font-size:15px;
    text-transform:uppercase;
    font-weight:600;
    text-align:center;
    border:none;
}

.cart-table tbody td{
    padding:22px 18px;
    border-bottom:1px solid #eee;
    vertical-align:middle;
    text-align:center;
}

.cart-table tbody tr:hover{
    background:#fafafa;
}

/*=========================
        PRODUCT
=========================*/

.product-col{
    display:flex;
    align-items:center;
    gap:20px;
    text-align:left;
}

.product-image{
    width:90px;
    flex-shrink:0;
}

.product-image img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #ddd;
}

.cart-item-title{
    color:#01393d;
    font-size:18px;
    font-weight:700;
    line-height:1.5;
}

.cart-item-price{
    color:#555;
    font-size:16px;
    font-weight:600;
}

/*=========================
        REMOVE
=========================*/

.cart-remove{
    width:34px;
    height:34px;
    border-radius:50%;
    border:none;
    background:#f8d7da;
    color:#cf1f57;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

.cart-remove:hover{
    background:#cf1f57;
    color:#fff;
}

/*=========================
        QUANTITY
=========================*/

.cart-qty-input{
    width:75px;
    height:46px;
    border:1px solid #ddd;
    border-radius:6px;
    text-align:center;
    font-size:15px;
}

.cart-qty-input:focus{
    outline:none;
    border-color:#cf1f57;
    box-shadow:none;
}

/*=========================
        ACTION ROW
=========================*/

.cart-action-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-top:20px;
    flex-wrap:wrap;
}

.coupon-box{
    display:flex;
    gap:12px;
}

.coupon-input{
    width:250px;
    height:48px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 15px;
    font-size:14px;
}

.coupon-input:focus{
    outline:none;
    border-color:#cf1f57;
}

.apply-coupon-btn,
.update-cart-btn{
    height:48px;
    padding:0 28px;
    border:none;
    border-radius:6px;
    background:#01393d;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.apply-coupon-btn:hover,
.update-cart-btn:hover{
    background:#cf1f57;
}

/*=========================
      CART TOTALS
=========================*/

.cart-summary{
    margin-top:50px;
    border:1px solid #ececec;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cart-summary h2{
    background:#01393d;
    color:#fff;
    padding:20px;
    margin:0;
    font-size:28px;
    font-family:'Playfair Display',serif;
}

.cart-totals{
    width:100%;
    border-collapse:collapse;
}

.cart-totals th,
.cart-totals td{
    padding:18px 22px;
    border-bottom:1px solid #eee;
}

.cart-totals th{
    width:45%;
    background:#fafafa;
    color:#01393d;
    font-size:16px;
    font-weight:700;
}

.cart-totals td{
    text-align:right;
    color:#555;
    font-size:16px;
}

.cart-totals strong{
    color:#cf1f57;
    font-size:18px;
}

/*=========================
      CHECKOUT
=========================*/

.checkout-btn{
    display:block;
    width:calc(100% - 40px);
    margin:20px;
    padding:16px;
    background:#cf1f57;
    color:#fff;
    text-align:center;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    border-radius:6px;
    transition:.3s;
}

.checkout-btn:hover{
    background:#b0184c;
    color:#fff;
}

/*=========================
      EMPTY CART
=========================*/

.empty-cart{
    padding:100px 0;
    text-align:center;
}

.empty-cart i{
    font-size:70px;
    color:#cf1f57;
    margin-bottom:25px;
}

.empty-cart h2{
    color:#01393d;
    font-size:34px;
    margin-bottom:30px;
    font-family:'Playfair Display',serif;
}

.shop-btn{
    display:inline-block;
    padding:15px 40px;
    background:#cf1f57;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:700;
    transition:.3s;
}

.shop-btn:hover{
    background:#b0184c;
    color:#fff;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px){

.cart-banner{
    padding:60px 0;
}

.cart-banner h1{
    font-size:36px;
}

.product-col{
    flex-direction:column;
    text-align:center;
}

.cart-action-row{
    flex-direction:column;
}

.coupon-box{
    width:100%;
    flex-direction:column;
}

.coupon-input,
.apply-coupon-btn,
.update-cart-btn{
    width:100%;
}

.cart-summary{
    margin-top:35px;
}

}

@media(max-width:767px){

.cart-table{
    min-width:700px;
}

.table-responsive{
    overflow-x:auto;
}

.product-image{
    width:70px;
}

.product-image img{
    width:70px;
    height:70px;
}

.cart-item-title{
    font-size:16px;
}

.cart-banner h1{
    font-size:30px;
}

.cart-notice{
    font-size:14px;
}

}

@media(max-width:575px){

.cart-wrapper{
    padding:40px 0;
}

.cart-banner{
    padding:50px 0;
}

.cart-summary h2{
    font-size:24px;
}

.checkout-btn{
    font-size:15px;
}

}

/*********** Cart Page END ******************************/


/*********** CHECKOUT Page START ******************************/

/*=====================================
        CHECKOUT PAGE
======================================*/

.checkout-banner{
    background:#01393d;
    padding: 60px 0;
    text-align:center;
}

.checkout-banner h1{
    color:#fff;
    font-size:46px;
    font-weight:700;
    margin:0;
    font-family:'Playfair Display',serif;
}

.checkout-wrapper{
    padding:40px 0;
    background:#fff;
}

/*=====================================
        SECTION TITLES
======================================*/

.checkout-title{
    font-size:24px;
    font-weight:700;
    color:#01393d;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

/*=====================================
            LABELS
======================================*/

.checkout-label{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#01393d;
    margin-bottom:8px;
    margin-top:8px;
}

.checkout-label span{
    color:#cf1f57;
}

/*=====================================
        INPUTS
======================================*/

.checkout-input,
.checkout-select,
.checkout-textarea{

    width:100%;
    height:35px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 16px;
    font-size:15px;
    margin-bottom:8px;
    transition:.3s;
    background:#fff;

}

.checkout-textarea{

    height:100px;
    padding-top:15px;
    resize:none;

}

.checkout-input:focus,
.checkout-select:focus,
.checkout-textarea:focus{

    outline:none;
    border-color:#cf1f57;
    box-shadow:0 0 0 0.15rem rgba(207,31,87,.15);

}

/*=====================================
        CHECKBOX
======================================*/

input[type=checkbox]{

    width:18px;
    height:18px;
    cursor:pointer;

}

.newsletter-label{

    font-size:14px;
    color:#666;

}

/*=====================================
        SAVING
======================================*/

.saving-indicator{

    color:#28a745;
    font-size:13px;
    margin-top:8px;
    display:none;

}

/*=====================================
        ORDER TABLE
======================================*/

.order-table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    border:1px solid #ececec;
    background:#fff;

}

.order-table thead{

    background:#01393d;

}

.order-table thead th{

    color:#fff;
    padding: 8px 12px;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;

}

.order-table tbody td{

    padding: 8px 12px;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:15px;

}

.order-table tfoot th,
.order-table tfoot td{

    padding: 8px 12px;
    border-top:1px solid #eee;
    font-weight:700;

}

.total-row{

    background:#FCF2E8;

}

.checkout-total-price{

    color:#cf1f57;
    font-size:22px;
    font-weight:700;

}

/*=====================================
        PAYMENT
======================================*/

.payment-box{

    margin-top:25px;
    border:1px solid #ececec;
    border-radius:10px;
    padding:20px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.stripe-logo-row{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;

}

.payment-title{

    font-size:22px;
    font-weight:700;
    color:#01393d;
    margin:0;

}

.stripe-box{

    background:#f8f8f8;
    border:1px solid #ddd;
    border-radius:8px;
    padding: 10px;
    margin-bottom:10px;

}

#stripe-card-element{

    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    padding:15px;

}

#stripe-card-element:focus{

    border-color:#cf1f57;

}

/*=====================================
        PRIVACY
======================================*/

.privacy-text{

    font-size:14px;
    color:#666;
    line-height:1.8;
    margin-top:20px;

}

.privacy-text a{

    color:#cf1f57;
    text-decoration:none;

}

.privacy-text a:hover{

    text-decoration:underline;

}

/*=====================================
        BUTTON
======================================*/

.place-order-btn{

    width:100%;
    height:45px;
    border:none;
    background:#cf1f57;
    color:#fff;
    border-radius:6px;
    font-size:17px;
    font-weight:700;
    transition:.3s;
    margin-top:20px;

}

.place-order-btn:hover{

    background:#b2184a;

}

.place-order-btn:disabled{

    background:#999;
    cursor:not-allowed;

}

/*=====================================
        ERROR
======================================*/

#payment-error-msg{

    display:none;
    background:#fdeaea;
    border:1px solid #f1b5b5;
    color:#b81d24;
    padding:15px;
    border-radius:6px;
    margin-bottom:20px;

}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.checkout-banner{

    padding:60px 0;

}

.checkout-banner h1{

    font-size:36px;

}

.checkout-title{

    font-size:22px;

}

.payment-box{

    margin-top:40px;

}

}

@media(max-width:767px){

.checkout-wrapper{

    padding:40px 0;

}

.checkout-banner h1{

    font-size:30px;

}

.checkout-title{

    font-size:20px;

}

.order-table{

    display:block;
    overflow-x:auto;
    white-space:nowrap;

}

.place-order-btn{

    font-size:15px;

}

}

@media(max-width:575px){

.checkout-banner{

    padding:50px 0;

}

.checkout-banner h1{

    font-size:28px;

}

.checkout-input,
.checkout-select{

    height:46px;

}

.checkout-textarea{

    height:80px;

}

.payment-box{

    padding:20px;

}

}
/*********** CHECKOUT Page END ******************************/

/************* ORDER ONLINE PAGE START ************************/
/* ==========================
   EatPresto Responsive CSS
========================== */

.eatpresto-wrapper{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.eatpresto-wrapper iframe{
    width:100%;
    min-height:700px;
    border:0;
    display:block;
}

/* Popup Modal */
#iframeModal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:0;
    border:0;
    overflow:auto;
    z-index:99999;
    background:rgba(0,0,0,.4);
    transition:height .3s ease;
    -webkit-overflow-scrolling:touch;
}

/* Main iframe */
#iframe{
    width:100%;
    border:0;
    display:block;
}


/* ==========================
   Tablet
========================== */

@media (max-width:991px){

    .eatpresto-wrapper iframe{
        min-height:650px;
    }

}


/* ==========================
   Mobile
========================== */

@media (max-width:767px){

    .eatpresto-wrapper{
        margin:0;
        padding:0;
    }

    .eatpresto-wrapper iframe{
        width:100%;
        min-height:600px;
    }

    #iframeModal{
        width:100%;
        left:0;
        top:0;
    }

}


/* ==========================
   Small Mobile
========================== */

@media (max-width:480px){

    .eatpresto-wrapper iframe{
        min-height:550px;
    }

}
/**************  ONLINE ORDER END ************/





