/* ==========================================================================
   CRETE HOMEPAGE - PIXEL PERFECT STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary-blue: #70b0e9;
  --color-teal: #67bfbf;
  --color-text-dark: #4e5e68;
  --color-text-gray: #d1d5dc;
  --color-bg-light: #f7f7f7;
  --color-bg-card: #f9f9f9;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-footer-bg: #101828;
  --color-footer-secondary: #1e2939;
  --color-footer-divider: #364153;
  --color-border-light: #ddd;
  --color-border-gray: #a6a6a6;

  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-product-sans: 'Product Sans', sans-serif;

  /* Font Sizes */
  --fs-hero-title: 50px;
  --fs-hero-subtitle: 20px;
  --fs-section-title: 40px;
  --fs-card-title: 40px;
  --fs-card-title-sm: 32px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-body-xs: 12px;
  --fs-body-xxs: 10px;
  --fs-blog-title: 16px;
  --fs-footer-heading: 18px;

  /* Line Heights */
  --lh-hero-title: 60px;
  --lh-hero-subtitle: 35px;
  --lh-section-title: 64px;
  --lh-body: 22px;
  --lh-body-lg: 28px;
  --lh-body-sm: 24px;
  --lh-body-xs: 20px;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 50px;
  --radius-round: 16777200px;

  /* Shadows */
  --shadow-search: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  --shadow-phone: 4px -5px 4px 0px rgba(0, 0, 0, 0.13);

  /* Layout */
  --container-max-width: 1440px;
  --content-max-width: 1206px;
}

/* --------------------------------------------------------------------------
   2. 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(--fs-body);
  line-height: var(--lh-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;
}

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

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.heading-hero {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-hero-title);
  line-height: var(--lh-hero-title);
  color: var(--color-white);
}

.heading-section {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-section-title);
  line-height: var(--lh-section-title);
  color: var(--color-text-dark);
  text-transform: capitalize;
}

.heading-card {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-card-title);
  line-height: var(--lh-section-title);
  color: var(--color-text-dark);
  text-transform: capitalize;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text-dark);
}

.label-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body-xs);
  letter-spacing: 2.16px;
  color: var(--color-teal);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-body-sm);
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  height: 47px;
  padding: 0 40px;
}

.btn-primary:hover {
  background-color: #5a9bd8;
  transform: translateY(-2px);
}

.btn-primary:focus {
  outline: none;
  box-shadow: none;
}

.btn-pill {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  height: 37px;
  padding: 0 24px;
  font-size: var(--fs-body-sm);
}

.btn-pill:hover {
  background-color: #5a9bd8;
}

.btn-search {
  height: 37px;
  padding: 0 24px;
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  border-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 867px;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: var(--color-white);
  text-align: center;
  max-width: 807px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 35px;
  color: var(--color-white);
  text-align: center;
  max-width: 590px;
  margin-bottom: 24px;
}

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

.search-box__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-box__field:first-child {
  border-right: 1px solid #ddd;
  padding-right: 24px;
  margin-right: 24px;
}

.search-box__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2.16px;
  color: var(--color-teal);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.search-box__input {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-black);
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  border-radius: 8px;
}

.search-box__input::placeholder {
  color: var(--color-black);
}

.search-box__input:focus::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.search-box__btn {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  height: 37px;
  padding: 0 24px;
  border-radius: var(--radius-xl);
  margin-left: auto;
}

.search-box__btn:hover {
  background-color: #5a9bd8;
}

/* Quick Search */
.quick-search {
  margin-top: 50px;
  text-align: center;
}

.quick-search__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 64px;
  color: var(--color-white);
  text-transform: capitalize;
  margin-bottom: 6px;
}

.quick-search__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   7. UNLOCK AREAS SECTION
   -------------------------------------------------------------------------- */
.unlock-areas {
  padding-top: 96px;
  padding-bottom: 0;
  max-width: 1206px;
  margin: 0 auto;
}

.unlock-areas__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  color: var(--color-text-dark);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 37px;
}

/* Area Card */
.area-card {
  display: flex;
  height: 524px;
  margin-bottom: 44px;
  overflow: hidden;
  border-radius: 0;
  position: relative;
}

.area-card--reverse {
  flex-direction: row-reverse;
}

.area-card:nth-child(odd) {
    flex-direction: row-reverse;
}

.area-card__image-wrapper {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  height: 524px;
}

.area-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.area-card .area-card__content {
  padding-left: 53px;
}

.area-card--reverse .area-card__content {
  padding-left: 53px;
  padding-right: 53px;
}

