/* ============================================================
   AL-AMEEN SKYLINE LTD — styles.css
   ============================================================ */

/* ---------- 1. CSS Custom Properties (Design Tokens) --------- */
:root {
  /* Palette */
  --color-primary: #002e0b;
  --color-primary-container: #0b4619;
  --color-primary-fixed: #b4f2b3;
  --color-on-primary-fixed: #002106;
  --color-inverse-primary: #99d599;

  --color-secondary: #465f88;
  --color-on-secondary: #ffffff;
  --color-secondary-fixed: #d6e3ff;

  --color-tertiary-fixed: #ffdea5;

  --color-surface: #f8f9fa;
  --color-surface-bright: #f8f9fa;
  --color-surface-container-low: #f3f4f5;
  --color-surface-container: #edeeef;
  --color-surface-container-high: #e7e8e9;
  --color-surface-container-highest: #e1e3e4;

  --color-on-surface: #191c1d;
  --color-on-surface-variant: #41493f;
  --color-outline: #71796f;
  --color-outline-variant: #c1c9bc;
  --color-background: #f8f9fa;
  --color-on-background: #191c1d;

  --color-on-secondary-fixed: #001b3d; /* used as dark navy footer bg */

  /* Typography */
  --font-base: "Inter", system-ui, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing scale */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;

  /* Shadows */
  --shadow-card:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-elevated:
    0 20px 40px rgba(51, 106, 56, 0.04), 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
  background: var(--color-background);
  color: var(--color-on-background);
  overflow-x: hidden;
  line-height: 1.6;
  padding-bottom: 96px; /* room for fixed bottom nav */
}

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

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

::selection {
  background: var(--color-primary-fixed);
  color: var(--color-on-primary-fixed);
}

/* ---------- 3. Utility Classes ------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
}

@media (min-width: 768px) {
  .container {
    padding-inline: 20px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

/* Glass morphism card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-card);
}

/* Section reveal animation */
.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Icons */
.material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
  user-select: none;
}
.icon--filled {
  font-variation-settings: "FILL" 1;
}
.icon--primary {
  color: var(--color-primary);
}
.icon--sm {
  font-size: 18px;
}

/* Shared section headings */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}
.section-title--white {
  color: #ffffff;
}

.section-sub {
  color: var(--color-on-surface-variant);
  margin-top: var(--sp-sm);
}
.section-sub--muted {
  color: rgba(214, 227, 255, 0.8);
}

/* Card inner title */
.card-title {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--sp-lg);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-primary-fixed);
  color: var(--color-on-primary-fixed);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-md);
}

/* ---------- 4. Buttons --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-base);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  text-align: center;
  line-height: 1;
  padding: 14px 28px;
  font-size: 15px;
}

.btn:active {
  transform: scale(0.96);
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
  border-bottom: 2px solid var(--color-tertiary-fixed);
  box-shadow: 0 4px 12px rgba(0, 46, 11, 0.25);
}
.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(0, 46, 11, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-on-secondary);
}
.btn--secondary:hover {
  opacity: 0.9;
}

.btn--full {
  width: 100%;
}
.btn--lg {
  padding: 16px 28px;
  font-size: 17px;
  margin-top: var(--sp-xl);
}

/* ---------- 5. Hero Section ---------------------------------- */
.main-content {
  padding-bottom: 0;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBMK2C59zKN9OTVha97W9vSzgJwZ_GTKAiZk3UwpXtDyqCe6wLAAPgmj6LaJU_Ubxv-0WOB6zXOBgF_CxBkCzpnWkiEJ0MNadf5Ya5dNxR4fK-CAHtxCI7TS8RXAtpDV08gjquNQ6xwgIUobh0FdfvSXXpUEGJUbF0wYGg6je2DqX8QWcn8HQB5_Sgu90RqlDEMiK-0LuZ8Wb7o8e2o1SyVH8gioVxpxcKxRHGT4NcuKfxPnswYR1pjTh8XF4oIytj4jy9UPXlksnjE");
  background-size: cover;
  background-position: center;
}

