/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
  /* Colors */
  --color-primary: #70b0e9;
  --color-accent: #67bfbf;
  --color-text-dark: #4e5e68;
  --color-text-black: #000000;
  --color-white: #ffffff;
  --color-bg-light: #f7f7f7;
  --color-bg-card: #f9f9f9;
  --color-border-light: #cfcbcb;
  --color-border-medium: #e1e1e1;
  --color-border-card: #ddd;
  --color-footer-bg: #101828;
  --color-footer-card: #1e2939;
  --color-footer-text: #d1d5dc;
  --color-footer-divider: #364153;
  --color-slider-inactive: #e2e2e2;
  --color-hero-overlay: rgba(0, 0, 0, 0.29);
  
  
  /* Category icon colors */
  --color-food: #e8684e;
  --color-activities: #72c5c5;
  --color-accommodation: #e9c46a;
  --color-shops: #9b72cf;
  --color-travel: #e8684e;
  
  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-dots: 'Inter', sans-serif;
  
  /* Font sizes */
  --text-hero: 50px;
  --text-section-title: 40px;
  --text-card-title: 16px;
  --text-body: 14px;
  --text-small: 12px;
  --text-tiny: 10px;
  
  /* Line heights */
  --line-hero: 60px;
  --line-section: 64px;
  --line-body: 22px;
  --line-small: 24px;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  
  /* Border radius */
  --radius-small: 8px;
  --radius-medium: 20px;
  --radius-large: 30px;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-search: 0px 4px 4px rgba(0, 0, 0, 0.25);
  
  /* Layout */
  --max-width: 1440px;
  --content-width: 1188px;

  /* star color */
    --color-star: #FFB800; /* Default star color */
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   Utility Classes
   ============================================ */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: flex !important;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 630px;
  overflow: hidden;
  background-image: url('https://www.figma.com/api/mcp/asset/63bfc864-ada0-4fcf-b70d-dc8f65fa24d9');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 269px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-hero);
  line-height: var(--line-hero);
  color: var(--color-white);
  text-align: center;
  margin-bottom: 37px;
}

/* Desktop Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-search);
  width: 679px;
  height: 68px;
  padding: 0 8px 0 32px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-field:first-child {
  width: 160px;
}

.search-field:nth-child(3) {
  width: 180px;
}

.search-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-small);
  line-height: normal;
  color: var(--color-accent);
  letter-spacing: 2.16px;
}

.search-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-text-black);
}

.search-input {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-text-black);
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding: 0;
}

.search-input::placeholder {
  color: var(--color-text-dark);
  opacity: 0.7;
}

.search-divider {
  width: 1px;
  height: 42px;
  background-color: var(--color-border-light);
  margin: 0 28px;
}

.search-btn-main {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-body);
  line-height: var(--line-section);
  letter-spacing: -0.25px;
  text-transform: uppercase;
  padding: 0 24px;
  height: 37px;
  border-radius: var(--radius-large);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
/*
.search-btn:hover {
  background-color: #5a9ad4;
}

.search-btn:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}*/

/* Mobile Search Form */
.search-form {
  flex-direction: column;
  gap: 14px;
  width: 360px;
  padding: 0 20px;
}

.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-search);
  padding: 17px 23px;
  width: 100%;
  height: 68px;
}

.search-btn-mobile {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: var(--line-section);
  letter-spacing: -0.25px;
  text-transform: uppercase;
  width: 100%;
  height: 60.636px;
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.search-btn-mobile:hover {
  background-color: #5a9ad4;
}

/* ============================================
   Categories Section
   ============================================ */
.categories {
  padding: 94px 0 60px;
  background-color: var(--color-white);
}

.categories-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 186px;
  height: 220px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-medium);
  padding-top: 37px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.category-card:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.category-icon {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.category-icon svg {
  width: 29px;
  height: 29px;
}

.food-icon { background-color: var(--color-food); }
.activities-icon { background-color: var(--color-activities); }
.accommodation-icon { background-color: var(--color-accommodation); }
.shops-icon { background-color: var(--color-shops); }
.travel-icon { background-color: var(--color-food); }

.category-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  color: var(--color-text-dark);
  text-align: center;
}

.category-count {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-card-title);
  line-height: var(--line-hero);
  color: var(--color-text-dark);
  text-align: center;
}