.area-card__content {
  flex: 1;
  background-color: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 53px;
}

.area-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  color: var(--color-text-dark);
  text-transform: capitalize;
  margin-bottom: 12px;
}

.area-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  max-width: 352px;
  text-transform: capitalize;
}

.area-card__btn {
  width: 165px;
}

/* --------------------------------------------------------------------------
   8. APP BANNER SECTION
   -------------------------------------------------------------------------- */
.app-banner {
  position: relative;
  margin-top: 50px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.app-banner-container {
  width: 929px;
  max-width: 95%;
  height: 540px;
  background-color: var(--color-teal);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.app-content {
  padding-left: 84px;
  padding-right: 340px;
  width: 100%;
  color: var(--color-white);
}

.app-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-white);
}

.app-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.app-feature-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.app-feature-icon img{
	height:22px;
}	

.app-feature-text h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--color-white);
}

.app-feature-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--color-white);
}

.app-buttons-banner {
  display: flex;
  gap: 15px;
  align-items: center;
}

.store-btn {
  display: flex;
  align-items: center;
  background-color: var(--color-black);
  border: 1px solid #a6a6a6;
  border-radius: var(--radius-sm);
  width: 160px;
  height: 50px;
  padding: 5px 12px;
  text-decoration: none;
  color: var(--color-white);
  box-sizing: border-box;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.store-btn:hover {
  opacity: 0.9;
}

.store-btn:focus {
  outline: none;
  box-shadow: none;
}

.store-btn img,
.store-btn svg {
  height: 30px;
  width: 30px;
  max-width: 100%;
  object-fit: contain;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-text .small-text {
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 9px;
  text-transform: uppercase;
  color: var(--color-white);
}

.store-text .large-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-white);
}

.app-mockup {
	position: absolute;
	right: -110px;
	top: 0;
	bottom: 0;
	width: 571px;
	filter: drop-shadow(4px -5px 4px rgba(0, 0, 0, 0.13));
}

.app-mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   9. BLOG SECTION
   -------------------------------------------------------------------------- */
.blogs {
  padding: 56px 0 96px;
}

.blogs__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  color: var(--color-text-dark);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 47px;
}

.blogs__grid {
  display: grid;
  grid-template-columns: repeat(2, 454px);
  gap: 43px 47px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Blog Card */
.blog-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 454px;
  height: 504px;
}

