/* Home page theme styles. Public layout only. */

/* Site main UI font for every home revamp block (matches sh.vars.less @arfontface / RTL bundle). */
.home-revamp-hero,
.home-revamp-benefits,
.home-revamp-pricing,
.home-revamp-features,
.home-revamp-discovery,
.home-revamp-categories-strip,
.home-revamp-bottom-cta {
  font-family:
    Droid Arabic Naskh,
    Segoe UI,
    Lucida Grande,
    Sans-serif;
  line-height: 1.8;
}

/* Global sh.rtl h1–h6 set HelveticaNeueLTW20-Ligh; inherit section font instead */
.home-revamp-hero h1,
.home-revamp-benefits h5,
.home-revamp-pricing h2,
.home-revamp-features h2,
.home-revamp-features h3,
.home-revamp-discovery h2,
.home-revamp-discovery h3,
.home-revamp-discovery h5,
.home-revamp-categories-strip h2,
.home-revamp-bottom-cta h2 {
  font-family: inherit;
}

.home-revamp-hero {
  position: relative;
  padding: 0;
  background: #1c1e22;
  color: #fff;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Beat global .sectionwrapper vertical padding on the home hero only */
section.sectionwrapper.home-revamp-hero {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.home-revamp-hero-inner {
  position: relative;
  width: 100%;
}

/* In-flow video: intrinsic 1920×540 — reserve height via aspect-ratio before metadata loads (avoids layout jump). */
.home-revamp-hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 540;
  opacity: 0.72;
  filter: brightness(0.55) saturate(0.92);
}

.home-revamp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(18, 20, 24, 0.72), rgba(18, 20, 24, 0.55)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 72px,
      rgba(255, 255, 255, 0.015) 72px,
      rgba(255, 255, 255, 0.015) 144px
    );
}

.home-revamp-hero .page.home-revamp-hero-front {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(1rem, 3vw, 2.5rem) 1rem;
  pointer-events: none;
}

.home-revamp-hero .page.home-revamp-hero-front .home-revamp-hero-content {
  pointer-events: auto;
  width: 100%;
}