/* ============================================
   Section Title (Shared)
   ============================================ */
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-section-title);
  line-height: var(--line-section);
  color: var(--color-text-dark);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 40px;
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: 60px 20px 80px;
  background-color: var(--color-white);
}

.about-content {
  max-width: 1089px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-body);
  line-height: var(--line-body);
  color: var(--color-text-black);
  margin-bottom: 22px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   7 Reasons Section (Slider)
   ============================================ */
.reasons {
  padding: 60px 20px 80px;
  background-color: var(--color-white);
}

.reasons-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.slider-arrow {
  width: 31px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.slider-arrow:hover {
  opacity: 0.7;
}
/*
.slider-arrow:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
} */

.slider-arrow svg {
  width: 100%;
  height: 100%;
}

.reasons-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 961px;
}

.reason-card {
  display: flex;
  min-width: 100%;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-medium);
  overflow: hidden;
  min-height: 636px;
}

.reason-content {
  flex: 0 0 479px;
  padding: 57px 53px 60px;
  position: relative;
}

.reason-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 120px;
  line-height: var(--line-section);
  color: var(--color-text-dark);
  text-transform: capitalize;
  display: block;
  margin-bottom: 26px;
}

.reason-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: var(--line-section);
  color: var(--color-text-dark);
  text-transform: capitalize;
  margin-bottom: 17px;
}

.reason-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-card-title);
  line-height: var(--line-body);
  color: var(--color-text-dark);
  text-transform: capitalize;
}

.reason-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-slider-inactive);
  font-family: var(--font-dots);
  font-weight: 900;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--color-primary);
}

.dot:hover {
  background-color: var(--color-primary);
  opacity: 0.7;
}

/* ============================================
   Best Things To Do Section (Tour Cards)
   ============================================ */
.things-to-do {
  padding: 60px 20px 80px;
  background-color: var(--color-white);
}

.tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 270px);
  gap: 36px 36px;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: center;
}

.tour-card {
  width: 270px;
  height: 339px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tour-image {
  position: relative;
  width: 100%;
  height: 161px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorite-btn {
  position: absolute;
  top: 19px;
  left: 23px;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.favorite-btn:hover {
  transform: scale(1.1);
}

.favorite-btn svg {
  width: 19px;
  height: 19px;
}

.tour-content {
  padding: 19px 23px 23px;
}

.tour-location {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-tiny);
  line-height: normal;
  color: var(--color-accent);
  letter-spacing: 5.1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.tour-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-card-title);
  line-height: normal;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.tour-details {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.tour-duration,
.tour-transfer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-tiny);
  line-height: normal;
  color: var(--color-text-dark);
}

.tour-duration svg,
.tour-transfer svg {
  width: 11px;
  height: 11px;
}

.tour-transfer svg {
  width: 13px;
  height: 13px;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-rating {
  width: 86px;
  height: 26px;
}

.tour-rating img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tour-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-card-title);
  line-height: normal;
  color: var(--color-text-dark);
}

.star-icon {
  width: 14px;
  height: 14px;
  fill: var(--color-star);
}

/* ============================================
   Latest Blogs Section
   ============================================ */
.blogs {
  padding: 60px 20px 100px;
  background-color: var(--color-white);
  text-align: center;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 454px);
  gap: 47px 43px;
  max-width: var(--max-width);
  margin: 0 auto 56px;
  justify-content: center;
  text-align: left;
}

.blog-card {
  width: 454px;
  height: 504px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-image {
  width: 100%;
  height: 227px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 24px 38px 38px;
}

.blog-category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-tiny);
  line-height: normal;
  color: var(--color-accent);
  letter-spacing: 5.1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.blog-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-card-title);
  line-height: normal;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.blog-excerpt {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-body);
  line-height: normal;
  color: var(--color-text-dark);
  margin-bottom: 30px;
}

.blog-date {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-body);
  line-height: normal;
  color: var(--color-text-dark);
  display: block;
}

.view-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-body);
  line-height: 1;
  letter-spacing: -0.25px;
  text-transform: uppercase;
  width: 165px;
  height: 47px;
  border-radius: var(--radius-large);
  transition: background-color 0.2s ease;
}

.view-more-btn:hover {
  background-color: #5a9ad4;
}
/*
.view-more-btn:focus {
  outline: 2px solid var(--color-text-dark);
  outline-offset: 2px;
}*/

