body {
  width: 86%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: var(--white-color);
}
.welcome_section{
  background-color: var(--white-color);
  width: 100%;
  height: 350px;
  position: relative;
}
.main_center_image{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: auto;
  width: 18%;
}
.bottom_left_image{
  position: absolute;
  bottom: 40px;
  left: 150px;
  width: 16%;
}
.top_right_image{
  position: absolute;
  top: 100px;
  right: 100px;
}
.main_page_icon_0{
  position: absolute;
  top: 30px;
  right: 38%;
  transform: translateX(0%);
  z-index: 9999;
}
.main_page_icon_1{
  position: absolute;
  top: 110px;
  left: 36%;
  transform: translateX(0%);
  z-index: 9999;
}
.main_page_icon_2{
  position: absolute;
  top: 130px;
  right: 34%;
  transform: translateX(0%);
  z-index: 9999;
}
.main_page_icon_3{
  position: absolute;
  bottom: -40px;
  right: 40%;
  transform: translateX(0%);
  z-index: 9999;
}
.welcome_text_section{
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
}
.welcome-text {
  color: var(--black-color);
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 100px;
  margin: 0;
}
.highlight {
  color: var(--pink-color);
  font-size: 100px;
  font-family: var(--font-main);
  font-weight: 900;
  margin: 0;
}
.main_page_subtitle{
  font-size: 24px;
  color: var(--black-color);
  font-family: var(--font-main);
  margin: 0;
}
.tour_filters_section{
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.tours-title{
  font-size: 30px;
  color: var(--black-color);
  font-family: var(--font-main);
  font-weight: bold;
}
.page-tours-categories {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  width: 95%;
  padding: 0px 20px;
  line-height: 50px; 
  gap: 15px;
  direction: rtl;
}
.page-tours-categories {
  scroll-behavior: smooth;
}
.page-tours-categories::-webkit-scrollbar {
  display: none;
}
.page-tours-main {
  width: 100%;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   
  gap: 50px;
}
.page-tours-main .row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 120px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.tour-see-more-section{
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 50px;
  padding-bottom: 20px;
}
.tour-see-more-button {
  padding: 10px 20px;
  border: 1px solid rgba(49, 57, 63, 1);
  background-color: transparent;
  color: var(--black-color);
  font-family: var(--font-main);
  font-size: 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
}
.tour-see-more-button:hover {
  background-color: var(--black-color);
  color: white;
}
.banner-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--red-color);
  color: white;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 5;
  padding-left: 100%; /* Push text outside initially */
  box-sizing: border-box;
  direction: rtl;
}

.marquee-track {
  white-space: nowrap;
  display: inline-block;
  animation: scroll-right-left 15s linear infinite;
  font-size: 20px;
  font-weight: bold;
  font-family: var(--main-font, sans-serif);
}
/* Keyframes to scroll text from right to left */
@keyframes scroll-right-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.custom-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 95%;
  margin: auto;
}

.grid-row {
  display: grid;
  direction: rtl;
  gap: 40px;
}

.top-row {
  grid-template-columns: repeat(4, 1fr); /* always 4 */
}

.bottom-row.layout-1 {
  grid-template-columns: 1fr 1fr; /* 50% */
}

.bottom-row.layout-2 {
  grid-template-columns: 1fr 1fr; /* 50% / 50% */
}

.bottom-row.layout-3 {
  grid-template-columns: 1fr 2fr 1fr; /* 25% / 50% / 25% */
}

.bottom-row.layout-4 {
  grid-template-columns: repeat(4, 1fr); /* 25% each */
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
  width: 100%;
}

