:root {
  --primary: #EF0909;
  --primary-soft: #FDECEC;
  --ink: #111111;
  --muted: #6B7280;
  --surface: #F7F7F8;
  --card: #FFFFFF;
  --border: #E8E8EA;
  --success: #0F9D58;
  --warning: #F59E0B;
  --white: #fff;
  --radius-card: 12px;
  --radius-sheet: 20px;
  --radius-pill: 28px;
  --red: #EF0909;
  --yellow: #F59E0B;
  --dark: #111111;
  --light-bg: #F7F7F8;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

body.download-modal-open {
  overflow: hidden;
}

.navbar.site-header {
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}

.site-header .navbar-brand {
  padding-top: 2px;
  padding-bottom: 2px;
}

.site-header .navbar-brand img {
  height: 40px;
  width: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.site-header .nav-link {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink) !important;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--primary) !important;
}

.site-header .navbar-toggler {
  border-color: var(--border);
  padding: 4px 8px;
}

.site-header .navbar-toggler-icon {
  filter: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icon {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-icon:hover,
.header-icon:focus {
  background: var(--surface);
  color: var(--primary);
}

.btn-download {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-download:hover,
.btn-download:focus {
  color: #fff;
  background: #d40808;
}

.btn-modern {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: none;
}

.btn-modern:hover {
  color: #fff;
  background: #d40808;
}

.home-hero {
  background: var(--primary);
  color: #fff;
  padding: 28px 0 36px;
}

.home-hero__grid {
  display: grid;
  gap: 24px;
}

.home-hero__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.home-hero__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.home-hero__lead {
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.94;
  margin: 0 0 20px;
  max-width: 34em;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 22px 12px 12px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-hero__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.btn-hero--primary {
  background: #fff;
  color: var(--primary);
}

.btn-hero--primary .btn-hero__icon {
  background: var(--primary-soft);
  color: var(--primary);
}

.btn-hero--primary:hover,
.btn-hero--primary:focus {
  background: #fff;
  color: #c10707;
  transform: translateY(-2px);
}

.btn-hero--secondary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-hero--secondary .btn-hero__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-hero--secondary:hover,
.btn-hero--secondary:focus {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.home-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.home-hero__points li {
  position: relative;
  padding-left: 14px;
}

.home-hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.home-hero__panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
}

.home-hero__panel-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 4px;
}

.home-hero__panel-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}

.home-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.home-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.home-hero__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

#how,
#features,
#shop,
#download,
#contact {
  scroll-margin-top: 72px;
}

.section-block {
  padding: 48px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head--left,
.section-head--split {
  text-align: left;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-head__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 6px;
}

.section-head__kicker--on-red {
  color: rgba(255, 255, 255, 0.8);
}

.section-head__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0;
}

.section-head__copy {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 36em;
}

.section-head__link {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 4px;
}

.section-head__link:hover {
  color: #d40808;
}

.how {
  background: #fff;
}

.how__grid {
  display: grid;
  gap: 16px;
}

.how__step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}

.how__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #FFF9C4;
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}

.how__step:hover .how__num {
  background: var(--primary);
  color: #fff;
}

.how__step h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.how__step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.catalog {
  background: var(--surface);
}

.category-grid--home {
  margin-bottom: 28px;
}

.section-rail {
  margin: 8px 0 24px;
}

.rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rail-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0;
  color: var(--ink);
}

.rail-all {
  border: 0;
  background: none;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 0;
}

.rail-all:hover {
  color: #d40808;
}

.rail-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.rail-scroll::-webkit-scrollbar {
  height: 0;
}

.category-tile {
  width: 88px;
  flex: 0 0 88px;
  border: 0;
  background: none;
  padding: 0;
  text-align: center;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.category-tile__image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #FFF5F4;
  object-fit: contain;
  padding: 8px;
  margin: 0 auto 8px;
  display: block;
}

.category-tile__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kn-card {
  width: 156px;
  flex: 0 0 156px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  position: relative;
}

.kn-card__link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kn-card__link:hover .kn-card__name {
  color: var(--primary);
}

.kn-card__media {
  height: 118px;
  position: relative;
  padding: 8px;
}

.kn-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kn-card__badge {
  position: absolute;
  left: 6px;
  top: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}

.kn-card__oos {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.kn-card__body {
  padding: 0 8px 8px;
}

.kn-card__unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}

.kn-card__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin: 2px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 35px;
}

.kn-card__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding-right: 56px;
}