@media (min-width: 641px) {
  .hero__bg {
    background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuCfLzBQ9kNP8IeUMCwSqL0cT0v6GBfMyVatqzKYHwgtfIfz-dJXipbEdo7XqHdBwQL-pmVQrrjs5n5ZpAlPLH0egl7pU7uUuSbSSOzeJrahFlRUyeXB4VLwNISmx1bgad_NT8dndQ7crrb_fW7M8E1FGQJuySvLhatk3iUhMKFbdT-isEWADUsO2e_c0aluj-Y9OlWdCwBGTxJ_bDXdvvTjXiZqP2iRQTZ6JwlRLr5dP6aqtOT4BMav0PgLwTBr4DDSPg3ZhM6WA-7U");
  }
}

@media (min-width: 1025px) {
  .hero__bg {
    background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuCgNFluZ2RxJ3PCPMl5qJVOeCKgQa-UapCSmhvuExlZS8eRKTQaZLPUHOJc8lcxsjmh37I3UKcB8ZW2s1144-6eZ-aou_bOHs-b2bE-89ohFPK9UYK6wvUL5foNy73CrpA05rZyEMlbKs2Kv_rCaePOFkB1Z8wFP33dX4h6cmcqkmMfX87rWAzA-TT7XNtTtmOM8Z7T9zM_PJ9NTOiA5n-u95wgcAvK04_RP-BM3e96Qu5DZh64g1elECWuZ2FZukiKcNu7ht9eAe-U");
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 640px;
  color: #ffffff;
}

.hero__headline {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--sp-xl);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

@media (min-width: 480px) {
  .hero__cta {
    flex-direction: row;
  }
}

/* ---------- 6. About Section --------------------------------- */
.about {
  padding: var(--sp-2xl) 0;
}

.about__grid {
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}

/* On mobile: text first, image second */
.about__image-wrap {
  order: 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}
.about__body {
  order: 1;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
  /* On desktop: image left, text right */
  .about__image-wrap {
    order: 1;
  }
  .about__body {
    order: 2;
  }
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 46, 11, 0.1);
  mix-blend-mode: overlay;
}

.about__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  margin-block: var(--sp-md) var(--sp-lg);
}

.about__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.about__checklist li {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-weight: 500;
}

/* ---------- 7. Features Section ------------------------------ */
.features {
  padding: var(--sp-2xl) 0;
  background: var(--color-surface-container-low);
}

.features__grid {
  display: grid;
  gap: var(--sp-md);
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--sp-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 46, 11, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-card__title {
  font-size: 20px;
  font-weight: 600;
}

.feature-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
}

/* ---------- 8. Order Section --------------------------------- */
.order {
  padding: var(--sp-3xl) 0;
}

.order__form {
  display: grid;
  gap: var(--sp-xl);
}

@media (min-width: 1024px) {
  .order__form {
    grid-template-columns: 5fr 7fr;
  }
}

.order__details,
.order__cylinder {
  padding: var(--sp-lg);
  border-radius: var(--radius-lg);
  /* glass-card provides box-shadow; override with elevated shadow for depth */
  box-shadow: var(--shadow-elevated);
}

/* Form elements */
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group + .form-group {
  margin-top: var(--sp-lg);
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1.5px solid var(--color-outline-variant);
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-on-surface);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.form-input {
  height: 52px;
  padding: 0 var(--sp-md);
}

.form-textarea {
  padding: var(--sp-sm) var(--sp-md);
  resize: vertical;
}

.form-textarea--short {
  height: 88px;
}
.form-textarea--tall {
  height: 148px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(51, 106, 56, 0.12);
}

/* Cylinder size grid */
.cylinder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: var(--sp-sm);
}

@media (min-width: 768px) {
  .cylinder-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
}

.cylinder-btn {
  padding: 10px var(--sp-sm);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-outline-variant);
  background: transparent;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  min-height: 52px;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s,
    transform 0.1s;
}

.cylinder-btn:hover {
  border-color: var(--color-primary);
}
.cylinder-btn:active {
  transform: scale(0.95);
}