.blog-card__image-wrapper {
  height: 239px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.blog-card__content {
  padding: 12px 38px 38px;
}

.blog-card__category {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 5.1px;
  color: var(--color-teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  max-width: 360px;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  max-width: 371px;
  height: 104px;
  overflow: hidden;
}

.blog-card__date {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-dark);
}

.blogs__more {
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   10. FOOTER (Removed)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   11. RESPONSIVE STYLES - TABLET
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .area-card__image-wrapper {
    flex: 0 0 50%;
  }
  
  .area-card:nth-child(odd) .area-card__image-wrapper {
    margin-right: -60px;
  }
  
  .area-card:nth-child(even) .area-card__image-wrapper {
    margin-left: -60px;
  }
  
  .area-card:nth-child(odd) .area-card__content {
    padding-left: 100px;
  }
  
  .area-card:nth-child(even) .area-card__content {
    padding-right: 100px;
  }
  
  .blogs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 30px;
  }
  
  .blog-card {
    width: 100%;
  }
  
  /* App Banner - Tablet */
  .app-banner-container {
    width: 91%;
    max-width: 884px;
    height: 480px;
  }

  .app-content {
    padding-left: 50px;
    padding-right: 290px;
  }

  .app-mockup {
		right: -222px;
        width: 100%;
        height: auto;
  }
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE STYLES - MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    height: auto;
    min-height: 1000px;
  }

  .hero__content {
    padding-top: 174px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__title {
    font-size: 40px;
    line-height: 50px;
    max-width: 369px;
  }

  .hero__subtitle {
    font-size: 20px;
    line-height: 35px;
    max-width: 370px;
  }

  /* Search Box - Stacked for Mobile */
  .search-box {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    height: auto;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    gap: 14px;
  }

  .search-box__field {
    width: 100%;
    height: 68px;
    padding: 18px 23px;
    background: var(--color-white);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-search);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .search-box__field:first-child {
    border-right: none;
    padding-right: 23px;
    margin-right: 0;
  }

  .search-box__btn {
    width: 100%;
    height: 60.636px;
    border-radius: var(--radius-xl);
    font-size: 18px;
    margin: 0;
    background-color: var(--color-primary-blue);
  }

  /* Quick Search */
  .quick-search {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  
  .quick-search__title {
    font-size: 20px;
    line-height: 46px;
  }

  .quick-search__buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
  }
  
  .quick-search__buttons .btn-pill {
    width: 120px;
    justify-content: center;
  }

  /* Unlock Areas */
  .unlock-areas {
    padding-top: 39px;
  }

  .unlock-areas__title {
    font-size: 40px;
    padding: 0 20px;
    line-height: 64px;
    text-align: center;
  }
  
  .unlock-areas__title br {
    display: block;
  }

  /* Area Card - Mobile Vertical Stack */
  .area-card {
    flex-direction: column !important;
    height: auto;
    margin-bottom: 65px;
    margin-left: 31px;
    margin-right: 31px;
    width: calc(100% - 62px);
  }

  .area-card__image-wrapper {
    flex: none;
    height: 189px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
  }

  .area-card:nth-child(odd) .area-card__image-wrapper,
  .area-card:nth-child(even) .area-card__image-wrapper {
    clip-path: none;
    margin: 0;
  }

  .area-card:nth-child(odd) .area-card__content,
  .area-card:nth-child(even) .area-card__content {
    clip-path: none;
    padding: 24px 31px 50px;
  }

  .area-card__content {
    padding: 24px 31px 50px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .area-card__title {
    font-size: 32px;
  }
  
  .area-card__description {
    height: 164px;
  }

  /* App Banner - Mobile */
  .app-banner {
    margin-top: 30px;
    padding-bottom: 60px;
  }

  .app-banner-container {
    flex-direction: column;
    height: auto;
    width: 95%;
    padding: 40px 30px 350px 30px;
    text-align: center;
  }

  .app-content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .app-title {
    font-size: 24px;
  }

  .app-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .app-features {
    align-items: center;
  }

  .app-feature {
    max-width: 400px;
    text-align: left;
  }

  .app-buttons-banner {
    justify-content: center;
  }

  .app-mockup {
	position: relative;
	right: auto;
	top: 50px;
	margin-top: 0px;
	width: 100%;
	height: auto;
  }

  /* Blogs - Mobile */
  .blogs {
    padding-top: 39px;
  }
  
  .blogs__title {
    text-align: left;
    padding-left: 87px;
  }
  
  .blogs__grid {
    grid-template-columns: 1fr;
    padding: 0 19px;
    gap: 21px;
  }

  .blog-card {
    width: 363px;
    height: 496px;
    margin: 0 auto;
  }

}

/* --------------------------------------------------------------------------
   13. RESPONSIVE STYLES - SMALL MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 400px) {
  .hero__content {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero__title {
    font-size: 36px;
    line-height: 46px;
  }
  
  .search-box {
    width: 100%;
    max-width: 340px;
  }
  
  .search-box__btn {
    width: 100%;
    max-width: 340px;
  }
  
  .area-card {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }
  
  .blog-card {
    width: 100%;
  }
  
  .app-banner {
    margin-top: 20px;
    padding-bottom: 40px;
  }

  .app-banner-container {
    width: 95%;
    padding: 30px 20px 300px 20px;
    border-radius: 15px;
  }

  .app-title {
    font-size: 22px;
  }

  .app-desc {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 25px;
  }

  .app-features {
    gap: 15px;
    margin-bottom: 25px;
  }
/*
  .app-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  } */

  .app-feature-icon {
    margin-bottom: 10px;
  }

  .app-feature-text h3 {
    font-size: 14px;
  }

  .app-feature-text p {
    font-size: 11px;
    line-height: 18px;
  }

  .app-buttons-banner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .store-btn {
    width: 140px;
    height: 44px;
    padding: 4px 10px;
  }

  .store-text .large-text {
    font-size: 12px;
  }

  .app-mockup {
    width: 100%;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
  }
  
  .blogs__title {
    padding-left: 15px;
  }
}

/* --------------------------------------------------------------------------
   14. ACCESSIBILITY
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: none;
  box-shadow: none;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary-blue);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   15. ANIMATIONS (Disabled)
   -------------------------------------------------------------------------- */
/* Entrance animations removed per user request */



/* select */
.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 */
.select2-container--default .select2-selection--single {
  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;

  /* remove default border/rounded bg that Select2 adds */
  box-shadow: none;
  border-radius: 0;

  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");
   background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.65em auto;
}

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

/* Remove default arrow so it looks like your native one */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.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;
}

/* extras */



