/* ايفون دبي — ملف التنسيق الموحّد لكل الموقع (ما عدا صفحة الدفع) */

:root {
  --radius: 8px;
  --background: #f8f4ea;
  --foreground: #39424f;
  --card: #ffffff;
  --surface: #fdfaf3;
  --muted: #ece7dd;
  --muted-foreground: #6f7884;
  --primary: #7a263a;
  --primary-foreground: #fdf3f5;
  --accent: #3f88a5;
  --accent-foreground: #f8fbfc;
  --destructive: #c0392b;
  --line: rgba(57, 66, 79, 0.14);
  --line-strong: rgba(57, 66, 79, 0.26);
  --font-sans: "Tajawal", system-ui, sans-serif;
  --font-brand: "Reem Kufi", sans-serif;
  --font-mono: "Space Mono", monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.mono {
  font-family: var(--font-mono);
}

.ltr {
  direction: ltr;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

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

.rise {
  animation: rise 0.5s var(--ease) both;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid currentColor;
  border-inline-start-color: transparent;
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

/* ===== الشعار ===== */
.brand {
  display: inline-flex;
  min-width: 136px;
  flex-direction: column;
  line-height: 1;
  user-select: none;
}

.brand-name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 700;
}

.brand-dubai {
  color: var(--primary);
}

.brand-joint {
  width: 6px;
  height: 6px;
  flex: none;
  transform: rotate(45deg);
  background: var(--primary);
  border-radius: 1px;
}

.brand-sign {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  color: var(--muted-foreground);
}

.brand-sign i {
  height: 1px;
  flex: 1;
  background: var(--line-strong);
}

.brand-sign b {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand.is-compact {
  min-width: 112px;
}

.brand.is-compact .brand-name {
  font-size: 17px;
  gap: 5px;
}

.brand.is-compact .brand-sign b {
  font-size: 5px;
}

/* ===== الهيدر والفوتر ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 244, 234, 0.88);
  backdrop-filter: blur(10px);
}

.header .wrap {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav {
  display: none;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.nav a:hover {
  color: var(--foreground);
}

.footer {
  border-top: 1px solid var(--line);
}

.footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.footer p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-foreground);
}

/* ===== الأزرار ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: var(--background);
  color: var(--primary);
}

.btn-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background: var(--background);
  color: var(--accent);
}

.btn-lg {
  padding: 14px 24px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  height: 48px;
  font-size: 16px;
}

.btn[disabled],
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  border-color: var(--line);
  background: var(--muted);
  color: var(--muted-foreground);
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

/* ===== الهيرو ===== */
.hero {
  display: grid;
  gap: 32px;
  padding: 40px 20px 32px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: start;
  border-inline-start: 4px solid var(--primary);
  border-radius: var(--radius);
  background: rgba(122, 38, 58, 0.1);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.pill span.dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.hero h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero p.lead {
  max-width: 46ch;
  color: var(--muted-foreground);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ===== الأجهزة ===== */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 24px;
  font-weight: 900;
}

.section-head p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.tag-accent {
  border-inline-start: 4px solid var(--accent);
  border-radius: var(--radius);
  background: rgba(63, 136, 165, 0.12);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.family {
  margin-bottom: 40px;
}

.family-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--primary);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
}

.family-head img {
  width: 72px;
  height: 72px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  object-fit: contain;
  padding: 4px;
}

.family-head .info {
  flex: 1;
  min-width: 0;
}

.family-head h3 {
  direction: ltr;
  text-align: start;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.chip.is-accent {
  color: var(--accent);
}

.family-head .from {
  text-align: end;
}

.family-head .from small {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.family-head .from b {
  display: block;
  direction: ltr;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--primary);
}

.grid-3 {
  display: grid;
  gap: 20px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: border-color 0.3s var(--ease);
}

.card:hover {
  border-color: var(--line-strong);
}

.card.is-featured {
  border-color: var(--primary);
}

.badge-top {
  position: absolute;
  top: 16px;
  inset-inline-end: 0;
  z-index: 2;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--primary);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-foreground);
}

.card-media {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.card-media img {
  height: 208px;
  width: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s var(--ease);
}

.card-media:hover img {
  transform: scale(1.05);
}

.card-media .color-dot {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 16px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-row .name {
  font-size: 14px;
  font-weight: 700;
}

.storage {
  direction: ltr;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.color-block {
  margin-top: 16px;
}

.color-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.color-label b {
  color: var(--foreground);
}

.color-label .ok {
  font-size: 10px;
  color: var(--accent);
}

.swatches {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.swatch {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.swatch span {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.swatch:hover {
  border-color: var(--foreground);
}

.swatch.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--primary);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

.price-row .now {
  direction: ltr;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.price-row .cur {
  font-size: 14px;
  color: var(--muted-foreground);
}

.price-row .was {
  direction: ltr;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.save-note {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.card .btn {
  margin-top: 20px;
}

/* ===== ليش ايفون دبي ===== */
.why {
  display: grid;
  gap: 24px;
  border-inline-start: 8px solid var(--primary);
  border-radius: var(--radius);
  background: var(--foreground);
  padding: 24px;
  color: var(--background);
}

.why h2 {
  font-size: 20px;
  font-weight: 800;
}

.why .sub {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(248, 244, 234, 0.6);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-item i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  background: rgba(122, 38, 58, 0.25);
  font-style: normal;
  font-weight: 900;
}

.why-item b {
  font-size: 14px;
}

.why-item p {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(248, 244, 234, 0.6);
}

/* ===== شريط الجوال ===== */
.buybar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
}

.buybar b {
  direction: ltr;
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--primary);
}

.buybar small {
  font-size: 11px;
  color: var(--muted-foreground);
}

.buybar .btn {
  max-width: 180px;
  flex: 1;
}

/* ===== صفحة إتمام الطلب ===== */
.checkout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 100px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.back-link:hover {
  color: var(--foreground);
}

.step-head {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.step-head .step {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.step-head h1 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
}

.step-head p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.progress .track {
  height: 6px;
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  background: var(--muted);
  overflow: hidden;
}

.progress .track i {
  display: block;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.progress span {
  direction: ltr;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-foreground);
}

.checkout-grid {
  display: grid;
  gap: 24px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.panel-head i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(122, 38, 58, 0.1);
  color: var(--primary);
  font-style: normal;
  font-weight: 900;
}

.panel-head h2 {
  font-size: 20px;
  font-weight: 800;
}

.note-accent {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(63, 136, 165, 0.4);
  border-radius: var(--radius);
  background: rgba(63, 136, 165, 0.1);
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.fields {
  display: grid;
  gap: 20px;
}

/* حقول مع تنبيه تحقق */
.field > label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.field .control {
  position: relative;
  display: block;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--background);
  padding: 0 14px 0 44px;
  height: 48px;
  font: inherit;
  font-size: 14px;
  color: inherit;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.field textarea {
  min-height: 96px;
  padding: 12px 14px 12px 44px;
  resize: vertical;
}

.field select {
  appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
}

.field.is-ok input,
.field.is-ok textarea,
.field.is-ok select {
  border-color: rgba(63, 136, 165, 0.6);
}

.field.is-error input,
.field.is-error textarea {
  border-color: rgba(192, 57, 43, 0.7);
}

.field .check {
  position: absolute;
  inset-inline-start: 12px;
  top: 12px;
  display: none;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 13px;
  font-weight: 900;
  pointer-events: none;
}

.field:not(.is-multiline) .check {
  top: 50%;
  transform: translateY(-50%);
}

.field.is-ok .check {
  display: grid;
}

.field .msg {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted-foreground);
}

.field.is-error .msg {
  font-weight: 600;
  color: var(--destructive);
}

.summary {
  height: fit-content;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px;
}

.summary h2 {
  font-size: 20px;
  font-weight: 800;
}

.summary .item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  border-block: 1px solid var(--line);
  padding-block: 20px;
}

.summary .item small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted-foreground);
}

.summary .item .price {
  direction: ltr;
  font-family: var(--font-mono);
  font-weight: 700;
  white-space: nowrap;
}

.summary .line {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.summary .line b {
  color: var(--accent);
}

.summary .total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-weight: 700;
}

.summary .total .value {
  direction: ltr;
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--primary);
}

.summary .btn {
  margin-top: 16px;
}

.summary .safe {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-foreground);
}

/* ===== شاشة 404 ===== */
.notfound {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .hero h1 {
    font-size: 46px;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .why {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .footer .wrap {
    flex-direction: row;
  }

  .panel {
    padding: 32px;
  }
}

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

  .buybar {
    display: none;
  }

  .checkout-grid {
    grid-template-columns: 1fr 360px;
  }
}

/* ===== إصلاح وتوسيع عرض الديسكتوب ===== */

@media (min-width: 1024px) {
  /* عرض المحتوى العام */
  .wrap,
  .hero,
  .section {
    width: min(100% - 48px, 1280px);
    max-width: 1280px;
  }

  .wrap {
    padding-inline: 0;
  }

  /* الترويسة */
  .header .wrap {
    min-height: 64px;
  }

  .nav {
    gap: 36px;
    font-size: 15px;
  }

  /* القسم الرئيسي */
  .hero {
    grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr);
    gap: 56px;
    min-height: 620px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-copy {
    gap: 26px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .hero p.lead {
    max-width: 58ch;
    font-size: 18px;
    line-height: 1.9;
  }

  .hero-visual {
    min-width: 0;
  }

  .hero-visual img {
    width: 100%;
    height: 500px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .hero-actions .btn {
    min-height: 52px;
    padding-inline: 28px;
    font-size: 16px;
  }

  .hero-facts {
    font-size: 15px;
  }

  /* أقسام المنتجات */
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .section-head p {
    font-size: 15px;
  }

  .family {
    margin-bottom: 52px;
  }

  .family-head {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 20px;
    min-height: 116px;
    padding: 18px 20px;
  }

  .family-head img {
    width: 80px;
    height: 80px;
  }

  .family-head h3 {
    font-size: 24px;
  }

  .family-head .from b {
    font-size: 21px;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  /* بطاقات المنتجات */
  .card-media img {
    height: 270px;
    padding: 22px;
  }

  .card-body {
    padding: 24px;
  }

  .card-row .name {
    font-size: 16px;
  }

  .storage {
    font-size: 15px;
  }

  .price-row .now {
    font-size: 28px;
  }

  .card .btn {
    min-height: 48px;
    font-size: 15px;
  }

  /* قسم المميزات */
  .why {
    grid-template-columns: 1.15fr repeat(3, 1fr);
    min-height: 180px;
    align-items: center;
    padding: 36px;
  }

  .why h2 {
    font-size: 24px;
  }

  /* صفحة معلومات الطلب */
  .checkout {
    width: min(100% - 48px, 1000px);
    max-width: 1000px;
    margin: auto;
  }

  .checkout-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 32px;
    align-items: start;
  }

  .step-head h1 {
    font-size: 34px;
  }

  .panel,
  .summary {
    padding: 32px;
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
}

/* الشاشات الكبيرة */
@media (min-width: 1440px) {
  .wrap,
  .hero,
  .section {
    width: min(100% - 64px, 1360px);
    max-width: 1360px;
  }

  .hero {
    gap: 72px;
    min-height: 680px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-visual img {
    height: 550px;
  }

  .grid-3 {
    gap: 28px;
  }

  .card-media img {
    height: 300px;
  }
}

/* منع تمدد أو قص العناصر في المقاسات المتوسطة */
@media (min-width: 768px) and (max-width: 1100px) {
  .wrap,
  .hero,
  .section {
    width: min(100% - 40px, 1040px);
  }

  .hero {
    gap: 32px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .grid-3 {
    gap: 16px;
  }

  .card-body {
    padding: 18px;
  }
}