.cylinder-btn.is-selected {
  background: var(--color-primary-container);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Unknown size upload */
.upload-toggle-wrap {
  margin-top: var(--sp-lg);
}

.upload-toggle-btn {
  width: 100%;
  padding: var(--sp-md);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-outline);
  background: transparent;
  font-family: var(--font-base);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.upload-toggle-btn:hover {
  border-color: var(--color-primary);
}

.upload-area {
  margin-top: var(--sp-md);
  padding: var(--sp-xl);
  background: var(--color-surface-container-high);
  border-radius: var(--radius-lg);
  text-align: center;
}

.upload-area__hint {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  margin-bottom: var(--sp-md);
}

.upload-area__filename {
  display: block;
  margin-top: var(--sp-sm);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--color-primary);
}

/* Quantity row */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-xl);
}

.qty-label {
  font-size: 20px;
  font-weight: 700;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.1s,
    background 0.15s;
  line-height: 1;
}
.qty-btn:active {
  transform: scale(0.88);
}

.qty-btn--outline {
  background: transparent;
  color: var(--color-primary);
}
.qty-btn--outline:hover {
  background: rgba(0, 46, 11, 0.06);
}

.qty-btn--filled {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.qty-btn--filled:hover {
  opacity: 0.9;
}

.qty-val {
  font-size: 22px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

/* ---------- 9. Pricing Section ------------------------------- */
.pricing {
  padding: var(--sp-2xl) 0;
  background: var(--color-on-secondary-fixed);
  color: #ffffff;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  text-align: center;
  transition: background 0.2s;
}
.price-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.price-card__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-secondary-fixed);
  margin-bottom: var(--sp-sm);
}

.price-card__amount {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--sp-sm);
}

.price-card__img {
  width: 72px;
  margin-inline: auto;
  opacity: 0.8;
}

/* ---------- 10. Service Areas Section ------------------------ */
.areas {
  padding: var(--sp-2xl) 0;
}

.areas__card {
  padding: var(--sp-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

.areas__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

@media (min-width: 768px) {
  .areas__grid {
    flex-direction: row;
    align-items: center;
  }
  .areas__body,
  .areas__map {
    flex: 1;
  }
}

.areas__desc {
  color: var(--color-on-surface-variant);
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-lg);
  line-height: 1.65;
}

.areas__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

.areas__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-weight: 600;
  color: var(--color-primary);
}

.areas__map {
  height: 256px;
  background: var(--color-surface-container);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  filter: grayscale(1);
  transition: filter 0.7s;
  overflow: hidden;
}
.areas__map:hover {
  filter: grayscale(0);
}

.areas__map-icon {
  color: var(--color-primary);
  font-size: 36px;
}
.areas__map-label {
  font-weight: 700;
  color: var(--color-primary);
}

/* ---------- 11. Footer --------------------------------------- */
.footer {
  background: var(--color-secondary);
  color: var(--color-on-secondary);
  padding: var(--sp-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Brand column */
.footer__brand {
  display: flex;
  flex-direction: column;
}

/* Generic column wrapper — no extra styles needed beyond grid placement */
.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__brand-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--sp-md);
}

