:root {
  --shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
  --primary-light: linear-gradient(107deg, #013023 0%, #346c2f 100%);
  --primary-green: #052f23;
  --white: #fff;
  --text-gray: #666;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-size: 16px;
  font-family: "Times New Roman", Times, serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #f0eded;
  color: #0f172a;
  min-height: 100vh;
}

body {
  display: block;
  overflow-x: clip;
}

/* Utilities */
.hidden {
  display: none !important;
}

.block {
  display: block;
}

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

.text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
}

.muted-text {
  margin-top: 12px;
  color: #334155;
  text-align: center;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  display: flex;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  left: 0;
  right: 0;
}

.container-header {
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 100%;
  flex-direction: row-reverse;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-green);
}

.logo-cropped {
  object-fit: contain;
  object-position: center;
  max-width: 120px;
  max-height: 40px;
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-direction: row-reverse;
}

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

@media (min-width: 1280px) {
  .nav-desktop {
    gap: 40px;
  }
}

.nav-link {
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--primary-green);
  transition: background-color 0.2s ease, color 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  background: rgba(5, 47, 35, 0.729);
  color: var(--white);
}

.nav-link-active {
  border-radius: 6px;
  border: 1px solid rgba(237, 209, 194, 0);
  background: var(--primary-green);
  color: var(--white) !important;
}

