/* ============================================
   COMPONENTS — Section-specific overrides
   ============================================ */

/* ---- Hero tabs active state ---- */
.hero-tab.active {
  color: var(--accent-coral);
  border-color: var(--accent-coral);
}

/* ---- Categories: leading space on mobile horizontal scroll ---- */
@media (max-width: 767px) {
  #categoriesGrid {
    padding-inline-start: 1rem;
  }
}

/* ---- Coverage city cards: keep arrow icon BLUE on hover (no white) ---- */
#citiesGrid a .city-arrow {
  background: #f1f5f9;
  color: var(--brand);
}

#citiesGrid a:hover .city-arrow {
  background: #f1f5f9;
  color: var(--brand);
}

/* ============================================
   Restaurants page — filter chips
   ============================================ */
.chip {
  background: #f1f5f9;
  color: var(--brand);
  border: 1px solid transparent;
}

.chip:hover {
  background: #e2e8f0;
}

.chip.chip-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 16px rgba(30, 54, 86, 0.18);
}

/* ============================================
   Extracted from views
   ============================================ */

/* From nearby.blade.php */
.chk {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 5px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: all .15s;
}

.chk:checked {
  background: #ecfdf5;
  border-color: #10b981;
}

.chk:checked::after {
  content: '✓';
  color: #10b981;
  font-size: 12px;
  font-weight: 800;
}

/* From checkout/payment.blade.php */
body.payment-page {
  background: #f1f3f6;
  color: #1e3656;
}

.page-title {
  font-weight: 800;
  color: #1e3656;
  letter-spacing: .2px;
}

.sheet {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 25px 60px -30px rgba(30, 54, 86, 0.25);
}

.map-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -100%);
  color: #ea5260;
  font-size: 28px;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .2));
}

.map-bubble {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  padding: 6px 26px 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #1e3656;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .25);
}

.map-bubble .x {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 10px;
}

.addr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #eef2f7;
}

.addr-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff8e1;
  color: #1e3656;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fde6a1;
}

:where(:not(.modern-theme)) .block {
  margin: 14px 18px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fff;
}

.block-head {
  padding: 12px 16px;
  border-bottom: 1px solid #eef2f7;
  font-weight: 700;
  color: #1e3656;
  font-size: 14px;
}

.block-body {
  padding: 14px 16px;
}

.add-more {
  width: calc(100% - 32px);
  margin: 8px 16px 14px;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  padding: 11px;
  text-align: center;
  font-size: 13px;
  color: #1e3656;
  background: #fafbfc;
  cursor: pointer;
  transition: all .2s ease;
}

.add-more:hover {
  border-color: #1e3656;
  background: #fff;
}

.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #475569;
  padding: 6px 0;
}

.ps-row .lbl i {
  color: #94a3b8;
  margin-right: 6px;
}

.ps-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px solid #eef2f7;
  font-weight: 800;
  color: #1e3656;
  font-size: 15px;
}

.ps-total .val {
  position: relative;
  padding-bottom: 4px;
}

.ps-total .val::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: #fdca45;
  border-radius: 2px;
}

.label {
  font-size: 13px;
  font-weight: 700;
  color: #1e3656;
  margin-bottom: 6px;
  display: block;
}

.control {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.control:focus {
  border-color: #fdca45;
  box-shadow: 0 0 0 4px rgba(253, 202, 69, 0.18);
}

textarea.control {
  resize: none;
  min-height: 96px;
}

.select-wrap {
  position: relative;
}

.select-wrap .chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-left: 48px;
}

.pm-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fdca45 0%, #1e3656 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

.helper-error {
  color: #ea5260;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 600;
}

.note {
  margin: 14px 18px;
  background: #fde7e9;
  border: 1px solid #f7c4c9;
  border-radius: 12px;
  padding: 14px;
}

.note h4 {
  color: #c1303d;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}

.note p {
  color: #7a2a2f;
  font-size: 12.5px;
  line-height: 1.5;
}

.note .err-item {
  margin-top: 10px;
  background: #fff;
  border: 1px solid #f7c4c9;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: #c1303d;
  font-weight: 600;
}

.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 36px);
  margin: 6px 18px 18px;
  padding: 14px;
  border-radius: 12px;
  background: #94a3b8;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: not-allowed;
  transition: all .25s ease;
}