.footer__brand-tagline {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer__heading {
  font-weight: 700;
  margin-bottom: var(--sp-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  font-size: 14px;
}

.footer__social {
  display: flex;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.footer__social-icon {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer__social-icon:hover {
  opacity: 1;
}

.footer__contact {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: var(--sp-xs);
}

.footer__bottom {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-md);
  margin-top: var(--sp-3xl);
  padding-top: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer__bottom {
    padding-inline: 120px;
  }
}

/* ---------- 12. Bottom Mobile Navigation -------------------- */
.bottom-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 448px;
  z-index: 50;
}

.bottom-nav__inner {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  height: 64px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-inline: var(--sp-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-sm);
  border-radius: var(--radius-full);
  transition:
    background 0.2s,
    color 0.2s;
  color: var(--color-on-surface-variant);
  gap: 2px;
}

.bottom-nav__link span:first-child {
  font-size: 24px;
  line-height: 1;
}
.bottom-nav__link span:last-child {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.bottom-nav__link.is-active {
  background: var(--color-primary-container);
  color: #ffffff;
}

/* ---------- 13. Responsive Adjustments ---------------------- */
@media (min-width: 1024px) {
  .main-content {
    margin-top: 0;
  }
}

/* ---------- 14. Reduced Motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- 15. Focus Visible (Accessibility) --------------- */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible,
.cylinder-btn:focus-visible,
.qty-btn:focus-visible,
.bottom-nav__link:focus-visible,
.upload-toggle-btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: none; /* handled by border + ring */
}

/* ---------- 16. Form Validation States ---------------------- */
.form-input:not(:placeholder-shown):invalid,
.form-textarea:not(:placeholder-shown):invalid {
  border-color: #ba1a1a;
  box-shadow: 0 0 0 3px rgba(186, 26, 26, 0.1);
}

.form-input:not(:placeholder-shown):valid,
.form-textarea:not(:placeholder-shown):valid {
  border-color: var(--color-primary);
}

/* ---------- 17. Misc Fixes ---------------------------------- */

/* section-header inside a dark bg section (pricing) */
.section-header--light {
  color: #ffffff;
}

/* <label> styled as .btn needs display:inline-flex explicitly */
label.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  cursor: pointer;
}

/* Price card images scale proportionally on small screens */
@media (max-width: 480px) {
  .price-card__img {
    width: 52px;
  }
  .price-card__amount {
    font-size: 18px;
  }
}

/* footer link opacity — on <a> only, not the parent <ul>, to avoid compounding */
.footer__links li {
  opacity: 1;
}
.footer__links a {
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer__links a:hover {
  opacity: 1;
  color: #ffffff;
}

/* ============================================================
   18. PROGRESS STEPS
   ============================================================ */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sp-xl);
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: var(--sp-xs);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.progress-step__circle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-surface-container-high);
  color: var(--color-on-surface-variant);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-outline-variant);
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.progress-step.is-active .progress-step__circle {
  background: var(--color-primary-container);
  color: #fff;
  border-color: var(--color-primary-container);
}

.progress-step.is-done .progress-step__circle {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.progress-step__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-on-surface-variant);
  white-space: nowrap;
}
.progress-step.is-active .progress-step__label {
  color: var(--color-primary);
}
.progress-step.is-done .progress-step__label {
  color: var(--color-primary);
}

.progress-step__line {
  height: 2px;
  flex: 1;
  min-width: 24px;
  max-width: 48px;
  background: var(--color-outline-variant);
  margin-bottom: 22px; /* align with circles */
  transition: background 0.3s;
}
.progress-step__line--done {
  background: var(--color-primary);
}

/* ============================================================
   19. DELIVERY ETA BADGE
   ============================================================ */
.delivery-eta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
  padding: 10px 14px;
  background: rgba(0, 46, 11, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  animation: fadeSlideIn 0.3s ease;
}

/* ============================================================
   20. LIVE ORDER SUMMARY CARD
   ============================================================ */
.order-summary {
  margin-top: var(--sp-xl);
  padding: var(--sp-lg);
  border-radius: var(--radius-lg);
}

.order-summary__title {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--sp-md);
  color: var(--color-primary);
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--color-outline-variant);
}
.order-summary__row:last-of-type {
  border-bottom: none;
}

.order-summary__row--total {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  padding-top: var(--sp-sm);
}

.order-summary__row--stamp {
  color: #9a5e00;
}

.order-summary__divider {
  border-top: 2px solid var(--color-outline-variant);
  margin: var(--sp-sm) 0;
}

.order-summary__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-on-surface-variant);
  margin-top: var(--sp-sm);
}

/* ============================================================
   21. OVERLAY PAGES (Payment, Loading, Success)
   ============================================================ */
.overlay-page {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-background);
  overflow-y: auto;
  padding: var(--sp-lg);
  padding-bottom: 120px;
}

.overlay-page__inner {
  max-width: 480px;
  margin-inline: auto;
  padding-top: var(--sp-lg);
}

/* Progress inside overlay */
.progress-steps--overlay {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}

/* ============================================================
   22. PAYMENT CARD
   ============================================================ */
.payment-card {
  max-width: 480px;
  margin-inline: auto;
  padding: var(--sp-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

.payment-card__heading {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-xl);
}

/* Bank details */
.bank-details {
  background: var(--color-surface-container-low);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.bank-details__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-outline-variant);
  font-size: 14px;
  gap: 20px;
}
.bank-details__row:last-child {
  border-bottom: none;
}

.bank-details__label {
  font-weight: 600;
  color: var(--color-on-surface-variant);
  font-size: 13px;
}

