html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  --sky: #f8f4e9;
  --red: #da0f0f;
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  --primary: #18d26e;
  --blue: #2547dc;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgb(215, 202, 202);
}

::-webkit-scrollbar-thumb {
  height: 60px;
  background: linear-gradient(#ffffff, #ff00c6);
  border-radius: 15px;
}

body {
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #70584f;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #51d8af;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: white;
  width: 45px;
  height: 44px;
  border-radius: 6px;
  border: none;
  color: #424242;
  top: 7px;
  right: 20px;
  z-index: 999;
  position: fixed;
  outline: none !important;
}

/* Mobile Nav */
.mobile-navbar {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: var(--sky);
  transition: left 0.3s ease;
  z-index: 1000;
  display: flex;
}

.mobile-navbar .nav-menu h1 a {
  color: #000;
  font-size: 26px;
  padding-left: 30px;
}

.mobile-navbar .nav-menu li:hover > a {
  border: transparent !important;
  background: transparent !important;
}

.mobile-navbar .nav-menu:hover > li {
  border: transparent !important;
  background: transparent !important;
}

.mobile-navbar.active {
  left: 0;
}

.mobile-navbar .nav-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 5px 0 0 0;
  margin: 0;
}

.mobile-navbar .nav-menu li {
  padding: 1px 15px;
  text-align: left;
}

.mobile-navbar .nav-menu li a {
  color: #1c1a1a;
  font-size: 16px;
  text-decoration: none;
}

/* Show mobile toggle button only on mobile screens */
@media (max-width: 800px) {
  .mobile-nav-toggle {
    display: block;
  }

  .mobile-navbar {
    display: block;
  }
}

.swiper {
  width: 100%;
  height: 100%;
  user-select: none;
}

#slider-menu-container .bg-cng {
  background-color: #fff !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next:after {
  font-size: 20px !important;
  font-weight: 800 !important;
}

.mySwiper .swiper-button-prev:after,
.mySwiperr .swiper-button-prev:after,
.mySwipersrsR .swiper-button-prev:after,
.mySwipersrsS .swiper-button-prev:after,
.mySwipersrsU .swiper-button-prev:after,
.mySwipersrsT .swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: 800 !important;
}

.swiper-button-next {
  color: #ff00c6 !important;
  font-weight: 800 !important;
  background: var(--sky);
  border-radius: 8px !important;
}

.swiper-button-prev {
  color: #ff00c6 !important;
  font-weight: 800 !important;
  background: var(--sky);
  border-radius: 8px !important;
}

.swiper-pagination-bullet-active {
  background: #8a5ad4 !important;
}

.button-cng i {
  font-size: 22px !important;
  font-weight: 900 !important;
}
.button-cng {
  border-radius: 8px;
}

.btn-close {
  background-color: var(--red) !important;
}

.btn-sky {
  background-color: var(--sky) !important;
  color: #000 !important;
  border: #fff;
}

.btn-search {
  background-color: #424242;
}
.btn-search:hover {
  background-color: #1d1c1c;
}
.btn-search a {
  color: #ffffff !important;
}

.btn-section {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.btn-red {
  background-color: var(--red) !important;
  border: #000;
  width: 90%;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px;
}

.btn-red a {
  color: #fff;
}

.button-cng a {
  color: #424242 !important;
}

.nav-menu li.button-cng:hover > a {
  border-radius: 10px;
  border: 1px solid #040404;
  color: #424242 !important;
}

.view-all a {
  background-color: #ff00c6;
  padding: 10px 15px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
}

.section-container .text-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.back-to-top {
  position: fixed;
  display: none;
  background: rgb(138 104 80);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 25px;
  transition: 0.5s;
}

.back-to-top:focus {
  background: #c0e226c7;
  color: #fff;
  outline: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.blank {
  height: 8px;
}

#header-slider {
  padding: 2px 10px;
  background: #fff;
}

.header-slider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-repeat: no-repeat;
}

.slider-p {
  font-size: 13px;
  color: #000;
}

/* --------------- */