/* Mobile Nav */
.header-left {
  position: relative;
  z-index: 100;
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* توسيع منطقة اللمس على الموبايل دون تغيير الشكل */
@media (max-width: 1023px) {
  .mobile-menu-btn::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn:hover {
  background: rgba(5, 47, 35, 0.08);
}

.mobile-menu-btn-active {
  background: rgba(5, 47, 35, 0.12);
}

.mobile-menu {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  position: relative;
  z-index: 9998;
  width: 100%;
  left: 0;
  right: 0;
}

.mobile-menu:not(.hidden) {
  display: block !important;
  visibility: visible !important;
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu:not(.hidden) {
    display: none !important;
  }
}

.mobile-menu-inner {
  padding: 12px 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-inner .nav-link {
  display: block;
  width: 100%;
  padding: 12px 14px;
  text-align: right;
  border-radius: 8px;
  margin: 0;
  box-sizing: border-box;
}

.mobile-menu-inner > * + * {
  margin-top: 0;
}

.nav-link-mobile {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--primary-green);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link-mobile:hover {
  background: rgba(5, 47, 35, 0.729);
  color: var(--white);
}

.nav-link-active-mobile {
  background: var(--primary-green);
  color: var(--white) !important;
}

.btn-primary-mobile {
  background: var(--primary-green);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}

.btn-primary-mobile:hover {
  background: rgba(5, 47, 35, 0.9);
}

/* Layout */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 100%;
}

/* sm */
@media (min-width: 640px) {
  .container {
    padding-inline: 24px;
    max-width: 640px;
  }
}

/* lg */
@media (min-width: 1024px) {
  .container {
    padding-inline: 32px;
    max-width: 1024px;
  }
}

/* xl */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Headings */
.heading-header {
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .heading-header {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .heading-header {
    margin-bottom: 3.125rem;
  }
}

.heading-section {
  font-size: 30px;
  text-align: center;
  line-height: 64px;
  font-weight: 600;
  color: var(--primary-green);
  margin: 0 0 1.25rem 0;
}

@media (min-width: 600px) {
  .heading-section {
    font-size: 2.5rem;
  }
}

.heading-description {
  margin-top: 12px;
  color: #334155;
  text-align: center;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

/* Icons */
.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-box {
  background-color: var(--primary-light);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
}

/* Modal */
.modal {
  border: none;
  border-radius: 12px;
  padding: 0;
  width: min(1000px, 92vw);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.modal-content {
  padding: 20px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-title {
  font-weight: 600;
  color: var(--primary-green);
  margin: auto;
  text-align: center;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.modal-body {
  margin-top: 16px;
  color: var(--text-gray);
  line-height: 1.75;
}

.modal-body-description {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  text-align: start;
  margin: 0;
  line-height: 1.9;
}

.close-dialog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #ec2d30;
  border-radius: 9999px;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

.close-dialog:active {
  transform: scale(0.8);
}

.close-dialog svg {
  display: block;
}

.close-dialog:focus-visible {
  outline: none;
}

@media (min-width: 600px) {
  .close-dialog {
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 1024px) {
  .close-dialog {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* About Cards */
.card-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .card-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .card-about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.card-about-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.125rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

@media (min-width: 600px) {
  .card-about-container {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card-about-container {
    padding: 2.5rem;
  }
}

.card-about-container .card-about-icon {
  margin-right: auto;
  border-radius: 24px 28px 56px 52px;
  background: var(--primary-light);
  box-shadow: 0 10px 25px 0 rgba(136, 176, 211, 0.3);
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 600px) {
  .card-about-container .card-about-icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .card-about-container .card-about-icon {
    width: 80px;
    height: 80px;
  }
}

.card-about-container .card-about-icon svg {
  width: 28px;
  height: 28px;
}

.card-about-title {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 18px;
  line-height: 1.3;
  text-align: end;
}

@media (min-width: 600px) {
  .card-about-title {
    font-size: 22px;
  }
}

.card-about-container .card-about-description {
  color: var(--text-gray);
  text-align: end;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 420px) {
  .card-about-container {
    padding: 14px;
    gap: 12px;
  }

  .card-about-title {
    font-size: 16px;
  }

  .card-about-container .card-about-description {
    font-size: 13px;
  }
}

/* Statistics */
#why_us {
  border-radius: 30px;
  background: var(--primary-light);
  margin: 1.5rem 0px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (min-width: 600px) {
  #why_us {
    margin: 2.5rem auto;
  }
}

@media (min-width: 1024px) {
  #why_us {
    margin: 3rem auto;
    flex-direction: row;
  }
}

@media (min-width: 1440px) {
  #why_us {
    margin: 3.75rem auto;
  }
}

.statistics-container {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .statistics-container {
    padding: 1.5rem 0;
  }
}

@media (min-width: 1024px) {
  .statistics-container {
    padding: 2rem 0;
  }
}

@media (min-width: 1440px) {
  .statistics-container {
    padding: 2.5rem 0;
  }
}

.statistics-container .statistics-number {
  color: var(--white);
  text-align: center;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: "Times New Roman";
  font-size: clamp(28px, 6vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}

.statistics-container .statistics-title {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: "Times New Roman";
  font-size: clamp(12px, 2.2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

/* Contact */
#contact {
  background: var(--primary-light);
  /* border-radius: 30px; */
  padding: 2rem 1rem;
}
@media (min-width: 600px) {
  #contact {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  #contact {
    padding: 5rem;
  }
}
/* features */
#features {
  background: var(--primary-light);
  border-radius: 30px;
  padding: 1rem;
}
@media (min-width: 600px) {
  #features {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  #features {
    padding: 2.5rem;
  }
}

.contact-container {
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .contact-container {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    padding: 1.5rem;
  }
}

.contact-card {
  min-height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .contact-card-icon {
  background: var(--primary-green);
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card .contact-card-description {
  text-align: end;
  color: #2a2a3e;
  max-width: 187px;
}

@media (max-width: 480px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-card .contact-card-description {
    text-align: center;
  }
}

/* Timeline */
#timeline_container {
}
.timeline_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.timeline_container_style {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .timeline_container_style {
    flex-direction: column;
    gap: 30px;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 40px 0;
  min-width: 120px;
}

@media (max-width: 992px) {
  .timeline {
    display: none;
  }
}

.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background-color: var(--primary-green);
  z-index: 1;
}

.timeline-label {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border: 1px solid #f3f4f6;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 700;
  color: #2a2a3e;
  z-index: 2;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .timeline-label-desktop {
    visibility: hidden;
  }

  .timeline-label-mobile {
    display: none;
    margin-bottom: 1rem;
    text-align: center;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .timeline-label {
    width: 100%;
    width: 220px;
  }
  .timeline-label-desktop {
    visibility: visible;
  }

  .timeline-label-mobile {
    display: none;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary-green);
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}

@media (max-width: 992px) {
  .feature-card {
    padding: 24px;
  }
}

@media (min-width: 992px) {
  .feature-card {
    max-width: 90%;
  }
}

.feature-description {
  text-align: end;
}

.content-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  .card-header {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.card-header h3 {
  margin: 0;
  color: var(--primary-green);
  font-size: 1.25rem;
  font-weight: 700;
}

@media (max-width: 480px) {
  .card-header h3 {
    font-size: 1.1rem;
  }
}

.card-body p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.tag {
  background: var(--primary-green);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .tag {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
}

.main-bg {
  background: var(--primary-light);
}

/* Footer */
.footer-container {
  background-color: #2a2a3e;
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 31px;
  padding: 16px;
  flex-wrap: wrap;
  text-align: center;
}
@media (min-width: 600px) {
  .footer-container {
    padding: 2rem;
  }
}
@media (min-width: 11024px) {
  .footer-container {
    padding: 2.5rem;
  }
}
.footer-container .footer-link {
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 10px 12px;
  border-radius: 8px;
}

.footer-container .footer-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-container .footer-social .footer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-green);
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.footer-container .footer-social .footer-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 12px;
    padding: 16px 12px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-container .footer-link {
    width: 100%;
    max-width: 360px;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .footer-container {
    gap: 18px;
    padding: 18px 16px;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    gap: 31px;
    padding: 18px;
  }
}

/* App Steps Showcase (Tabs) */
.step_actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.step-action {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--primary-green);
  background: transparent;
  color: var(--primary-green);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  font-family: inherit;
}

.step-action:hover,
.step-action.active {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(5, 47, 35, 0.2);
}

.steps {
  margin-top: 1rem;
}

.step-content {
  display: none; /* Hidden by default */
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeIn 0.5s ease;
}
@media (min-width: 1024px) {
  .step-content {
    gap: 2rem;
  }
}
.step-content.active {
  display: flex; /* Visible when active */
}

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

html[dir="rtl"] .step-content {
  flex-direction: row-reverse;
}

img.image_step {
  width: 100%;
  height: auto;
  max-width: 280px;
  display: block;
  border-radius: 20px;
  aspect-ratio: 89/184;
}

/* Contact Us Section */
.contact-us-section {
  background: var(--primary-light) !important;
  padding: 60px 0;
  color: var(--white);
}

.contact-us-section .heading-section {
  color: var(--white);
  margin-bottom: 40px;
}

.contact-card-wrapper {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map iframe {
  width: 100%;
  height: 100%;
}

.contact_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 10px;
  color: #0f172a;
}

.contact_info-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact_info-container .icons {
  background-color: var(--primary-green);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact_info-container .icons svg {
  width: 24px;
  height: 24px;
}

.contact_info-container .label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary-green);
}

.contact_info-container .title {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact_info-container .title a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.contact_info-container .title a:hover {
  color: var(--primary-green);
}

@media (min-width: 900px) {
  .contact-card-wrapper {
    flex-direction: row;
    align-items: stretch;
    padding: 30px;
  }

  .contact_info {
    flex: 0 0 40%;
    padding: 20px;
  }

  .map {
    flex: 1;
    height: 400px;
  }
}

/* Hero Section */
.hero-section {
  background-image: url("./img/hero.png");
  background-size: cover;
  background-position: center;
  position: relative;
  /* background: var(--primary-light); */
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 40px 16px;
}

/* .hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
} */
/* 
.hero-section::before {
  width: 600px;
  height: 600px;
}

.hero-section::after {
  width: 900px;
  height: 900px;
} */

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin: 0;
  font-family: inherit;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  color: var(--primary-green);
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px;
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  line-height: 1.2;
}

.btn-label {
  font-size: 0.75rem;
  font-weight: 400;
}

.btn-store-name {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: sans-serif;
}

.btn-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.section-margin {
  margin: 1.125rem auto;
}
@media (min-width: 600px) {
  .section-margin {
    margin: 2rem auto;
  }
}
@media (min-width: 1024px) {
  .section-margin {
    margin: 4rem auto;
  }
}
.section-margin-top {
  margin: 1.125rem auto 0 auto;
}
@media (min-width: 600px) {
  .section-margin-top {
    margin: 2rem auto 0 auto;
  }
}
@media (min-width: 1024px) {
  .section-margin-top {
    margin: 4rem auto 0 auto;
  }
}
@media (min-width: 1440px) {
  .section-margin-top {
    margin: 5rem auto 0 auto;
  }
}

.app-icon-style {
  width: 30px;
  height: 30px;
}