.kn-card__price {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.kn-card__mrp {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  margin: 0;
}

.kn-add {
  position: absolute;
  right: 8px;
  bottom: 8px;
  height: 28px;
  min-width: 52px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

.kn-add:hover,
.kn-add:focus {
  background: var(--primary-soft);
}

.catalog-empty {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  color: var(--muted);
  margin: 8px 0 20px;
}

.marketing {
  background: var(--surface);
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #FFF9C4;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  transition: 0.3s;
}

.feature-card:hover .icon-circle {
  background: var(--primary);
  color: #fff;
}

.ls-2 {
  letter-spacing: 2px;
}

.get-app {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
}

.get-app__inner {
  display: grid;
  gap: 20px;
}

.get-app__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}

.get-app__copy {
  margin: 0;
  opacity: 0.92;
  font-size: 15px;
  max-width: 36em;
}

.get-app__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.app-btn img {
  height: 44px;
}

.home-support {
  background: #fff;
}

.home-support__grid {
  display: grid;
  gap: 32px;
}

.btn-whatsapp {
  width: 100%;
  border: 0;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1fb855;
  color: #fff;
}

.contact-box .form-label {
  font-weight: 600;
  font-size: 14px;
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-soft);
  color: var(--ink);
  box-shadow: none;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.contact-box {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.contact-box input,
.contact-box textarea,
.policy-content input,
.policy-content textarea,
.policy-content select {
  border-radius: 12px;
  border: 1px solid var(--border);
}

.section-title {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 28px;
  color: var(--ink);
}

.testimonial-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: none;
  border: 1px solid var(--border);
  height: 100%;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.testimonial-bg {
  background: var(--primary-soft);
}

.customer-name {
  font-weight: 700;
  color: var(--ink);
  margin-top: 0;
  font-size: 14px;
}

.customer-location {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.star-rating {
  color: var(--warning);
  font-size: 16px;
  margin-bottom: 15px;
}

.quote-icon {
  font-size: 36px;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 10px;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary);
  height: 5px;
  width: 20px;
  border-radius: 5px;
}

.page-header {
  background: var(--primary);
  padding: 64px 0;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

.policy-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 50px;
}

.policy-content h3 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 22px;
  color: var(--ink);
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.policy-content p,
.policy-content li {
  color: #555;
  line-height: 1.7;
}

.footer-section {
  background: #111;
  color: #fff;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
}

.footer-text {
  color: #ccc;
  font-size: 15px;
  line-height: 24px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #fff;
}

.footer-download img {
  width: 150px;
  margin-bottom: 12px;
}

.footer-copy {
  color: #bbb;
  font-size: 14px;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
}

.download-modal.is-open {
  display: block;
}

.download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
}

.download-modal__sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100% - 32px));
  background: #fff;
  border-radius: var(--radius-sheet);
  padding: 28px 24px 24px;
  text-align: center;
}

.download-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--surface);
  border-radius: 50%;
  color: var(--ink);
}

.download-modal__logo {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.download-modal__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.download-modal__copy {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}

.download-modal__stores {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.download-modal__store img {
  height: 44px;
}

.download-modal__store.is-preferred img {
  transform: scale(1.06);
}

.catalog-page {
  padding: 20px 0 40px;
}

.catalog-heading {
  margin-bottom: 20px;
}

.catalog-crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.catalog-crumb a {
  color: var(--muted);
  text-decoration: none;
}

.catalog-crumb a:hover {
  color: var(--primary);
}

.catalog-heading__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0;
}

.catalog-subhead {
  margin: 28px 0 12px;
}

.category-filter {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.category-filter::-webkit-scrollbar {
  height: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.category-grid .category-tile {
  width: auto;
  flex: none;
}

.category-grid .category-tile__image {
  width: 120px;
  height: 120px;
  padding: 14px;
}

.category-grid .category-tile__name {
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-grid .kn-card {
  width: auto;
  flex: none;
}

.search-form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.search-form .form-control {
  border-radius: 12px;
  border: 1px solid var(--border);
}

.search-form .btn-modern {
  padding: 10px 18px;
  white-space: nowrap;
}

.search-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.pdp {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.pdp__gallery img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.pdp__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}

.pdp__thumb {
  width: 64px;
  height: 64px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  padding: 0;
}

.pdp__name {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.pdp__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pdp__price {
  font-size: 22px;
  font-weight: 700;
}

.pdp__mrp {
  color: var(--muted);
  text-decoration: line-through;
}

.pdp__label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pdp__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pdp__chip {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.pdp__chip.is-active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.pdp__copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.pdp__add {
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .home-hero {
    padding: 40px 0 48px;
  }

  .home-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
  }

  .home-hero__title {
    font-size: 44px;
  }

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

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .get-app__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
  }

  .home-support__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

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

  .category-grid--home,
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid .category-tile__image {
    width: 96px;
    height: 96px;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pdp {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .pdp__add {
    width: auto;
  }
}

@media (min-width: 992px) {
  .category-grid--home,
  .category-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .category-grid .category-tile__image {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 767.98px) {
  .home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-hero {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head__title,
  .get-app__title {
    font-size: 24px;
  }

  .download-modal__sheet {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    border-radius: var(--radius-sheet) var(--radius-sheet) 0 0;
    padding-bottom: 28px;
  }
}