.header-cng {
  display: flex;
  justify-content: center;
  align-items: center;
}

#header {
  padding: 2px 20px;
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: #ffffff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  border-top: solid 2px #874317;
  position: sticky;
  top: -1px;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 !important;
}

#header #logo h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 45px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#header #logo h1 img {
  width: 50px;
}

#header #logo h1 img.paintLook {
  width: 150px;
  backdrop-filter: drop-shadow(2px 4px 6px black);
}

#header #logo h1 a {
  color: #261e19;
  line-height: 1;
  display: inline-block;
  font-size: 27px;
}

#header #logo h1 a span {
  color: #874317;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  #header {
    padding: 13px 0;
    height: 80px;
  }

  #header #logo h1 img {
    width: 55px;
  }

  #header #logo h1 {
    font-size: 34px;
    padding-left: 16px;
  }

  #header #logo img {
    max-height: 50px;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  /* border-bottom: 3px solid #874317; */
}

#intro-img {
  width: 100%;
  height: 100%;
}

#intro-img img {
  width: 100%;
  aspect-ratio: 16/5 !important;
  background-size: contain;
  background-repeat: no-repeat;
}
#intro-img img.aspecCn {
  aspect-ratio: 16/4 !important;
}
#poster-img img {
  width: 100%;
  aspect-ratio: 19/4 !important;
  background-size: contain;
  background-repeat: no-repeat;
}

#poster #poster-img img {
  aspect-ratio: 16/24 !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
  padding: 0;
}

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 11px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

@media screen and (min-width: 345px) and (max-width: 950.5px) {
  #header {
    padding: 2px 10px !important;
  }
  #header .nav-menu a {
    font-size: 14px !important;
    padding: 6px 6px !important;
  }
  #header #logo h1 a {
    font-size: 20px !important;
  }
}
@media screen and (min-width: 950px) and (max-width: 1125.5px) {
  #header .nav-menu a {
    font-size: 14px !important;
    padding: 6px 10px !important;
  }
  #header #logo h1 a {
    font-size: 25px !important;
  }
}
@media (max-width: 800px) {
  #nav-menu-container {
    display: none;
  }

  #header {
    height: 62px !important;
  }

  #mobile-nav-toggle {
    display: inline;
  }

  #mobile-nav-toggle i {
    color: #fff;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 6px 15px;
  text-decoration: none;
  display: inline-block;
  color: #261e19;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 17px;
  outline: none;
  border: 1px solid transparent;
}

.nav-menu li:hover > a {
  color: #424242;
  border-bottom: 1px solid #000000;
  /* background: rgb(202, 211, 220); */
}

.nav-menu li.dropdown-menus:hover > a {
  border: transparent !important;
  background-color: transparent !important;
}

.nav-menu > .menu-active > a {
  color: #a22dd2;
}

.nav-menu > li {
  margin-left: 0;
}

.nav-menu ul {
  margin: 2px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #c5aaa0;
}

.nav-menu ul ul {
  margin: 0;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  padding: 10px 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.section-header h2 {
  font-size: 30px;
  color: #bd3d0f;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 0;
  text-align: center;
}

.description {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #222121;
  padding: 10px 10px 3px 10px;
  font-size: 13px;
}

.price {
  padding: 5px 10px 3px 10px;
}

h4.title {
  font-size: 20px;
  padding-top: 10px;
  color: #171616 !important;
}

/* featured Section
--------------------------------*/
#featured {
  padding: 20px 0;
}
#cart-add {
  padding: 20px 0;
}

#cardfeatured {
  padding: 20px 0;
}
#cardfeatured .service-row {
  justify-content: flex-start;
  gap: 15px 0;
}
#cart-section {
  padding: 20px 0;
}

#cardsr .ser-wid {
  width: 24%;
  padding-bottom: 15px;
  border-radius: 0;
}
#saler .ser-wid {
  width: 49.4% !important;
  padding-bottom: 15px;
  border-radius: 0;
}