.pay-btn.enabled {
  background: #1e3656;
  cursor: pointer;
  box-shadow: 0 16px 30px -14px rgba(30, 54, 86, .45);
}

.pay-btn.enabled:hover {
  transform: translateY(-1px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px 6px;
  color: #ea5260;
  font-weight: 700;
  font-size: 13.5px;
}

.back-link:hover {
  color: #c1303d;
}

/* From branch/top_tags.blade.php */
.tag img {
  height: 35px;
}

/* From checkout.blade.php */
.stepper {
  position: relative;
}

.step-dot {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #94a3b8;
  position: relative;
  z-index: 1;
  transition: all .25s ease;
}

.step.active .step-dot {
  background: #fdca45;
  border-color: #fdca45;
  color: #1e3656;
  box-shadow: 0 0 0 6px rgba(253, 202, 69, 0.18);
}

.step.done .step-dot {
  background: #1e3656;
  border-color: #1e3656;
  color: #fff;
}

.step-body {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 20px 22px;
  transition: border-color .2s ease;
}

.step.active .step-body {
  border-color: #1e3656;
  box-shadow: 0 14px 40px -20px rgba(30, 54, 86, 0.25);
}

.field {
  position: relative;
}

.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 14px 0 42px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  color: #0f172a;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus {
  border-color: #fdca45;
  box-shadow: 0 0 0 4px rgba(253, 202, 69, 0.22);
}

.field i.lead {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}

.seg {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 16px;
}

.seg button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  color: #64748b;
  transition: all .2s ease;
}

.seg button.active {
  background: #fff;
  color: #1e3656;
  box-shadow: 0 6px 16px -8px rgba(30, 54, 86, 0.25);
  border: 1.5px solid #fdca45;
}

.seg button i {
  font-size: 18px;
}

@media (min-width: 1024px) {
  .sticky-summary {
    position: sticky;
    top: 24px;
  }
}

/* From company.blade.php */
.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #ea5260;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem 1.6rem;
  border-radius: 9999px;
  transition: all .2s;
  box-shadow: 0 10px 24px -8px rgba(234, 82, 96, .55);
}

.btn-cta:hover {
  background: #d94452;
  transform: translateY(-1px);
}

.chip-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  font-size: .7rem;
  font-weight: 700;
}

.search-input {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 44px;
  border-radius: 9999px;
  border: 0;
  font-size: .9rem;
  color: #0f172a;
  outline: none;
}

.search-input:focus {
  box-shadow: 0 0 0 4px rgba(253, 202, 69, .35);
}

.dish-card {
  transition: transform .25s, box-shadow .25s;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(15, 23, 42, .18);
}

.flame {
  color: #ea5260;
}

.modal-overlay {
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  transform: scale(.95) translateY(20px);
  opacity: 0;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.search-branch {
  width: 100%;
  height: 52px;
  padding: 0 48px 0 44px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  font-size: .95rem;
  color: #0f172a;
  outline: none;
  transition: all .2s;
  background: #f8fafc;
}

.search-branch:focus {
  background: #fff;
  border-color: #fdca45;
  box-shadow: 0 0 0 4px rgba(253, 202, 69, .25);
}

.pulse-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #fdca45;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .2);
}

.status-dot.closed {
  background: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, .2);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  color: #475569;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}

.branch-card {
  transition: all .2s ease;
  border: 1px solid transparent;
}

.branch-card:hover {
  background: #fff8e7;
  border-color: #fdca45;
  transform: translateX(4px);
}

/* From address/create.blade.php */
.field .control {
  width: 100%;
  height: 56px;
  padding: 22px 14px 6px 44px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  outline: none;
}

.field .control::placeholder {
  color: transparent;
}

.field textarea.control {
  height: 132px;
  padding-top: 28px;
  padding-bottom: 12px;
  resize: none;
}

.field .leading-icon {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: color .2s ease, transform .2s ease;
  pointer-events: none;
}

.field .floating-label {
  position: absolute;
  left: 44px;
  top: 18px;
  font-size: 14px;
  color: #94a3b8;
  pointer-events: none;
  transform-origin: left top;
  transition: transform .15s ease, color .15s ease;
  background: transparent;
  padding: 0 2px;
}