.view-more-btn:active {
  transform: none;
  background-color: var(--color-primary);
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Tablet */
@media (max-width: 1200px) {
  .tour-cards-grid {
    grid-template-columns: repeat(3, 270px);
  }
  
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
  
  .blog-card {
    width: 100%;
    max-width: 454px;
  }
  
}

@media (max-width: 992px) {
  .tour-cards-grid {
    grid-template-columns: repeat(2, 270px);
  }
  
  .reason-card {
    flex-direction: column;
  }
  
  .reason-content {
    flex: none;
    width: 100%;
    padding: 30px;
  }
  
  .reason-number {
    font-size: 80px;
  }
  
  .reason-image {
    height: 250px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --text-hero: 40px;
    --text-section-title: 32px;
    --line-hero: 48px;
  }
  
  .hero {
    height: auto;
    min-height: 560px;
  }
  
  .hero-content {
    padding: 150px 20px 80px;
  }
  
  .hero-title {
    font-size: var(--text-hero);
    line-height: var(--line-hero);
    margin-bottom: 30px;
  }
  
  .categories {
    padding: 40px 10px;
  }
  
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }
  
  .category-card {
    width: 100%;
    height: 186px;
  }
  
  .category-card:last-child {
    grid-column: 1 / -1;
  }
  
  .category-title {
    font-size: 18px;
  }
  
  .section-title {
    font-size: var(--text-section-title);
    padding: 0 20px;
  }
  
  .about-content {
    padding: 0 20px;
  }
  
  .reasons-slider {
    flex-direction: column;
    gap: 20px;
  }
  
  .slider-arrow {
    display: none;
  }
  
  .reasons-track {
    max-width: 100%;
  }
  
  .reason-card {
    flex-direction: column;
  }
  
  .reason-content {
    flex: none;
    width: 100%;
    padding: 25px 20px;
  }
  
  .reason-number {
    font-size: 60px;
    margin-bottom: 15px;
  }
  
  .reason-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .reason-description {
    font-size: var(--text-body);
  }
  
  .reason-image {
    height: 200px;
    order: -1;
  }
  
  .tour-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }
  
  .tour-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  
  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .blog-card {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
  }
  
  .blog-content {
    padding: 20px;
  }
  
}

@media (max-width: 400px) {
  .search-form {
    width: 100%;
    padding: 0 15px;
  }
  
  .search-input-group {
    padding: 14px 18px;
  }
  
  .category-card {
    height: 160px;
    padding-top: 25px;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .category-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .category-title {
    font-size: 16px;
    line-height: 24px;
  }
  
  .category-count {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Focus states for accessibility \
a:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
*/
/* Print styles */
@media print {
  .hero {
    background: none;
  }
  
  .search-bar,
  .search-form,
  .slider-arrow,
  .slider-dots,
  .favorite-btn,
  .view-more-btn {
    display: none;
  }
}
.sr-native-select {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-text-black);
  border: none;
  background-color: transparent;
  outline: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  
  /* Removes default browser dropdown styles */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  /* Adds a custom, minimal dropdown arrow 
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.65em auto;
 /* padding-right: 20px;  Prevents text from overlapping the arrow */
}

/* Ensure the dropdown list has a background color when opened */
.sr-native-select option {
  background-color: var(--color-white);
  color: var(--color-text-black);
  padding: 8px;
}

/* Remove the outline that Firefox adds on focus */
.sr-native-select:focus {
  outline: none;
}





/* Visible box - EXACT MATCH */
.select2-container--default .select2-selection--single {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: normal !important;
  color: var(--color-text-black) !important;
  border: none !important;
  background-color: transparent !important;
  outline: none !important;
  width: 100% !important;
  padding: 0 !important;
  cursor: pointer !important;
  
  /* Kill Select2 defaults */
  box-shadow: none !important;
  border-radius: 0 !important;
  height: auto !important;
  
  /* YOUR SVG ARROW */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2370b0e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: 0.65em auto !important;

}

/* Text inside */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Hide default arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none !important;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.65em auto;
  /* padding-right: 20px; */ /* if you re‑enable arrow */
  /* background-image: url("data:image/svg+xml;..."); */
}

/* Dropdown panel */
.select2-container--default .select2-dropdown {
  background-color: var(--color-white);
  border: none;
}

/* NEW: Override focus states - keep border, kill color changes */
.select2-container--default.select2-container--focus .select2-selection--single {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;  /* Keeps your original border */
  background-color: white !important;  /* Locks background */
}

/* Search input inside dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ddd !important;  /* Your choice of static border */
}