.ser-wid {
  width: 19.7%;
  /* height: 55vh; */
  border-radius: 8px;
  overflow: hidden;
}

.ser-wid .box,
.ser-wid .box,
.box-cart {
  height: 100%;
  overflow: hidden;
}

.ser-wid .box-cart .text .icon-h {
  color: #fff;
  text-align: end;
  padding-right: 20px;
}

.ser-wid .box-cart .text {
  overflow: hidden;
}

.ser-wid .box-cart .img img:hover {
  transform: scale(0.95);
}

.swiper-slide .box-cart .img img:hover {
  transform: scale(0.95);
}

.ser-wid .box .img {
  height: 25vh !important;
  overflow: hidden;
}

.ser-wid .box .text {
  height: 30%;
  padding-bottom: 5px !important;
}

.ser-wid .box img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ser-wid .box-cart .img img {
  object-fit: contain;
  background-repeat: no-repeat;
  transition: 0.2s ease-out;
}
.swiper-slide .box-cart .img img {
  transition: 0.2s ease-out;
}

#cardsr .service-row {
  justify-content: flex-start !important;
  gap: 1.3% !important;
}

#saler .gaping {
  gap: 10px !important;
}

.service-row {
  padding: 10px 20px 20px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 15px 0;
}

.section-container {
  background-color: #fff;
  padding: 20px;
}

.section-container h2 {
  color: #000000;
  font-weight: 700;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
}

#bestsellers {
  padding: 20px 0;
}

#bestsellingBudget {
  padding: 20px 0;
}

.banar-slider {
  padding-top: 20px !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  color: var(--default-color);
  /* background-color: #a73990; */
  background-color: #000;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: var(--sky);
  display: inline-block;
  line-height: 1;
}

.color-cng {
  color: var(--sky);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}

@media (max-width: 767.5px) {
  .footer .footer-links {
    padding-top: 25px;
  }
}
@media (max-width: 861.5px) {
  #saler .ser-wid {
    width: 49% !important;
  }
}
@media (max-width: 539.5px) {
  #saler .ser-wid {
    width: 48% !important;
  }
}

@media screen and (min-width: 340px) and (max-width: 767.5px) {
  .cng-foot {
    width: 50% !important;
  }
}
@media screen and (min-width: 340px) and (max-width: 767.5px) {
  .swiper-button-next:after {
    font-size: 15px !important;
  }

  .mySwiper .swiper-button-prev:after,
  .mySwiperr .swiper-button-prev:after {
    font-size: 15px !important;
  }

  .swiper-button-next {
    height: 30px !important;
    width: 18px !important;
  }

  .swiper-button-prev {
    height: 30px !important;
    width: 18px !important;
  }
}

.row-foot {
  margin: 0 !important;
  position: relative;
}

.social-media {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.footer-map {
  width: 46% !important;
}

.footer-map iframe {
  width: 100%;
}

@media (max-width: 993px) {
  .footer .footer-links iframe {
    width: 90%;
  }

  .footer-map {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #poster-img img {
    aspect-ratio: 19/4 !important;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #8a5ad4;
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  font-weight: 800;
  color: var(--contrast-cor);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #00bd99;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* ----- star----- */

.description-flex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-height: 55px;
  overflow: hidden;
}

.description-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.description-icon i {
  font-size: 10px;
}

@media (max-width: 510px) {
  .description {
    padding: 10px 3px !important;
  }
  #poster-img img {
    aspect-ratio: 19/4 !important;
  }
}

/* --- featured Booking ---- */

.hotel-info h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.hotel-info h2 i {
  font-size: 17px;
  font-weight: bold;
  color: #333;
}

.hotel-info .location {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
}

.flex-hotel-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
}