.field .control:focus+.floating-label,
.field .control:not(:placeholder-shown)+.floating-label,
.field.is-filled .floating-label {
  transform: translateY(-12px) scale(0.78);
  color: #1e3656;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.field .control:focus {
  border-color: #fdca45;
  background: #fffdf6;
  box-shadow: 0 0 0 4px rgba(253, 202, 69, 0.18), 0 8px 24px -12px rgba(30, 54, 86, 0.25);
}

.field .control:focus~.leading-icon,
.field .control:focus+.floating-label+.leading-icon {
  color: #1e3656;
}

.field.is-valid .control {
  border-color: #16a34a;
  background: #f6fdf8;
}

.field.is-valid .trailing {
  color: #16a34a;
}

.field.is-invalid .control {
  border-color: #ea5260;
  background: #fff7f8;
  box-shadow: 0 0 0 4px rgba(234, 82, 96, 0.12);
}

.field.is-invalid .leading-icon {
  color: #ea5260;
}

.field .trailing {
  position: absolute;
  right: 14px;
  top: 18px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 14px;
  transition: color .2s ease;
}

.field .helper {
  min-height: 18px;
  margin-top: 6px;
  font-size: 11.5px;
  line-height: 18px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 4px;
  transition: color .2s ease;
}

.field.is-invalid .helper {
  color: #ea5260;
  font-weight: 600;
}

.field.is-valid .helper {
  color: #16a34a;
}

.field .counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 11px;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 6px;
}

.type-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  transition: all .2s ease;
}

.type-card:hover {
  border-color: #fde68a;
  transform: translateY(-1px);
}

.type-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-card .dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #1e3656;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .2s ease;
}

.type-card .label {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.type-card .check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 9px;
  transition: all .2s ease;
}

.type-card.active {
  border-color: #fdca45;
  background: linear-gradient(135deg, #fffaec 0%, #ffffff 100%);
  box-shadow: 0 12px 30px -16px rgba(253, 202, 69, 0.6);
}

.type-card.active .dot {
  background: #fdca45;
  color: #1e3656
}

.type-card.active .label {
  color: #1e3656;
}

.type-card.active .check {
  border-color: #1e3656;
  background: #1e3656;
  color: #fdca45;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1e3656;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fef3c7;
  border: 1px solid #fde68a;
}

.btn-beautiful {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: .75rem;
  overflow: hidden;
  background: linear-gradient(135deg, #fdca45 0%, #f5b923 100%);
  color: #1e3656;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2.4rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 0;
}

.btn-beautiful:hover {
  transform: translateY(-3px);
}

.btn-beautiful:active {
  transform: translateY(-1px);
}

.btn-beautiful-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
  z-index: -1;
}

.btn-beautiful:hover .btn-beautiful-glow {
  transform: translateX(100%);
}

/* ============================================
   RTL Overrides
   ============================================ */
[dir="rtl"] .field .control {
  padding: 22px 44px 6px 14px;
}
[dir="rtl"] .field .leading-icon {
  left: auto;
  right: 14px;
}
[dir="rtl"] .field .floating-label {
  left: auto;
  right: 44px;
  transform-origin: right top;
}
[dir="rtl"] .field .trailing {
  right: auto;
  left: 14px;
}
[dir="rtl"] .field .helper {
  padding-left: 0;
  padding-right: 4px;
}
[dir="rtl"] .field .counter {
  right: auto;
  left: 12px;
}
[dir="rtl"] .type-card .check {
  right: auto;
  left: 10px;
}
[dir="rtl"] .select-wrap .chev {
  right: auto;
  left: 14px;
}
[dir="rtl"] .select-wrap select {
  padding-left: 14px;
  padding-right: 48px;
}

/* ============================================
   Extracted from home views
   ============================================ */

/* From categories.blade.php */
.scroll-x-rows-2 {
    display: grid !important;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    /* Show exactly 8 items across, accounting for gap-4 (1rem) */
    grid-auto-columns: calc((100% - (7 * 1rem)) / 8);
    grid-auto-flow: column;
    overflow-x: auto !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (min-width: 768px) {
    .scroll-x-rows-2 {
        /* Account for gap-5 (1.25rem) on md screens */
        grid-auto-columns: calc((100% - (7 * 1.25rem)) / 8);
    }
}

/* Hide scrollbar for cleaner look (optional but recommended) */
.scroll-x-rows-2::-webkit-scrollbar {
    display: none;
}

/* From popular_brands.blade.php & top_brands.blade.php */
.marquee-viewport {
    display: flex;
    overflow: hidden;
    width: 100%;
    gap: 1.25rem;
}

@media (max-width: 767px) {
    .marquee-viewport {
        gap: 1rem;
    }
}

.brands-scroll-x {
    display: grid !important;
    grid-template-rows: repeat(1, minmax(0, 1fr));
    /* Dynamically updated by JS to match exactly 1/8th of container */
    grid-auto-columns: 120px;
    grid-auto-flow: column;
    gap: 1.25rem;
    width: max-content;
    flex-shrink: 0;
    animation: scroll-x-anim-ltr 20s linear infinite;
}

/* RTL Support */
html[dir="rtl"] .brands-scroll-x,
[dir="rtl"] .brands-scroll-x {
    animation-name: scroll-x-anim-rtl;
}

@media (max-width: 767px) {
    .brands-scroll-x {
        gap: 1rem;
    }
}

.marquee-viewport:hover .brands-scroll-x {
    animation-play-state: paused;
}

/* LTR Animation (Moves Left) */
@keyframes scroll-x-anim-ltr {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1.25rem));
    }
}