.bank-details__value {
  font-weight: 700;
  font-size: 15px;
}

.bank-details__acc {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.bank-details__copy-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  transition: background 0.15s;
}
.copy-btn:hover {
  background: rgba(0, 46, 11, 0.1);
}

/* Delivery notice */
.delivery-notice {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: rgba(0, 46, 11, 0.08);
  border-radius: var(--radius-md);
  padding: 12px var(--sp-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--sp-lg);
  border-left: 3px solid var(--color-primary);
}

/* Breakdown rows */
.pay-breakdown {
  background: var(--color-surface-container-low);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pay-breakdown__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-outline-variant);
}
.pay-breakdown__row:last-child {
  border-bottom: none;
}

/* Total box */
.pay-total-box {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--sp-lg) var(--sp-xl);
  text-align: center;
  margin-bottom: var(--sp-lg);
  box-shadow: 0 8px 24px rgba(0, 46, 11, 0.3);
}

.pay-total-box__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: var(--sp-sm);
}

.pay-total-box__amount {
  display: block;
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Receipt warning */
.pay-receipt-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 13px;
  color: #9a5e00;
  background: rgba(154, 94, 0, 0.08);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
  line-height: 1.5;
}

/* Payment Done Button */
.btn--pay {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 18px;
  padding: 18px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  margin-bottom: var(--sp-md);
}
.btn--pay:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* Ghost back button */
.btn--ghost-dark {
  background: transparent;
  color: var(--color-on-surface-variant);
  border: 1.5px solid var(--color-outline-variant);
}
.btn--ghost-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================================
   23. LOADING SCREEN
   ============================================================ */
.loading-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  padding: var(--sp-xl);
}

.loading-spinner {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(0, 46, 11, 0.1);
  border-top-color: var(--color-primary);
  animation: spin 0.9s linear infinite;
}

.loading-spinner__icon {
  font-size: 40px;
  color: var(--color-primary);
  animation: pulse 1.8s ease-in-out infinite;
}

.loading-msg {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  animation: fadeSlideIn 0.4s ease;
}

.loading-dots {
  display: flex;
  gap: var(--sp-sm);
}

.loading-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.3;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.loading-dots--green span {
  background: #25d366;
}

/* ============================================================
   24. SUCCESS SCREEN
   ============================================================ */
.success-card {
  max-width: 480px;
  margin-inline: auto;
  padding: var(--sp-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.success-icon {
  font-size: 48px;
  color: #16a34a;
  font-variation-settings: "FILL" 1;
}

.success-title {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--sp-sm);
}

.success-sub {
  color: var(--color-on-surface-variant);
  margin-bottom: var(--sp-xl);
}

.success-notice {
  background: rgba(154, 94, 0, 0.08);
  border: 1px solid rgba(154, 94, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  text-align: left;
  margin-bottom: var(--sp-xl);
}

.success-notice__heading {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 15px;
  font-weight: 800;
  color: #9a5e00;
  margin-bottom: var(--sp-md);
}

.success-notice p {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}
.success-notice p:last-child {
  margin-bottom: 0;
}

.success-redirect-note {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  margin-bottom: var(--sp-md);
}

/* ============================================================
   25. STICKY WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 100px; /* above bottom nav */
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: waPulse 2s ease-out infinite;
}

/* ============================================================
   26. ANIMATIONS
   ============================================================ */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes dotBounce {
  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes successPop {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ============================================================
   27. OVERLAY PAGE ANIMATED TRANSITIONS
   ============================================================ */

/* Default hidden state — off-screen below, invisible */
.overlay-page {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  pointer-events: none;
}

/* Fully shown and interactive */
.overlay-page.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* .hidden wins via display:none — defined earlier, no change needed */

/* Prevent double-click during animation */
.overlay-page.is-animating {
  pointer-events: none;
}

/* Inner content fades up slightly after parent */
.overlay-page.is-visible .overlay-page__inner,
.overlay-page.is-visible .payment-card,
.overlay-page.is-visible .success-card {
  animation: overlayCardIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.overlay-page.is-visible .loading-inner {
  animation: overlayCardIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes overlayCardIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   28. WHATSAPP FAB — PREMIUM LABELED PILL
   ============================================================ */

/* Remove old circle-only size constraints */
.whatsapp-fab {
  /* Layout — pill shape */
  position: fixed;
  bottom: 108px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  z-index: 300;
  /* Shadow + glow */
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.15);
  /* Smooth interactions */
  transition:
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s ease,
    padding 0.2s ease;
  /* GPU layer */
  will-change: transform;
  /* Override any old width/height */
  width: auto;
  height: auto;
}

.whatsapp-fab:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.6),
    0 4px 10px rgba(0, 0, 0, 0.18);
}

.whatsapp-fab:active {
  transform: scale(0.95);
}

/* Icon inside the pill */
.whatsapp-fab__icon {
  flex-shrink: 0;
  display: block;
}

/* Text label */
.whatsapp-fab__label {
  display: inline;
  line-height: 1;
}

/* Pulse rings — two for a staggered effect */
.whatsapp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.45);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.whatsapp-fab__pulse--delay {
  animation-delay: 1.2s;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* On desktop/wide screens: move further from edge */
@media (min-width: 768px) {
  .whatsapp-fab {
    bottom: 40px;
    right: 28px;
    font-size: 14px;
    padding: 14px 20px 14px 16px;
  }
}

/* Reduced motion: keep button visible but no pulse/bounce */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab {
    transition: none;
  }
  .whatsapp-fab__pulse {
    animation: none;
    display: none;
  }
}
/* ============================================================
   29. PAYMENT METHOD SELECTION — BANK CARDS
   ============================================================ */

/* Notice banner above bank cards */
.payment-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  background: rgba(70, 95, 136, 0.1);
  border: 1px solid rgba(70, 95, 136, 0.25);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-on-surface-variant);
}