.rating-box {
  color: #fff;
  width: 90px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rating-score {
  font-size: 18px;
  padding: 10px 0;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background-color: var(--red);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.rating-score i {
  color: var(--contrast-color);
  font-size: 17px;
  margin-left: 5px;
}

.rating-count {
  font-size: 13px;
  color: #333;
  background-color: #f7f7f7;
  padding: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.hotel-tags .tag {
  display: inline-block;
  background-color: #eaeaea;
  color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
  font-size: 14px;
}

.hotel-tags .wizard-member {
  background-color: #333;
  color: #fff;
}

.company-service {
  margin-top: 15px;
  color: #ff6f61;
  font-weight: bold;
  font-size: 14px;
}

.company-service i {
  margin-right: 5px;
}

.amenities {
  text-align: left;
  padding-top: 20px;
}

.amenities h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
}

.amenities ul {
  list-style: none;
  padding: 0;
}

.amenities ul li {
  font-size: 16px;
  color: #322f2f;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.amenities ul li i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--background-color);
}

.amenities .category-hotel .width-ameni {
  width: 33%;
}

.amenities .category-hotel {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

#booking {
  padding: 30px 0;
}

.hotelbook .container {
  background-color: #fff;
  padding: 40px 0px !important;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.price-section {
  margin-bottom: 10px;
}

.booking-details {
  /* border: 1px solid #e8e7e7; */
  padding: 10px 20px;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 700;
}

.price-hotel {
  font-size: 17px;
  font-weight: bold;
  color: #000;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 10px;
  font-size: 16px;
}

.discount {
  color: #ff5722;
  font-size: 16px;
  margin-left: 10px;
}

.taxes-fees {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.date-range,
.room-info {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.savings-section {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

.savings-label {
  color: #000000;
  font-weight: 500;
}

.savings-amount {
  font-weight: bold;
  color: #000;
}

.taxes-included {
  font-size: 14px;
  color: #888;
}

.booking-system {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.continue-booking {
  background-color: var(--red);
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.continue-booking a {
  color: #fff;
}

.continue-booking:hover {
  background-color: rgb(175, 28, 28);
}

.hotel-details {
  width: 45%;
}

.book-details {
  padding: 30px 20px;
  border-radius: 10px;
  background-color: var(--sky);
  width: 50%;
}

@media (max-width: 993px) {
  .hotelbook .container {
    flex-direction: column;
    padding: 20px 30px 40px 30px !important;
  }

  .hotel-details {
    width: 100% !important;
  }

  .book-details {
    width: 100%;
  }
}

@media screen and (min-width: 993px) and (max-width: 1140px) {
  .booking-details {
    padding: 10px 12px !important;
  }

  .book-details {
    padding: 30px 2px !important;
  }

  .price-section {
    padding-left: 14px;
  }
}

@media (max-width: 473px) {
  .amenities .category-hotel .width-ameni {
    width: 50%;
  }

  .booking-details {
    padding: 10px 3px !important;
  }
}

.blog {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.blog img {
  width: 100%;
  /* height: 35vh; */
  object-fit: cover;
  max-height: 35vh;
  border-radius: 10px;
}

.btn-blog {
  border-radius: 8px;
  background-color: var(--red);
}

.btn-blog a {
  color: #fff !important;
  padding: 10px 30px;
}

.display-cng {
  justify-content: flex-start !important;
}

.blog-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.counter-container {
  display: flex;
  align-items: center;
}

.counter-container input {
  width: 30%;
  outline: none;
  border: none !important;
}

.counter-container .button-person {
  display: flex;
  gap: 8px;
}

.counter-container .grp-ad {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-container button {
  width: 30px;
  height: 30px;
  font-size: 16px;
  padding: 0;
}

.checkbox-cng label {
  margin: 0 !important;
}

.checkbox-cng {
  display: flex;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 13px !important;
}

.prasadFields {
  display: none;
  /* Hide the text fields by default */
}

.puja-intro {
  display: flex !important;
  gap: 5px;
}

#intro-img.puja-intro img {
  object-fit: cover;
  aspect-ratio: 16/14;
  width: 50%;
}

@media (max-width: 600px) {
  #intro-img.puja-intro img {
    aspect-ratio: 16/14 !important;
  }
  .view-all a {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }
}

#intro-img img.width-auto {
  aspect-ratio: auto !important;
  height: 50vh;
}

#swiper-width-cng {
  width: 100% !important;
}

#swiper-width-cng .swiper-width-imp {
  width: auto !important;
}

.section-container .center-amazing {
  justify-content: center !important;
}

.mySwipersrs {
  padding: 0 30px !important;
}
.mySwipersrs .description-content {
  text-align: left !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -6px) !important;
  left: 0;
  width: 100%;
}

.adding-section {
  border: 1px solid #8a5ad4;
  border-radius: 8px;
  justify-content: center;
  padding: 3px 0 !important;
  width: 90%;
}
.adding-section a {
  font-size: 14px;
  color: #8a5ad4;
  font-weight: 600;
}

.product-image {
  width: 140px;
  height: auto;
}
.product-main-title,
.product-offer {
  font-size: 1.3rem;
  font-weight: 700;
}
.product-price {
  font-size: 1.2rem;
  color: #28a745;
  font-weight: bold;
}
.product-old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}
.product-discount {
  color: #ff5722;
  font-size: 0.9rem;
}
.product-delivery {
  font-size: 0.9rem;
  color: #555;
}
.btn-custom {
  border: 1px solid #ced4da;
  background-color: #f8f9fa;
  color: #495057;
}

.badge {
  margin-left: 10px;
  padding: 5px 10px;
}

.plus-remove button a {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none !important;
}
#cart-add .btn-link:hover {
  text-decoration: none !important;
}

#cart-add .add-plus .btn-custom {
  padding: 0 10px;
}
#cart-add .add-plus .btn-customs {
  padding: 0 10px;
}
#cart-add .add-plus {
  gap: 5px;
}
.text-heading h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767.5px) {
  #cart-add .media-width1 {
    width: 24% !important;
  }
  #cart-add .media-width2 {
    width: 70% !important;
  }
}
@media (max-width: 600.5px) {
  #cart-add .media-width1 {
    width: 28% !important;
  }
  #cart-add .media-width2 {
    width: 72% !important;
  }
  .product-title {
    font-size: 1rem;
  }
}
@media (max-width: 480.5px) {
  #cart-add .media-width1 {
    width: 33% !important;
    padding: 0 0 0 10px;
  }
  #cart-add .media-width2 {
    padding: 0 0 0 10px;
    width: 65% !important;
  }
  .product-title {
    font-size: 0.8rem;
  }
  .product-image {
    width: 100px;
  }
}