@media (max-width: 767px) {
    @keyframes scroll-x-anim-ltr {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-100% - 1rem));
        }
    }
}

/* RTL Animation (Moves Right) */
@keyframes scroll-x-anim-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(100% + 1.25rem));
    }
}

@media (max-width: 767px) {
    @keyframes scroll-x-anim-rtl {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(100% + 1rem));
        }
    }
}

/* From contact.blade.php */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  color: white;
  font-weight: 600;
  box-shadow: 0 20px 40px -12px rgba(30, 54, 86, 0.35);
  transform: translateX(120%);
  transition: transform 300ms ease;
}

[dir="rtl"] .toast {
  right: auto;
  left: 1rem;
  transform: translateX(-120%);
}

.toast.show, [dir="rtl"] .toast.show {
  transform: translateX(0);
}

.toast-success {
  background: #16a34a;
}

.toast-error {
  background: #ea5260;
}

/* From about-us.blade.php */
.hero-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.glass {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.lift {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(30, 54, 86, 0.25);
}

/* From post/details.blade.php */
.post-content * {
    font-family: inherit !important;
}

.post-content p,
.post-content span {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
}

/* ============================================
   Payment Card Component
   ============================================ */
.payment-card {
    width: 18rem;
    aspect-ratio: 1.6;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 0.8rem;
    direction: ltr !important;
    unicode-bidi: isolate;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    position: relative;
}

.payment-card .upper-section {
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-card .upper-section .bank-logo {
    margin-left: auto;
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.payment-card .chip-section {
    height: 25%;
    display: flex;
    align-items: center;
}

.payment-card .account-number-section {
    height: 20%;
    display: flex;
    justify-content: space-between;
    font-size: 1.15em;
    font-weight: 700;
    align-items: center;
    color: #fdca45;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    letter-spacing: 0.15em;
    font-family: 'Courier New', Courier, monospace;
}

.payment-card .valid-thru-section {
    height: 15%;
    display: flex;
    justify-content: center;
    gap: 8px;
    color: white;
    align-items: center;
    font-size: 0.75em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.payment-card .valid-thru-section .valid-date-section {
    font-size: 1.2em;
    font-weight: 700;
    color: #fdca45;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    letter-spacing: 0.1em;
    font-family: 'Courier New', Courier, monospace;
}

.payment-card .footer-section {
    height: 15%;
    display: flex;
    color: #fdca45;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    letter-spacing: 0.08em;
    justify-content: space-between;
    font-weight: 700;
    margin-top: auto;
}

.payment-card .footer-name-section {
    font-size: 0.85em;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-card .payment-gateway {
    height: 100%;
    display: flex;
    align-items: center;
}

.payment-card .gateway-logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.payment-card .gateway-logo img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
}