.home-revamp-hero-content {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.home-revamp-hero-eyebrow {
  margin: 0 0 0.85rem;
  color: #f4f7fa;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
}

.home-revamp-hero-content h1 {
  margin: 0 0 2.25rem;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.45;
}

.home-revamp-hero-subtitle {
  margin: 2rem auto 1.2rem;
  max-width: 680px;
  color: #f4f7fa;
  font-size: 1.85rem;
  line-height: 1.55;
}

.home-revamp-hero-search {
  --hero-search-h: 48px;
  margin: 0 auto 1.1rem;
  max-width: 560px;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

/* Wrapper: native ::placeholder clips Arabic in WebKit/Blink; hint is a real span, not a pseudo-element. */
.home-revamp-search-field {
  position: relative;
  flex: 1;
  min-width: 0;
  height: var(--hero-search-h);
  box-sizing: border-box;
}

.home-revamp-hero
  .home-revamp-hero-search
  .home-revamp-search-field
  input[type="text"] {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  font-family: inherit;
  font-size: 1.12rem;
  line-height: 1.45;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

/* Invisible placeholder so :placeholder-shown works; visible hint is .home-revamp-search-hint */
.home-revamp-hero
  .home-revamp-hero-search
  .home-revamp-search-field
  input[type="text"]::placeholder {
  color: transparent;
  opacity: 0;
}

.home-revamp-search-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 1.12rem;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.48);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
}

.home-revamp-search-field
  input:placeholder-shown:not(:focus)
  + .home-revamp-search-hint {
  opacity: 1;
}

.home-revamp-hero-search button {
  box-sizing: border-box;
  height: var(--hero-search-h);
  min-width: 5.5rem;
  padding: 0 1.1rem;
  border: none;
  border-radius: 999px;
  background: #6c7680;
  color: #fff;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*
 * Mobile / narrow view: 32:9 aspect video is extremely short in height; overlay content
 * overflows. Use a taller hero box and fill it with cover video so text + search fit.
 */
@media only screen and (max-width: 768px) {
  .home-revamp-hero-inner {
    /* Room for fixed header offset (padding on overlay) + headline, search, subtitle, badges */
    min-height: clamp(28rem, 132vw, 40rem);
  }

  .home-revamp-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  .home-revamp-hero .page.home-revamp-hero-front {
    align-items: center;
    justify-content: center;
    padding-top: calc(3.25rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}

.home-revamp-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-revamp-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.35rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.home-revamp-secondary-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.home-revamp-benefits {
  padding: 1rem 0;
  background: #fff;
  border-top: 1px solid #edebdf;
  border-bottom: 1px solid #edebdf;
}

.home-revamp-benefits h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.home-revamp-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.home-revamp-benefits-grid .benefit-item {
  flex: 1 1 200px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

.home-revamp-pricing {
  padding: 2rem 0 1.75rem;
}

.home-revamp-pricing h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 12px;
  color: #2c2c2c;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-revamp-pricing .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
  font-size: 1.15em;
  line-height: 1.6;
}

.home-revamp-pricing .plans-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  margin: 0 auto 16px;
  max-width: 1040px;
}

.home-revamp-pricing .plan-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.home-revamp-pricing .plan-card:hover {
  border-color: #e96a2c;
  box-shadow: 0 8px 24px rgba(233, 106, 44, 0.15);
  transform: translateY(-4px);
}

.home-revamp-pricing .plan-card.selected {
  border-color: #e96a2c;
  background: linear-gradient(135deg, #8b4c9f 0%, #6b2c7f 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(139, 76, 159, 0.25);
  transform: translateY(-4px);
}

.home-revamp-pricing .plan-card.selected .plan-price,
.home-revamp-pricing .plan-card.selected .plan-period,
.home-revamp-pricing .plan-card.selected .plan-name {
  color: #fff;
}

.home-revamp-pricing .plan-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #76bc19 0%, #5fa015 100%);
  color: #fff;
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 0.85em;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(118, 188, 25, 0.3);
  letter-spacing: 0.3px;
  z-index: 10;
}

.home-revamp-pricing .plan-name {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.3px;
  text-align: center;
  width: 100%;
}

.home-revamp-pricing .plan-price {
  font-size: 3em;
  font-weight: 800;
  color: #e96a2c;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.home-revamp-pricing .price-amount {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.home-revamp-pricing .price-currency {
  font-size: 0.5em;
  font-weight: 600;
  opacity: 0.9;
  vertical-align: baseline;
  margin-right: 4px;
}

.home-revamp-pricing .plan-card.selected .price-currency {
  opacity: 0.95;
}

.home-revamp-pricing .plan-original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1.1em;
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  text-align: center;
  width: 100%;
}

.home-revamp-pricing .plan-card.selected .plan-original-price {
  color: rgba(255, 255, 255, 0.7);
}

.home-revamp-pricing .plan-period {
  color: #6b7280;
  font-size: 0.95em;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.home-revamp-pricing .plan-period:last-of-type {
  margin-bottom: 8px;
}

.home-revamp-pricing .plan-card.selected .plan-period {
  color: rgba(255, 255, 255, 0.9);
}

.home-revamp-pricing .plan-subscribe-btn {
  width: 100%;
  padding: 14px 24px;
  border: 2px solid #e96a2c;
  background: transparent;
  color: #e96a2c;
  border-radius: 10px;
  font-size: 1.05em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  letter-spacing: 0.3px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  line-height: normal;
}

.home-revamp-pricing a.plan-subscribe-btn {
  text-decoration: none;
  box-sizing: border-box;
}

.home-revamp-pricing .plan-card.selected .plan-subscribe-btn {
  background: #fff;
  color: #8b4c9f;
  border-color: #fff;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.home-revamp-pricing .plan-subscribe-btn:hover {
  background: #e96a2c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 106, 44, 0.3);
}

.home-revamp-pricing .plan-card.selected .plan-subscribe-btn:hover {
  background: #fff;
  color: #8b4c9f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 980px) {
  .home-revamp-pricing .plans-container {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

.home-revamp-features {
  padding: 1.75rem 0 2.25rem;
  background: #fff;
}

/* “لماذا أبجد؟” — larger than default h2 */
.home-revamp-features h2 {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 3.05rem;
  font-weight: 700;
  color: #2c2c2c;
}

.home-revamp-feature-rows {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-revamp-feature-row {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 2rem;
  padding: 0;
  border-bottom: 1px solid #edebdf;
  position: relative;
  z-index: 0;
  min-height: 310px;
}

.home-revamp-feature-row > * {
  position: relative;
  z-index: 1;
}

.home-revamp-feature-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.home-revamp-feature-row:nth-child(odd) {
  background: transparent;
}

.home-revamp-feature-row:nth-child(odd)::before {
  background: #f6e9df;
}

.home-revamp-feature-row:nth-child(even)::before {
  background: #ffffff;
}

.home-revamp-feature-row:last-child {
  border-bottom: none;
}

.home-revamp-feature-row .media {
  width: clamp(330px, 39vw, 500px);
  height: 100%;
  flex: 0 0 clamp(330px, 39vw, 500px);
  max-width: 100%;
  padding: 0.75rem;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.home-revamp-feature-row:first-child .media {
  width: clamp(280px, 34vw, 420px);
  flex: 0 0 clamp(280px, 34vw, 420px);
  padding: 0.5rem;
}

.home-revamp-feature-row:nth-child(odd) .media {
  background: #f6e9df;
}

.home-revamp-feature-row:nth-child(even) .media {
  background: #ffffff;
}

.home-revamp-feature-row .media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.home-revamp-feature-row:nth-child(1) .media img,
.home-revamp-feature-row:nth-child(2) .media img {
  transform: none;
  object-fit: contain;
  /* Compensate for built-in transparent padding in some GIFs */
  object-position: center 62%;
}

.home-revamp-feature-row:nth-child(1) .media img {
  filter: none;
}

.home-revamp-feature-row .placeholder-media {
  border-radius: 8px;
  border: 1px dashed #b8bdc2;
  background: linear-gradient(135deg, #eceff3, #d6dbe1);
  color: #57606b;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  min-height: 100%;
}

.home-revamp-feature-row .copy {
  flex: 1 1 280px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-revamp-feature-row h3 {
  margin: 0 0 0.5rem;
  color: #e96a2c;
  font-weight: 700;
}

.home-revamp-feature-row .copy ul {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 1.55rem;
  line-height: 1.9;
}

.home-revamp-feature-row .copy ul li.check-mark {
  margin: 0 0 0.35rem;
}

.home-revamp-discovery {
  padding: 1rem 0 2rem;
}

.home-revamp-discovery-intro {
  margin-bottom: 1rem;
}

.home-revamp-discovery-intro h2 {
  margin: 0;
}

.home-revamp-discovery-library-cta {
  text-align: center;
  margin-top: 2rem;
}

.home-revamp-library-full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.85rem;
  border-radius: 999px;
  background: #e96a2c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(233, 106, 44, 0.28);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-revamp-library-full-btn:hover {
  background: #d45f26;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(233, 106, 44, 0.35);
  transform: translateY(-1px);
}

/* Aligns with site-wide category chips (.tag on Lists / #edebdf) and home revamp accents. */
.home-revamp-categories-strip {
  padding: 2.25rem 0;
  background: transparent;
  border-top: 1px solid #edebdf;
  border-bottom: 1px solid #edebdf;
  color: #2c2c2c;
}

.home-revamp-categories-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-revamp-categories-strip-header h2 {
  margin: 0;
  color: #2c2c2c;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.5px;
}

.home-revamp-categories-strip-header a {
  color: #e96a2c;
  font-weight: bold;
  text-decoration: underline;
}

.home-revamp-categories-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home-revamp-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: 4px;
  border: 1px solid transparent;
  background: #edebdf;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 1.35rem;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.home-revamp-category-pill:hover {
  color: #fff;
  background: #f26101;
  border-color: #e96a2c;
}

.home-revamp-bottom-cta {
  padding: 2rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
  border-top: 1px solid #edebdf;
}

.home-revamp-bottom-cta .actions {
  margin-top: 1.25rem;
}

.home-revamp-bottom-cta .btndiff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.85rem;
  border-radius: 999px;
  background: #e96a2c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(233, 106, 44, 0.28);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.home-revamp-bottom-cta .btndiff:hover,
.home-revamp-bottom-cta .btndiff:focus {
  background: #d45f26;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(233, 106, 44, 0.35);
  transform: translateY(-1px);
}

/* App store badges — same pattern as SubscriptionsCheckout .hero-stores (not footer text links). */
.home-revamp-app-stores-wrap {
  display: flex;
  justify-content: center;
  margin: 1.75rem auto 0;
  max-width: 520px;
}

.home-revamp-app-stores-wrap .hero-stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.home-revamp-app-stores-wrap .hero-stores .iphone,
.home-revamp-app-stores-wrap .hero-stores .android,
.home-revamp-app-stores-wrap .hero-stores .huawei {
  display: inline-block;
  width: 150px;
  height: 50px;
  min-width: 150px;
  max-width: 150px;
  min-height: 50px;
  max-height: 50px;
  flex-shrink: 0;
  flex-grow: 0;
  text-indent: -9999px;
  overflow: hidden;
  transition:
    transform 0.2s,
    opacity 0.2s;
  border: none;
  border-radius: 8px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home-revamp-app-stores-wrap .hero-stores .iphone:hover,
.home-revamp-app-stores-wrap .hero-stores .android:hover,
.home-revamp-app-stores-wrap .hero-stores .huawei:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.home-revamp-app-stores-wrap .hero-stores .iphone {
  background-image: url("../assets/img/stores/apple.png");
}

.home-revamp-app-stores-wrap .hero-stores .android {
  background-image: url("../assets/img/stores/google.png");
}

.home-revamp-app-stores-wrap .hero-stores .huawei {
  background-image: url("../assets/img/stores/huawei.png");
}

@media only screen and (max-width: 640px) {
  .home-revamp-hero-eyebrow {
    margin-bottom: 0.65rem;
    font-size: 1.65rem;
  }

  .home-revamp-hero-content h1 {
    font-size: 1.45rem;
  }

  .home-revamp-hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.38rem;
  }

  .home-revamp-hero-search {
    --hero-search-h: 38px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.4rem;
    max-width: 100%;
  }

  .home-revamp-hero-search .home-revamp-search-field {
    flex: 1;
    min-width: 0;
  }

  .home-revamp-hero
    .home-revamp-hero-search
    .home-revamp-search-field
    input[type="text"] {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }

  .home-revamp-search-hint {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }

  .home-revamp-hero-search button {
    width: auto;
    flex: 0 0 auto;
    min-width: 4.25rem;
    padding: 0 0.75rem;
    font-size: 0.88rem;
  }

  .home-revamp-pricing .plans-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-revamp-pricing .plan-card {
    padding: 24px 18px;
  }

  .home-revamp-pricing .plan-price {
    font-size: 2.3em;
  }

  .home-revamp-features h2 {
    font-size: 2.25rem;
  }

  .home-revamp-feature-row .copy ul {
    font-size: 1.38rem;
  }

  .home-revamp-feature-row,
  .home-revamp-feature-row:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    min-height: 0;
  }

  .home-revamp-feature-row .media {
    width: 88%;
    height: auto;
    padding: 0.5rem;
  }

  .home-revamp-feature-row:first-child .media {
    width: 80%;
    padding: 0.4rem;
  }

  .home-revamp-feature-row .copy {
    padding: 0.25rem 1rem 1rem;
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .home-revamp-feature-row .placeholder-media {
    min-height: 180px;
  }

  .home-revamp-app-stores-wrap .hero-stores {
    gap: 8px;
  }

  .home-revamp-app-stores-wrap .hero-stores .iphone,
  .home-revamp-app-stores-wrap .hero-stores .android,
  .home-revamp-app-stores-wrap .hero-stores .huawei {
    width: 110px;
    height: 35px;
    min-width: 110px;
    max-width: 110px;
    min-height: 35px;
    max-height: 35px;
  }
}

@media only screen and (max-width: 400px) {
  .home-revamp-app-stores-wrap .hero-stores {
    gap: 6px;
  }

  .home-revamp-app-stores-wrap .hero-stores .iphone,
  .home-revamp-app-stores-wrap .hero-stores .android,
  .home-revamp-app-stores-wrap .hero-stores .huawei {
    width: 100px;
    height: 32px;
    min-width: 100px;
    max-width: 100px;
    min-height: 32px;
    max-height: 32px;
  }
}