.width-of-col4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.box-absolute {
  position: relative;
}
.relative a i {
  color: red;
}

.relative {
  position: absolute;
  left: 10px;
  top: 2px;
  z-index: 99;
}

.productCarousels h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.ratings {
  display: flex;
  align-items: center;
}

.ratings span {
  margin-right: 10px;
}

.price {
  /* font-size: 1.5rem;
  color: #E91E63; */
  font-size: 13px;
  font-weight: 500;
  color: black;
}

.carousel-inner img {
  height: 450px;
  object-fit: contain;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  padding: 5px 0;
}

.btn-lg {
  font-size: 1.2rem;
}

input[type="text"] {
  max-width: 200px;
}

#pincodeResult {
  color: #28a745;
}

.pad-cngg {
  padding: 12px 14px !important;
  font-size: 15px !important;
  margin: 0 !important;
}

.product-order {
  font-weight: 600;
  font-size: 15px;
}

.pin-check {
  display: flex;
  gap: 10px;
}
.pin-check input {
  outline: none !important;
}

.product-row {
  width: 100%;
  padding: 0 30px !important;
}

.newlancer {
  width: 100%;
  text-align: center;
}
.section-container h2.newlancer {
  font-size: 27px !important;
}

.elitePadd {
  padding-bottom: 20px !important;
}

.oftheDay {
  font-size: 25px !important;
  color: #444343 !important;
}

.price-hotel button {
  outline: none;
  border: none;
  background: none;
  font-size: 14px;
  color: #8a5ad4;
  font-weight: 600;
}

.menu-active {
  font-weight: bold;
  color: #007bff !important;
  text-decoration: underline;
}