.payment-notice .material-symbols-outlined {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 1px;
}

.payment-notice p {
  margin: 0;
}

/* Bank card grid */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

@media (max-width: 380px) {
  .payment-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-sm);
  }
}

/* Individual bank card */
.payment-method-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-sm);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-outline-variant);
  background: var(--color-surface);
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-on-surface);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.15s ease,
    box-shadow 0.18s ease;
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.payment-method-card:hover:not(.payment-method-card--disabled) {
  border-color: var(--color-primary);
  background: rgba(0, 46, 11, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 46, 11, 0.12);
}

.payment-method-card:active:not(.payment-method-card--disabled) {
  transform: scale(0.94) translateY(0);
  box-shadow: none;
}

/* Selected state */
.payment-method-card.is-selected {
  border-color: var(--color-primary);
  background: rgba(0, 46, 11, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 46, 11, 0.15);
}

.payment-method-card.is-selected .payment-method-card__name {
  color: var(--color-primary);
}

/* Selected checkmark badge */
.payment-method-card.is-selected::after {
  content: "✓";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes checkPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Logo container */
.payment-method-card__logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-surface-container);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--color-outline-variant);
  transition: border-color 0.18s;
}

.payment-method-card.is-selected .payment-method-card__logo {
  border-color: var(--color-primary);
}

.payment-method-card__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* Logo placeholder icon (shown when src is empty) */
.payment-method-card__logo img:not([src]),
.payment-method-card__logo img[src=""] {
  width: 28px;
  height: 28px;
  opacity: 0.3;
  /* Show a generic bank icon as a CSS-drawn fallback */
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23002e0b'%3E%3Cpath d='M4 10h3v7H4zm5 0h3v7H9zm5 0h3v7h-3zM2 19l1 2h18l1-2H2zm9-15L2 9h20L11 4z'/%3E%3C/svg%3E");
}

.payment-method-card__name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.18s;
}

/* "Coming Soon" tag */
.payment-method-card__tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--color-surface-container-high);
  color: var(--color-on-surface-variant);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Disabled card (Moniepoint) */
.payment-method-card--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   30. BANK DETAILS REVEAL BOX (Payment Select Screen)
   ============================================================ */
.bank-details--reveal {
  animation: bankReveal 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes bankReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   31. "I Have Made Payment" DISABLED STATE
   ============================================================ */
.btn--pay:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

/* ============================================================
   32. FORM SELECT STYLING
   ============================================================ */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  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='%2341493f'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