/* Ensure max 8 per row */
@media (min-width: 1000px) {
  .categories-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* Tours Categories  */
.category-item {
  flex: 0 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--black-color);
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid var(--black-color);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.category-item:hover {
  background-color: var(--red-color);
  color: var(--background-color);
  border: 1px solid var(--background-color);
}
.category-item-first {
  flex: 0 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  background-color: var(--red-color);
  color: var(--white-color);
}
.category-item-first:hover {
  background-color: var(--red-color);
  color: var(--background-color);
  border: 1px solid var(--background-color);
}
.category-border-red{
  border: 1px solid var(--red-color);
  color: var(--red-color);
}
.category-border-black{
  border: 1px solid var(--black-color); 
  color: var(--black-color);
}
.category-item-second {
  flex: 0 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--red-color);
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid var(--red-color);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.category-item-second:hover {
  background-color: var(--red-color);
  color: var(--background-color);
  border: 1px solid var(--background-color);
}

/* Packages Section */
.packages_card_section{
  display: block;
  width: 100%;
  padding-top: 20px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}
.packages_card_top_section{
  display: block;
  width: 100%;
  padding-top: 20px;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; 
}
.packages_card_section_item {
  text-align: right;
  font-family: var(--font-main);
  font-size: 60px;
  font-weight: 900;
  -webkit-text-stroke: 1px var(--black-color);
  text-shadow: 1px 0 var(--black-color), -1px 0 var(--black-color), 0 1px var(--black-color), 0 -1px var(--black-color);
  line-height: 1;
  color: var(--black-color);
}
.packages-swiper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 60px auto;
  position: relative;
}
.packages-arrow {
  background: #333;
  color: #fff;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin: 5px;
  transition: background 0.2s ease;
}
.packages-arrow:hover {
  background: #555;
}
.packages-main {
  flex: 1;
  overflow: hidden;
}
.packages-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 20px;
}
.packages-see-more-section{
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}
.packages-see-more-button {
  padding: 10px 20px;
  border: 1px solid rgba(49, 57, 63, 1);
  background-color: transparent;
  color: var(--black-color);
  font-family: var(--font-main);
  font-size: 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
}
.packages-see-more-button:hover {
  background-color: var(--black-color);
  color: white;
}


/* Tasting Card Section */
.testing_card_section {
  position: relative;
  display: inline-block;
  background: var(--black-color);
  text-align: center;
  width: 100%;
  padding-bottom: 50px;
}
.testing_card_content-buttons {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}
.testing_card_half-out-btn {
  padding: 10px 20px;
  border: 1px solid var(--red-color);
  background-color: var(--red-color);
  color: var(--white-color);
  font-family: var(--font-main);
  font-size: 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
}
.tasting-card-title-pink{
  font-family: var(--font-main);
  color: var(--pink-color);
  font-size: 60px;
  font-weight: 900;
  -webkit-text-stroke: 1px var(--black-color);
  margin-top: 60px;
}
.tasting-card-title-white{
  font-family: var(--font-main);
  color: var(--white-color);
  font-size: 60px;
  font-weight: 900;
  -webkit-text-stroke: 1px var(--black-color);
  margin-top: 60px;
}
.tasting-card-subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 20px;
  color: var(--white-color);
  margin-top: 20px;
}
.tasting-card-swiper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 60px auto;
  position: relative;
}
.tasting-card-arrow {
  background: #333;
  color: #fff;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin: 5px;
  transition: background 0.2s ease;
}
.tasting-card-arrow:hover {
  background: #555;
}
.tasting-card-main {
  flex: 1;
  overflow: hidden;
}
.tasting-card-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 20px;
}



/* Social Section */
.social_section {
  position: relative;
  display: inline-block;
  background: var(--white-color);
  text-align: center;
  width: 100%;
  margin-top: 40px;
}
.social_title{
  font-family: var(--font-main);
  color: var(--black-color);
  font-size: 40px;
  font-weight: 900;
  -webkit-text-stroke: 1px var(--black-color);
  line-height: 1;
  margin-top: 50px;
  margin-bottom: 30px;
}
.social-swiper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 60px auto;
  position: relative;
}
.social-arrow {
  background: #333;
  color: #fff;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.social-arrow:hover {
  background: #555;
}
.social-main {
  flex: 1;
  overflow: hidden;
}
.social-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 20px;
}
.social-item {
  flex: 0 0 calc((100% - 80px) / 5); /* 5 items visible + 4 gaps (4×20px) */
  height: 550px;
  border-radius: 10px;
}
.social-item iframe{
  height: 100%;
  width: 100%;
}


/* Social Days Section */
.social_days_section {
  background: var(--white-color);
  text-align: center;
  width: 100%;
  padding-bottom: 50px;
  overflow: hidden;
}
.social_days_see_more_button {
  padding: 10px 20px;
  border: 1px solid var(--pink-color);
  background-color: transparent;
  color: var(--background-color);
  background-color: var(--pink-color);
  font-family: var(--font-main);
  font-size: 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  height: 60px;
}
.social_days_see_more_button:hover {
  background-color: var(--background-color);
  color: var(--black-color);
  border: 1px solid var(--black-color);
}
.social_days_section_title{
  font-family: var(--font-main);
  color: var(--pink-color);
  font-size: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight:900;
  -webkit-text-stroke: 1px var(--pink-color);
}


/* 🔥 Full-screen overlay */
.global-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}

/* 🔄 Spinner wrapper */
.global-loader {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}

/* 🌀 Animated spinner */
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #e0e0e0;
  border-top: 5px solid var(--red-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ✨ Loader text */
.loader-text {
  margin-top: 16px;
  font-size: 22px;
  color: var(--red-color);
  font-weight: 600;
}