/*
 * Sell My App custom storefront styles.
 * Keep project-specific edits here so the base child theme stays easy to update.
 */

:root {
  --smh-ink: #172033;
  --smh-muted: #5f6b7a;
  --smh-line: #e6e9ef;
  --smh-surface: #f7f9fc;
  --smh-primary: #1f7aec;
  --smh-primary-dark: #155db5;
  --smh-accent: #12a87b;
  --smh-reference-pink: #c0245c;
  --smh-reference-hero: #f72c74;
  --smh-reference-green: #2dbc4a;
  --smh-reference-logo-green: #63b72f;
  --smh-reference-logo-red: #d45370;
}

/* Reference-style top storefront header. */
.sellmyapphub-front .smh-brandbar {
  background: #ffffff;
  padding: 25px 0 26px;
}

.sellmyapphub-front .smh-brandbar-grid {
  display: grid;
  grid-template-columns: minmax(210px, 240px) minmax(280px, 420px) minmax(280px, 1fr);
  align-items: center;
  gap: 28px;
}

.sellmyapphub-front .smh-logo {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.smh-logo-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--smh-reference-logo-red);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.smh-logo-word strong,
.smh-logo-word i {
  color: var(--smh-reference-logo-green);
  font-style: normal;
}

.smh-logo-word i {
  margin-left: 3px;
  font-size: 26px;
}

.smh-top-search,
.smh-hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 59px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #ffffff;
}

.smh-top-search {
  height: 49px;
}

.smh-top-search input,
.smh-hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: #666666;
  font-size: 17px;
  padding: 0 19px;
}

.smh-top-search button,
.smh-hero-search button {
  position: relative;
  border: 0;
  border-left: 1px solid #d9d9d9;
  background: #ffffff;
}

.smh-top-search button::before,
.smh-hero-search button::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 2px solid #737373;
  border-radius: 50%;
}

.smh-top-search button::after,
.smh-hero-search button::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 33px;
  width: 17px;
  height: 2px;
  background: #737373;
  transform: rotate(45deg);
  transform-origin: left center;
}

.sellmyapphub-front .smh-header-actions {
  min-width: 0;
  justify-content: flex-end;
  gap: 28px;
}

.smh-cart-icon {
  position: relative;
  width: 42px;
  height: 36px;
}

.smh-cart-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 25px;
  height: 17px;
  border: 3px solid var(--smh-reference-green);
  border-top: 0;
  transform: skewX(-15deg);
}

.smh-cart-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--smh-reference-green);
  box-shadow: 24px 0 0 var(--smh-reference-green), -7px -26px 0 -1px var(--smh-reference-green);
}

.smh-login-link,
.smh-signup-button {
  color: var(--smh-reference-green);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.smh-signup-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  background: var(--smh-reference-green);
  color: #ffffff;
  padding: 0 24px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.smh-signup-button:hover,
.smh-signup-button:focus {
  color: #ffffff;
  background: #25a93f;
}

.sellmyapphub-front .smh-categorybar {
  background: var(--smh-reference-pink);
  border: 0;
}

.sellmyapphub-front .smh-categorybar-grid {
  min-height: 62px;
  justify-content: space-between;
}

.sellmyapphub-front .smh-main-cats {
  gap: 36px;
  padding-left: 0;
}

.sellmyapphub-front .smh-main-cats a,
.smh-sell-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-sell-link {
  white-space: nowrap;
}

.sellmyapphub-front .smh-hero {
  min-height: 390px;
  padding: 0;
  border-top: 4px solid rgba(255, 255, 255, 0.36);
  background-color: var(--smh-reference-hero);
  background-image:
    linear-gradient(rgba(72, 72, 72, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 72, 72, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 50%, transparent 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 50%, transparent 50%);
  background-size: 16px 16px, 16px 16px, 4px 4px, 4px 4px;
}

.smh-hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 390px;
  padding: 50px 16px 24px;
}

.smh-hero-inner h1 {
  width: min(620px, 100%);
  margin: 0 auto 31px;
  color: #ffffff;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.smh-laurel {
  position: absolute;
  top: 34px;
  width: 76px;
  height: 150px;
  opacity: 0.95;
}

.smh-laurel::before {
  content: "{";
  display: block;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 176px;
  font-weight: 400;
  line-height: 0.78;
}

.smh-laurel-left {
  left: calc(50% - 330px);
  transform: rotate(180deg);
}

.smh-laurel-right {
  right: calc(50% - 330px);
}

.smh-hero-search {
  width: min(520px, calc(100% - 32px));
  height: 50px;
}

.smh-platform-icons {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 25px;
}

.smh-platform {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.12);
}

.smh-ios {
  background: #27aeec;
}

.smh-unity {
  background: #c2255b;
  font-size: 42px;
}

.smh-android {
  background: #28c321;
  font-size: 42px;
}

.smh-assets {
  background: #ffc414;
}

.sellmyapphub-sell-page {
  background: #f5f6f8;
}

.smh-sell-app-panel {
  width: min(860px, calc(100% - 32px));
  margin: 46px auto;
  background: #ffffff;
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  padding: 30px;
}

.smh-sell-app-panel h1,
.smh-sell-app-panel h2 {
  margin-top: 0;
  color: var(--smh-ink);
}

.smh-sell-app-form {
  display: grid;
  gap: 18px;
}

.smh-sell-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.smh-sell-app-form label {
  display: grid;
  gap: 7px;
  color: var(--smh-ink);
  font-weight: 700;
}

.smh-sell-app-form input,
.smh-sell-app-form select,
.smh-sell-app-form textarea {
  width: 100%;
  border: 1px solid #d8dde6;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--smh-ink);
}

.smh-sell-app-form textarea {
  min-height: 150px;
  resize: vertical;
}

.smh-sell-app-form button {
  justify-self: start;
  border: 0;
  border-radius: 4px;
  background: var(--smh-reference-green);
  color: #ffffff;
  padding: 13px 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-sell-app-notice {
  margin: 0 0 18px;
  border-radius: 6px;
  padding: 12px 14px;
  font-weight: 700;
}

.smh-sell-app-notice-success {
  background: #e8f8ed;
  color: #16802e;
}

.smh-sell-app-notice-error {
  background: #fff0f3;
  color: #b00032;
}

@media (max-width: 900px) {
  .sellmyapphub-front .smh-brandbar-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .smh-top-search {
    width: min(520px, 100%);
  }

  .sellmyapphub-front .smh-header-actions {
    justify-content: center;
  }

  .sellmyapphub-front .smh-categorybar-grid,
  .sellmyapphub-front .smh-main-cats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 12px 0;
  }

  .smh-laurel {
    display: none;
  }
}

@media (max-width: 640px) {
  .smh-logo-word {
    font-size: 34px;
  }

  .smh-logo-word i {
    font-size: 20px;
  }

  .smh-hero-inner h1 {
    font-size: 29px;
  }

  .smh-platform-icons {
    gap: 14px;
  }

  .smh-platform {
    width: 58px;
    height: 58px;
    font-size: 13px;
  }

  .smh-unity,
  .smh-android {
    font-size: 30px;
  }

  .smh-sell-app-grid {
    grid-template-columns: 1fr;
  }

  .smh-subpage-homebar {
    padding: 10px 12px;
  }

  .smh-subpage-homebutton {
    min-height: 48px;
    width: min(420px, 100%);
  }

  .smh-subpage-homebutton .smh-logo-word {
    font-size: 28px;
  }
}

.smh-laurel {
  display: none !important;
}

.smh-hero-inner {
  min-height: 360px !important;
  padding-top: 42px !important;
}

.smh-hero-inner h1 {
  width: min(760px, calc(100% - 32px)) !important;
  margin-bottom: 28px !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.smh-platform-icons {
  gap: 44px !important;
  margin-top: 25px !important;
}

.smh-platform {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  transition: transform 160ms ease, box-shadow 160ms ease !important;
}

.smh-platform:hover,
.smh-platform:focus {
  transform: translateY(-4px) !important;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.13), 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

.smh-platform::before,
.smh-platform::after {
  content: "" !important;
  position: absolute !important;
  text-indent: 0 !important;
}

.smh-flutter-games {
  background: #2fb1ee !important;
}

.smh-flutter-games::before {
  width: 31px !important;
  height: 47px !important;
  background: #ffffff !important;
  clip-path: polygon(50% 0, 100% 0, 50% 50%, 100% 100%, 50% 100%, 0 50%) !important;
  transform: rotate(-45deg) !important;
}

.smh-flutter-games::after {
  width: 26px !important;
  height: 17px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%) !important;
  transform: translate(9px, 14px) rotate(-45deg) !important;
}

.smh-flutter-apps {
  background: #ffc414 !important;
}

.smh-flutter-apps::before {
  width: 34px !important;
  height: 46px !important;
  border: 4px solid #ffffff !important;
  border-radius: 8px !important;
}

.smh-flutter-apps::after {
  bottom: 19px !important;
  width: 16px !important;
  height: 4px !important;
  border-radius: 99px !important;
  background: #ffffff !important;
}

.smh-unity-games {
  background: #c2255b !important;
}

.smh-unity-games::before {
  width: 43px !important;
  height: 43px !important;
  background: #ffffff !important;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%) !important;
}

.smh-unity-games::after {
  width: 25px !important;
  height: 25px !important;
  background: #c2255b !important;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%) !important;
}

@media (max-width: 640px) {
  .smh-hero-inner h1 {
    font-size: 27px !important;
  }

  .smh-platform-icons {
    gap: 18px !important;
  }

  .smh-platform {
    width: 58px !important;
    height: 58px !important;
  }
}

/* Product collection card readability fixes. */
.smh-home-collections .smh-product-grid,
.smh-recent-projects .smh-product-grid {
  align-items: stretch;
}

.smh-home-collections .smh-product-card,
.smh-recent-projects .smh-product-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.smh-home-collections .smh-product-art,
.smh-recent-projects .smh-product-art {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  background: #eef2f7 !important;
}

.smh-home-collections .smh-product-art img,
.smh-recent-projects .smh-product-art img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.smh-home-collections .smh-product-body,
.smh-recent-projects .smh-product-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 178px !important;
  padding: 22px 20px 20px !important;
  background: #ffffff !important;
}

.smh-home-collections .smh-product-body strong,
.smh-recent-projects .smh-product-body strong {
  display: block !important;
  min-height: 0 !important;
  color: #172033 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  overflow: visible !important;
  white-space: normal !important;
}

.smh-home-collections .smh-product-body em,
.smh-recent-projects .smh-product-body em {
  display: -webkit-box !important;
  min-height: 46px !important;
  margin-top: 12px !important;
  overflow: hidden !important;
  color: #667085 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

.smh-home-collections .smh-product-price,
.smh-recent-projects .smh-product-price {
  margin-top: auto !important;
  padding-top: 16px !important;
  color: #12a87b !important;
  font-size: 20px !important;
  font-weight: 900 !important;
}

@media (max-width: 900px) {
  .smh-home-collections .smh-product-body,
  .smh-recent-projects .smh-product-body {
    min-height: 150px !important;
  }
}

/* Final home spacing balance: wider sidebar, 4cm left offset, slightly smaller cards. */
.smh-home-collections .smh-home-products-layout {
  width: calc(100% - 4cm - 24px) !important;
  max-width: none !important;
  margin-left: 4cm !important;
  margin-right: 24px !important;
  grid-template-columns: 280px minmax(0, 1fr) !important;
  gap: 24px !important;
}

.smh-price-sidebar {
  width: 280px !important;
}

.smh-price-sidebar .smh-price-filter-card,
.smh-price-sidebar .smh-sidebar-request-card {
  padding: 20px !important;
}

.smh-price-sidebar .smh-price-filter-card h2 {
  font-size: 25px !important;
}

.smh-price-sidebar .smh-sidebar-request-card h2 {
  font-size: 24px !important;
}

.smh-price-sidebar .smh-sidebar-request-card p {
  font-size: 14px !important;
}

.smh-price-sidebar .smh-price-values strong {
  min-width: 76px !important;
  font-size: 13px !important;
}

.smh-price-sidebar .smh-price-inputs input {
  min-height: 42px !important;
  font-size: 14px !important;
}

.smh-home-collections .smh-collection-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
  gap: 22px !important;
}

.smh-home-collections .smh-product-body {
  min-height: 156px !important;
  padding: 18px 16px 18px !important;
}

.smh-home-collections .smh-product-body strong {
  font-size: 16px !important;
  line-height: 1.22 !important;
}

.smh-home-collections .smh-product-body em {
  min-height: 40px !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
}

.smh-home-collections .smh-product-price {
  padding-top: 12px !important;
  font-size: 18px !important;
}

@media (max-width: 1500px) {
  .smh-home-collections .smh-collection-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
  }
}

@media (max-width: 1180px) {
  .smh-home-collections .smh-home-products-layout {
    width: calc(100% - 32px) !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
    grid-template-columns: 250px minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .smh-price-sidebar {
    width: 250px !important;
  }

  .smh-home-collections .smh-collection-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  }
}

@media (max-width: 780px) {
  .smh-home-collections .smh-home-products-layout {
    width: min(100% - 24px, 560px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: 1fr !important;
  }

  .smh-price-sidebar {
    width: 100% !important;
  }

  .smh-home-collections .smh-collection-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 780px) {
  .smh-home-collections .smh-price-sidebar {
    display: none !important;
  }

  .smh-home-collections .smh-home-products-layout {
    display: block !important;
    width: min(100% - 24px, 560px) !important;
  }

  .smh-home-collections {
    padding-top: 0 !important;
  }

  .smh-single-product .smh-wrap {
    width: min(100% - 22px, 560px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .smh-product-shell {
    gap: 14px !important;
  }

  .smh-product-media {
    padding: 10px !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 24px rgba(16, 24, 39, 0.06) !important;
  }

  .smh-product-main-image {
    aspect-ratio: 16 / 10 !important;
    max-height: 255px !important;
  }

  .smh-product-main-image .smh-lightbox-link {
    aspect-ratio: 16 / 10 !important;
  }

  .smh-product-main-image img {
    object-fit: cover !important;
  }

  .smh-product-gallery {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 8px !important;
    margin-top: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 4px !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .smh-product-gallery .smh-lightbox-link,
  .smh-product-gallery span {
    flex: 0 0 92px !important;
    width: 92px !important;
    height: 70px !important;
    aspect-ratio: auto !important;
    border-radius: 7px !important;
    scroll-snap-align: start !important;
  }

  .smh-product-gallery img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .smh-product-summary {
    padding: 18px !important;
  }

  .smh-product-summary h1 {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }
}

/* Final brand platform icons: Flutter, Flame, Unity. */
.smh-platform {
  overflow: hidden !important;
  text-indent: 0 !important;
}

/* Final home sidebar sizing: keep filters on the far left without shrinking products. */
.smh-home-collections .smh-home-products-layout {
  width: calc(100% - 32px) !important;
  max-width: none !important;
  margin-left: 16px !important;
  margin-right: 16px !important;
  grid-template-columns: 230px minmax(0, 1fr) !important;
  gap: 26px !important;
}

.smh-price-sidebar {
  width: 230px !important;
}

.smh-price-sidebar .smh-price-filter-card,
.smh-price-sidebar .smh-sidebar-request-card {
  padding: 18px !important;
}

.smh-price-sidebar .smh-price-filter-card {
  margin-top: 0 !important;
}

.smh-price-sidebar .smh-price-filter-card > span,
.smh-price-sidebar .smh-sidebar-request-card > span {
  margin-bottom: 7px !important;
  font-size: 10px !important;
}

.smh-price-sidebar .smh-price-filter-card h2 {
  font-size: 22px !important;
  line-height: 1.08 !important;
}

.smh-price-sidebar .smh-sidebar-request-card h2 {
  font-size: 21px !important;
  line-height: 1.12 !important;
}

.smh-price-sidebar .smh-sidebar-request-card p {
  margin-bottom: 16px !important;
  font-size: 13px !important;
}

.smh-price-sidebar .smh-price-values {
  gap: 10px !important;
  margin: 15px 0 12px !important;
}

.smh-price-sidebar .smh-price-values strong {
  min-width: 64px !important;
  font-size: 12px !important;
  padding: 8px 10px !important;
}

.smh-price-sidebar .smh-range-wrap {
  min-height: 38px !important;
  margin-bottom: 10px !important;
}

.smh-price-sidebar .smh-range-wrap::before {
  top: 17px !important;
  height: 6px !important;
}

.smh-price-sidebar .smh-range::-webkit-slider-thumb {
  width: 20px !important;
  height: 20px !important;
  border-width: 3px !important;
}

.smh-price-sidebar .smh-range::-moz-range-thumb {
  width: 16px !important;
  height: 16px !important;
  border-width: 3px !important;
}

.smh-price-sidebar .smh-price-inputs {
  gap: 10px !important;
  margin-bottom: 14px !important;
}

.smh-price-sidebar .smh-price-inputs label {
  font-size: 12px !important;
}

.smh-price-sidebar .smh-price-inputs input {
  min-height: 40px !important;
  font-size: 13px !important;
  padding: 8px 10px !important;
}

.smh-price-sidebar .smh-price-filter-card button,
.smh-price-sidebar .smh-sidebar-request-card a {
  min-height: 42px !important;
  font-size: 13px !important;
  padding: 11px 14px !important;
}

.smh-home-collections .smh-collection-grid {
  grid-template-columns: repeat(3, minmax(250px, 1fr)) !important;
}

@media (max-width: 1180px) {
  .smh-home-collections .smh-home-products-layout {
    grid-template-columns: 210px minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .smh-price-sidebar {
    width: 210px !important;
  }

  .smh-home-collections .smh-collection-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
  }
}

@media (max-width: 780px) {
  .smh-home-collections .smh-home-products-layout {
    width: min(100% - 24px, 560px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: 1fr !important;
  }

  .smh-price-sidebar {
    width: 100% !important;
  }

  .smh-home-collections .smh-collection-grid {
    grid-template-columns: 1fr !important;
  }
}

.smh-platform::before,
.smh-platform::after {
  display: none !important;
  content: none !important;
}

.smh-platform-logo {
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  color: #ffffff !important;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.08)) !important;
  pointer-events: none !important;
}

.smh-platform-logo-flutter {
  width: 54px !important;
  height: 54px !important;
  transform: translateX(1px) !important;
}

.smh-platform-logo-flame {
  width: 50px !important;
  height: 50px !important;
}

.smh-platform-logo-unity {
  width: 52px !important;
  height: 52px !important;
}

.smh-flutter-games {
  background: #2fb1ee !important;
}

.smh-flutter-apps {
  background: #ffc414 !important;
}

.smh-unity-games {
  background: #c2255b !important;
}

@media (max-width: 640px) {
  .smh-platform-logo {
    width: 38px !important;
    height: 38px !important;
  }

  .smh-platform-logo-flutter {
    width: 42px !important;
    height: 42px !important;
  }
}

/* Absolute final single product page override. */
.smh-single-product {
  background: #f5f7fb !important;
}

.smh-single-product .smh-wrap {
  width: min(1420px, calc(100% - 40px)) !important;
}

.smh-product-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr) !important;
  gap: 30px !important;
  align-items: start !important;
}

.smh-product-media,
.smh-product-summary,
.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  border: 1px solid #dbe4f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 38px rgba(16, 24, 39, 0.08) !important;
}

.smh-product-media {
  padding: 16px !important;
}

.smh-product-main-image {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 560px !important;
  border: 1px solid #dfe6f1 !important;
  border-radius: 8px !important;
  background: #eef3f8 !important;
  overflow: hidden !important;
}

.smh-product-main-image img,
.smh-product-main-image picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #eef3f8 !important;
}

.smh-product-gallery {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.smh-product-gallery .smh-lightbox-link,
.smh-preview-thumbs .smh-lightbox-link {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 10 !important;
  border: 1px solid #dfe6f1 !important;
  border-radius: 8px !important;
  background: #f4f7fb !important;
  overflow: hidden !important;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.smh-product-gallery .smh-lightbox-link:hover,
.smh-preview-thumbs .smh-lightbox-link:hover {
  border-color: #1f58b8 !important;
  box-shadow: 0 10px 24px rgba(31, 88, 184, 0.16) !important;
  transform: translateY(-2px) !important;
}

.smh-product-gallery img,
.smh-preview-thumbs img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #f4f7fb !important;
}

.smh-product-summary {
  position: sticky !important;
  top: 18px !important;
  padding: 28px !important;
}

.smh-product-category {
  display: none !important;
}

.smh-product-badges {
  margin-top: 0 !important;
}

.smh-product-badges span {
  border-radius: 999px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  text-transform: none !important;
}

.smh-product-summary h1 {
  margin-top: 18px !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.08 !important;
}

.smh-product-price-large {
  margin-top: 10px !important;
  font-size: 32px !important;
}

.smh-product-short {
  margin-top: 14px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.smh-product-actions {
  border-top: 0 !important;
  margin-top: 20px !important;
  padding-top: 0 !important;
}

.smh-product-actions form.cart {
  align-items: center !important;
}

.smh-product-actions .single_add_to_cart_button,
.smh-product-actions .button,
.smh-product-actions a.button {
  min-height: 48px !important;
  border-radius: 6px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-weight: 900 !important;
}

.smh-product-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.smh-product-facts div {
  background: #f6f9fd !important;
}

.smh-product-included {
  background: #f9fbfe !important;
}

.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  padding: 28px !important;
}

.smh-product-details-content {
  max-width: 940px !important;
  color: #344054 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.smh-product-details-content h2,
.smh-product-details-content h3 {
  color: #172033 !important;
  line-height: 1.2 !important;
}

.smh-preview-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

@media (max-width: 980px) {
  .smh-single-product .smh-wrap {
    width: min(100% - 28px, 760px) !important;
  }

  .smh-product-shell {
    grid-template-columns: 1fr !important;
  }

  .smh-product-summary {
    position: static !important;
  }

  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .smh-product-media,
  .smh-product-summary,
  .smh-product-details-panel,
  .smh-product-preview-panel,
  .smh-product-reviews-panel,
  .smh-related-products {
    padding: 16px !important;
  }

  .smh-product-summary h1 {
    font-size: 28px !important;
  }

  .smh-product-facts,
  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: 1fr !important;
  }
}

/* Absolute final single product page override. */
.smh-single-product {
  background: #f5f7fb !important;
}

.smh-single-product .smh-wrap {
  width: min(1420px, calc(100% - 40px)) !important;
}

.smh-product-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr) !important;
  gap: 30px !important;
  align-items: start !important;
}

.smh-product-media,
.smh-product-summary,
.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  border: 1px solid #dbe4f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 38px rgba(16, 24, 39, 0.08) !important;
}

.smh-product-media {
  padding: 16px !important;
}

.smh-product-main-image {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 560px !important;
  border: 1px solid #dfe6f1 !important;
  border-radius: 8px !important;
  background: #eef3f8 !important;
  overflow: hidden !important;
}

.smh-product-main-image img,
.smh-product-main-image picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #eef3f8 !important;
}

.smh-product-gallery {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.smh-product-gallery .smh-lightbox-link,
.smh-preview-thumbs .smh-lightbox-link {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 10 !important;
  border: 1px solid #dfe6f1 !important;
  border-radius: 8px !important;
  background: #f4f7fb !important;
  overflow: hidden !important;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.smh-product-gallery .smh-lightbox-link:hover,
.smh-preview-thumbs .smh-lightbox-link:hover {
  border-color: #1f58b8 !important;
  box-shadow: 0 10px 24px rgba(31, 88, 184, 0.16) !important;
  transform: translateY(-2px) !important;
}

.smh-product-gallery img,
.smh-preview-thumbs img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #f4f7fb !important;
}

.smh-product-summary {
  position: sticky !important;
  top: 18px !important;
  padding: 28px !important;
}

.smh-product-category {
  display: none !important;
}

.smh-product-badges {
  margin-top: 0 !important;
}

.smh-product-badges span {
  border-radius: 999px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  text-transform: none !important;
}

.smh-product-summary h1 {
  margin-top: 18px !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.08 !important;
}

.smh-product-price-large {
  margin-top: 10px !important;
  font-size: 32px !important;
}

.smh-product-short {
  margin-top: 14px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.smh-product-actions {
  border-top: 0 !important;
  margin-top: 20px !important;
  padding-top: 0 !important;
}

.smh-product-actions form.cart {
  align-items: center !important;
}

.smh-product-actions .single_add_to_cart_button,
.smh-product-actions .button,
.smh-product-actions a.button {
  min-height: 48px !important;
  border-radius: 6px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-weight: 900 !important;
}

.smh-product-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.smh-product-facts div {
  background: #f6f9fd !important;
}

.smh-product-included {
  background: #f9fbfe !important;
}

.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  padding: 28px !important;
}

.smh-product-details-content {
  max-width: 940px !important;
  color: #344054 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.smh-product-details-content h2,
.smh-product-details-content h3 {
  color: #172033 !important;
  line-height: 1.2 !important;
}

.smh-preview-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

@media (max-width: 980px) {
  .smh-single-product .smh-wrap {
    width: min(100% - 28px, 760px) !important;
  }

  .smh-product-shell {
    grid-template-columns: 1fr !important;
  }

  .smh-product-summary {
    position: static !important;
  }

  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .smh-product-media,
  .smh-product-summary,
  .smh-product-details-panel,
  .smh-product-preview-panel,
  .smh-product-reviews-panel,
  .smh-related-products {
    padding: 16px !important;
  }

  .smh-product-summary h1 {
    font-size: 28px !important;
  }

  .smh-product-facts,
  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: 1fr !important;
  }
}

/* Last-pass single product layout: keep screenshots tidy and product details balanced. */
.smh-single-product {
  background: #f5f7fb !important;
}

.smh-single-product .smh-wrap {
  width: min(1420px, calc(100% - 40px)) !important;
}

.smh-product-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr) !important;
  gap: 30px !important;
  align-items: start !important;
}

.smh-product-media,
.smh-product-summary,
.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  border: 1px solid #dbe4f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 38px rgba(16, 24, 39, 0.08) !important;
}

.smh-product-media {
  padding: 16px !important;
}

.smh-product-main-image {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 560px !important;
  border: 1px solid #dfe6f1 !important;
  border-radius: 8px !important;
  background: #eef3f8 !important;
  overflow: hidden !important;
}

.smh-product-main-image img,
.smh-product-main-image picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #eef3f8 !important;
}

.smh-product-gallery {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.smh-product-gallery .smh-lightbox-link,
.smh-preview-thumbs .smh-lightbox-link {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 10 !important;
  border: 1px solid #dfe6f1 !important;
  border-radius: 8px !important;
  background: #f4f7fb !important;
  overflow: hidden !important;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.smh-product-gallery .smh-lightbox-link:hover,
.smh-preview-thumbs .smh-lightbox-link:hover {
  border-color: #1f58b8 !important;
  box-shadow: 0 10px 24px rgba(31, 88, 184, 0.16) !important;
  transform: translateY(-2px) !important;
}

.smh-product-gallery img,
.smh-preview-thumbs img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #f4f7fb !important;
}

.smh-product-summary {
  position: sticky !important;
  top: 18px !important;
  padding: 28px !important;
}

.smh-product-category {
  display: none !important;
}

.smh-product-badges {
  margin-top: 0 !important;
}

.smh-product-badges span {
  border-radius: 999px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  text-transform: none !important;
}

.smh-product-summary h1 {
  margin-top: 18px !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.08 !important;
}

.smh-product-price-large {
  margin-top: 10px !important;
  font-size: 32px !important;
}

.smh-product-short {
  margin-top: 14px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.smh-product-actions {
  border-top: 0 !important;
  margin-top: 20px !important;
  padding-top: 0 !important;
}

.smh-product-actions form.cart {
  align-items: center !important;
}

.smh-product-actions .single_add_to_cart_button,
.smh-product-actions .button,
.smh-product-actions a.button {
  min-height: 48px !important;
  border-radius: 6px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-weight: 900 !important;
}

.smh-product-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.smh-product-facts div {
  background: #f6f9fd !important;
}

.smh-product-included {
  background: #f9fbfe !important;
}

.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  padding: 28px !important;
}

.smh-product-details-content {
  max-width: 940px !important;
  color: #344054 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.smh-product-details-content h2,
.smh-product-details-content h3 {
  color: #172033 !important;
  line-height: 1.2 !important;
}

.smh-preview-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

@media (max-width: 980px) {
  .smh-single-product .smh-wrap {
    width: min(100% - 28px, 760px) !important;
  }

  .smh-product-shell {
    grid-template-columns: 1fr !important;
  }

  .smh-product-summary {
    position: static !important;
  }

  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .smh-product-media,
  .smh-product-summary,
  .smh-product-details-panel,
  .smh-product-preview-panel,
  .smh-product-reviews-panel,
  .smh-related-products {
    padding: 16px !important;
  }

  .smh-product-summary h1 {
    font-size: 28px !important;
  }

  .smh-product-facts,
  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: 1fr !important;
  }
}

/* Final single product layout polish. */
.smh-single-product {
  background: #f5f7fb !important;
}

.smh-single-product .smh-wrap {
  width: min(1420px, calc(100% - 40px)) !important;
}

.smh-product-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr) !important;
  gap: 30px !important;
}

.smh-product-media,
.smh-product-summary,
.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  border: 1px solid #dbe4f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 38px rgba(16, 24, 39, 0.08) !important;
}

.smh-product-media {
  padding: 16px !important;
}

.smh-product-main-image {
  aspect-ratio: 16 / 9 !important;
  max-height: 560px !important;
  border: 1px solid #dfe6f1 !important;
  background: #eef3f8 !important;
}

.smh-product-main-image img,
.smh-product-main-image picture {
  object-fit: contain !important;
  background: #eef3f8 !important;
}

.smh-product-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 12px !important;
}

.smh-product-gallery .smh-lightbox-link,
.smh-preview-thumbs .smh-lightbox-link {
  aspect-ratio: 16 / 10 !important;
  border-color: #dfe6f1 !important;
  background: #f4f7fb !important;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.smh-product-gallery .smh-lightbox-link:hover,
.smh-preview-thumbs .smh-lightbox-link:hover {
  border-color: #1f58b8 !important;
  box-shadow: 0 10px 24px rgba(31, 88, 184, 0.16) !important;
  transform: translateY(-2px) !important;
}

.smh-product-gallery img,
.smh-preview-thumbs img {
  object-fit: contain !important;
  background: #f4f7fb !important;
}

.smh-product-summary {
  position: sticky !important;
  top: 18px !important;
  padding: 28px !important;
}

.smh-product-category {
  display: none !important;
}

.smh-product-badges {
  margin-top: 0 !important;
}

.smh-product-badges span {
  border-radius: 999px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  text-transform: none !important;
}

.smh-product-summary h1 {
  margin-top: 18px !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.08 !important;
}

.smh-product-price-large {
  margin-top: 10px !important;
  font-size: 32px !important;
}

.smh-product-short {
  margin-top: 14px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.smh-product-actions {
  border-top: 0 !important;
  margin-top: 20px !important;
  padding-top: 0 !important;
}

.smh-product-actions form.cart {
  align-items: center !important;
}

.smh-product-actions .single_add_to_cart_button,
.smh-product-actions .button,
.smh-product-actions a.button {
  min-height: 48px !important;
  border-radius: 6px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  font-weight: 900 !important;
}

.smh-product-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.smh-product-facts div {
  background: #f6f9fd !important;
}

.smh-product-included {
  background: #f9fbfe !important;
}

.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  padding: 28px !important;
}

.smh-product-details-content {
  max-width: 940px !important;
  color: #344054 !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.smh-product-details-content h2,
.smh-product-details-content h3 {
  color: #172033 !important;
  line-height: 1.2 !important;
}

.smh-product-preview-grid {
  align-items: start !important;
}

.smh-preview-thumbs {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

@media (max-width: 980px) {
  .smh-single-product .smh-wrap {
    width: min(100% - 28px, 760px) !important;
  }

  .smh-product-shell {
    grid-template-columns: 1fr !important;
  }

  .smh-product-summary {
    position: static !important;
  }

  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .smh-product-media,
  .smh-product-summary,
  .smh-product-details-panel,
  .smh-product-preview-panel,
  .smh-product-reviews-panel,
  .smh-related-products {
    padding: 16px !important;
  }

  .smh-product-summary h1 {
    font-size: 28px !important;
  }

  .smh-product-facts,
  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: 1fr !important;
  }
}

/* Custom login, signup, and account pages. */
.smh-auth-panel {
  width: min(560px, calc(100% - 32px)) !important;
  margin: 44px auto 76px !important;
  padding: clamp(24px, 4vw, 40px) !important;
  border: 1px solid #dbe4f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 54px rgba(16, 24, 39, 0.11) !important;
  color: #172033 !important;
}

.smh-auth-kicker {
  display: inline-flex !important;
  margin-bottom: 12px !important;
  color: #12a87b !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.smh-auth-panel h1 {
  margin: 0 0 12px !important;
  color: #172033 !important;
  font-size: clamp(30px, 5vw, 46px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.smh-auth-panel p {
  margin: 0 0 18px !important;
  color: #667085 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

.smh-auth-form {
  display: grid !important;
  gap: 16px !important;
  margin-top: 24px !important;
}

.smh-auth-form label {
  display: grid !important;
  gap: 7px !important;
  margin: 0 !important;
  color: #172033 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.smh-auth-form input {
  width: 100% !important;
  min-height: 50px !important;
  border: 1px solid #d8dde6 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #172033 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  padding: 12px 14px !important;
  box-shadow: none !important;
  outline: none !important;
}

.smh-auth-form input:focus {
  border-color: #1f58b8 !important;
  box-shadow: 0 0 0 3px rgba(31, 88, 184, 0.13) !important;
}

.smh-auth-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 10px !important;
  color: #475467 !important;
  font-weight: 800 !important;
}

.smh-auth-check input {
  width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
}

.smh-auth-form button,
.smh-auth-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #22c348 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  padding: 14px 22px !important;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(34, 195, 72, 0.22) !important;
}

.smh-auth-form button:hover,
.smh-auth-button:hover {
  background: #19ad3d !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.smh-auth-button-muted {
  background: #1f58b8 !important;
  box-shadow: 0 10px 20px rgba(31, 88, 184, 0.18) !important;
}

.smh-auth-button-muted:hover {
  background: #174da3 !important;
}

.smh-auth-button-danger {
  background: #eb2b6e !important;
  box-shadow: 0 10px 20px rgba(235, 43, 110, 0.18) !important;
}

.smh-auth-button-danger:hover {
  background: #d81f5f !important;
}

.smh-auth-notice {
  margin: 20px 0 0 !important;
  border-radius: 6px !important;
  padding: 13px 15px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

.smh-auth-notice-error {
  border: 1px solid #fecdd3 !important;
  background: #fff1f2 !important;
  color: #be123c !important;
}

.smh-auth-switch {
  margin: 22px 0 0 !important;
  text-align: center !important;
}

.smh-auth-switch a {
  color: #1f58b8 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.smh-auth-switch a:hover {
  text-decoration: underline !important;
}

.smh-account-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

@media (max-width: 640px) {
  .smh-auth-panel {
    margin-top: 24px !important;
    margin-bottom: 48px !important;
  }

  .smh-account-actions {
    display: grid !important;
  }
}

/* Home custom request and dynamic price slider. */
.smh-home-tools {
  padding: 30px 0 8px !important;
  background: #f4f6fa !important;
}

.smh-home-tools-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.smh-custom-request-card,
.smh-price-filter-card {
  border: 1px solid #dbe4f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  padding: clamp(22px, 3vw, 30px) !important;
  box-shadow: 0 16px 40px rgba(16, 24, 39, 0.08) !important;
}

.smh-custom-request-card {
  display: grid !important;
  align-content: center !important;
  min-height: 260px !important;
}

.smh-price-filter-card {
  position: relative !important;
  align-self: start !important;
  padding: 24px !important;
}

.smh-custom-request-card > span,
.smh-price-filter-card > span {
  display: inline-flex !important;
  margin-bottom: 9px !important;
  color: #12a87b !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.smh-custom-request-card h2,
.smh-price-filter-card h2 {
  margin: 0 0 10px !important;
  color: #172033 !important;
  font-size: clamp(25px, 3vw, 34px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.smh-price-filter-card h2 {
  font-size: 28px !important;
}

.smh-custom-request-card p {
  max-width: 680px !important;
  margin: 0 0 20px !important;
  color: #667085 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

.smh-custom-request-card a,
.smh-price-filter-card button,
.smh-custom-request-actions button,
.smh-custom-request-actions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: max-content !important;
  max-width: 100% !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #1f58b8 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  padding: 13px 18px !important;
  text-decoration: none !important;
}

.smh-custom-request-card a:hover,
.smh-price-filter-card button:hover,
.smh-custom-request-actions button:hover,
.smh-custom-request-actions a:hover {
  background: #174da3 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.smh-price-values {
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin: 18px 0 14px !important;
}

.smh-price-values strong {
  display: inline-flex !important;
  min-width: 74px !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #f72c74 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  padding: 9px 12px !important;
}

.smh-range-wrap {
  position: relative !important;
  min-height: 44px !important;
  margin: 6px 0 14px !important;
}

.smh-range-wrap::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 19px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #1f58b8, #12a87b, #f72c74) !important;
}

.smh-range {
  position: absolute !important;
  left: 0 !important;
  top: 7px !important;
  width: 100% !important;
  height: 30px !important;
  margin: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.smh-range::-webkit-slider-thumb {
  width: 24px !important;
  height: 24px !important;
  border: 4px solid #ffffff !important;
  border-radius: 50% !important;
  background: #172033 !important;
  box-shadow: 0 4px 12px rgba(16, 24, 39, 0.28) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  -webkit-appearance: none !important;
}

.smh-range::-moz-range-thumb {
  width: 18px !important;
  height: 18px !important;
  border: 4px solid #ffffff !important;
  border-radius: 50% !important;
  background: #172033 !important;
  box-shadow: 0 4px 12px rgba(16, 24, 39, 0.28) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.smh-price-inputs {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.smh-price-inputs label {
  display: grid !important;
  gap: 6px !important;
  color: #172033 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.smh-price-inputs input {
  width: 100% !important;
  min-height: 44px !important;
  border: 1px solid #d8dde6 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #172033 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  padding: 10px 12px !important;
}

.smh-price-filter-card button {
  width: 100% !important;
  background: #22c348 !important;
}

.smh-price-filter-card button:hover {
  background: #19ad3d !important;
}

/* Custom request page form. */
.smh-custom-request-panel {
  width: min(1040px, calc(100% - 32px)) !important;
  margin: 44px auto 76px !important;
  padding: clamp(24px, 4vw, 42px) !important;
  border: 1px solid #dbe4f0 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 54px rgba(16, 24, 39, 0.1) !important;
  color: #172033 !important;
}

.smh-custom-request-kicker {
  display: inline-flex !important;
  margin-bottom: 12px !important;
  color: #12a87b !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.smh-custom-request-panel h1 {
  margin: 0 0 12px !important;
  color: #172033 !important;
  font-size: clamp(32px, 5vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
}

.smh-custom-request-panel p {
  max-width: 760px !important;
  margin: 0 0 22px !important;
  color: #667085 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

.smh-custom-request-form {
  display: grid !important;
  gap: 18px !important;
  margin-top: 24px !important;
}

.smh-custom-request-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.smh-custom-request-form label {
  display: grid !important;
  gap: 7px !important;
  color: #172033 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.smh-custom-request-form input,
.smh-custom-request-form select,
.smh-custom-request-form textarea {
  width: 100% !important;
  min-height: 50px !important;
  border: 1px solid #d8dde6 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #172033 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 12px 14px !important;
}

.smh-custom-request-form textarea {
  min-height: 160px !important;
  resize: vertical !important;
}

.smh-custom-request-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.smh-custom-request-actions button {
  background: #22c348 !important;
}

.smh-custom-request-actions button:hover {
  background: #19ad3d !important;
}

.smh-custom-request-actions a {
  background: #16a6b6 !important;
}

.smh-custom-request-actions a:hover {
  background: #108d9b !important;
}

@media (max-width: 820px) {
  .smh-home-tools-grid,
  .smh-home-products-layout,
  .smh-custom-request-grid {
    grid-template-columns: 1fr !important;
  }

  .smh-price-sidebar {
    position: static !important;
  }

  .smh-custom-request-card {
    min-height: 0 !important;
  }
}

@media (max-width: 520px) {
  .smh-price-inputs,
  .smh-custom-request-actions {
    grid-template-columns: 1fr !important;
  }

  .smh-custom-request-actions,
  .smh-custom-request-actions button,
  .smh-custom-request-actions a,
  .smh-custom-request-card a {
    width: 100% !important;
  }
}

/* Final six-item homepage section layout. */
.smh-home-collections .smh-product-grid,
.smh-recent-projects .smh-product-grid,
.smh-products .smh-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
  .smh-home-collections .smh-product-grid,
  .smh-recent-projects .smh-product-grid,
  .smh-products .smh-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .smh-home-collections .smh-product-grid,
  .smh-recent-projects .smh-product-grid,
  .smh-products .smh-product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Six-item homepage sections. */
.smh-home-collections .smh-product-grid,
.smh-recent-projects .smh-product-grid,
.smh-products .smh-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
  .smh-home-collections .smh-product-grid,
  .smh-recent-projects .smh-product-grid,
  .smh-products .smh-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .smh-home-collections .smh-product-grid,
  .smh-recent-projects .smh-product-grid,
  .smh-products .smh-product-grid {
    grid-template-columns: 1fr !important;
  }
}

.smh-how-app-page {
  width: min(1040px, calc(100% - 32px));
  margin: 42px auto 64px;
  color: #172033;
}

.smh-how-hero {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  padding: 34px;
}

.smh-how-hero span {
  color: #174da3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.smh-how-hero h1 {
  margin: 8px 0 12px;
  color: #172033;
  font-size: 42px;
  line-height: 1.1;
}

.smh-how-hero p {
  max-width: 760px;
  color: #667085;
  font-size: 17px;
  line-height: 1.7;
}

.smh-how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.smh-how-grid article {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  padding: 24px;
}

.smh-how-grid h2 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 21px;
}

.smh-how-grid p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

.smh-how-ai-summary,
.smh-how-section {
  margin-top: 20px;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(16, 24, 39, 0.06);
}

.smh-how-ai-summary {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
}

.smh-how-ai-summary span,
.smh-how-section-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #12a87b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.smh-how-ai-summary h2,
.smh-how-section-head h2 {
  margin: 0 0 10px;
  color: #172033;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.smh-how-ai-summary p,
.smh-how-section-head p {
  max-width: 820px;
  margin: 0;
  color: #667085;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.smh-how-checklist,
.smh-how-glossary,
.smh-how-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.smh-how-checklist span,
.smh-how-glossary article,
.smh-how-faq article {
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: #f8fbff;
  padding: 16px;
}

.smh-how-checklist span {
  color: #172033;
  font-size: 15px;
  font-weight: 800;
}

.smh-how-checklist span::before {
  content: "+";
  display: inline-flex;
  margin-right: 8px;
  color: #12a87b;
  font-weight: 900;
}

.smh-how-glossary h3,
.smh-how-faq h3 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 18px;
  font-weight: 900;
}

.smh-how-glossary p,
.smh-how-faq p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.smh-how-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.smh-how-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
}

.smh-how-table th,
.smh-how-table td {
  border-bottom: 1px solid #dbe4f0;
  padding: 14px;
  color: #172033;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.smh-how-table th {
  background: #1f58b8;
  color: #ffffff;
  font-weight: 900;
}

.smh-how-table tr:last-child td {
  border-bottom: 0;
}

.smh-how-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.smh-how-searches a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: #f8fbff;
  color: #1f58b8;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.smh-how-searches a:hover {
  border-color: #1f58b8;
  background: #eef6ff;
}

@media (max-width: 720px) {
  .smh-how-hero h1 {
    font-size: 32px;
  }

  .smh-how-grid,
  .smh-how-checklist,
  .smh-how-glossary,
  .smh-how-faq {
    grid-template-columns: 1fr;
  }

  .smh-how-hero,
  .smh-how-ai-summary,
  .smh-how-section {
    padding: 22px;
  }
}

.smh-trust-footer {
  background:
    linear-gradient(rgba(235, 43, 110, 0.92), rgba(235, 43, 110, 0.92)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(119, 24, 70, 0.18) 0 1px, transparent 1px 6px),
    #eb2b6e;
  color: #ffffff;
  padding: 46px 0;
}

.smh-trust-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.smh-trust-footer span {
  color: #ffe7ef;
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(120, 20, 62, 0.28);
  text-transform: uppercase;
}

.smh-trust-footer h2 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.25;
}

.smh-trust-footer p {
  max-width: 720px;
  margin: 0;
  color: #fff2f6;
  font-size: 15px;
  line-height: 1.7;
}

.smh-trust-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smh-trust-footer li {
  position: relative;
  padding-left: 28px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(120, 20, 62, 0.22);
}

.smh-trust-footer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 4px rgba(235, 43, 110, 0.45), 0 2px 10px rgba(120, 20, 62, 0.25);
}

@media (max-width: 760px) {
  .smh-trust-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Header and hero refinements requested after visual review. */
.smh-laurel {
  display: none !important;
}

.smh-hero-inner {
  min-height: 360px;
  padding-top: 42px;
}

.smh-hero-inner h1 {
  width: min(760px, calc(100% - 32px));
  margin-bottom: 28px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
}

.smh-platform-icons {
  gap: 44px;
  margin-top: 25px;
}

.smh-platform {
  position: relative;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.smh-platform:hover,
.smh-platform:focus {
  transform: translateY(-4px);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.13), 0 12px 24px rgba(0, 0, 0, 0.18);
}

.smh-platform::before,
.smh-platform::after {
  content: "";
  position: absolute;
}

.smh-flutter-games {
  background: #2fb1ee;
}

.smh-flutter-games::before {
  width: 31px;
  height: 47px;
  background: #ffffff;
  clip-path: polygon(50% 0, 100% 0, 50% 50%, 100% 100%, 50% 100%, 0 50%);
  transform: rotate(-45deg);
}

.smh-flutter-games::after {
  width: 26px;
  height: 17px;
  background: rgba(255, 255, 255, 0.82);
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%);
  transform: translate(9px, 14px) rotate(-45deg);
}

.smh-flutter-apps {
  background: #ffc414;
}

.smh-flutter-apps::before {
  width: 34px;
  height: 46px;
  border: 4px solid #ffffff;
  border-radius: 8px;
}

.smh-flutter-apps::after {
  bottom: 19px;
  width: 16px;
  height: 4px;
  border-radius: 99px;
  background: #ffffff;
}

.smh-unity-games {
  background: #c2255b;
}

.smh-unity-games::before {
  width: 43px;
  height: 43px;
  background: #ffffff;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.smh-unity-games::after {
  width: 25px;
  height: 25px;
  background: #c2255b;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

@media (max-width: 640px) {
  .smh-hero-inner h1 {
    font-size: 27px;
  }

  .smh-platform-icons {
    gap: 18px;
  }
}

body {
  background: #ffffff;
  color: var(--smh-ink);
}

a,
.entry-content p a,
.comment-content p a,
.woocommerce-LoopProduct-link {
  color: var(--smh-primary);
}

a:hover,
a:focus,
.entry-content p a:hover,
.entry-content p a:focus {
  color: var(--smh-primary-dark);
}

.site-header,
.main-header {
  border-bottom: 1px solid var(--smh-line);
}

.site-header .site-branding .site-title,
.site-header .site-branding .site-title a {
  color: var(--smh-ink);
  letter-spacing: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: rgba(31, 122, 236, 0.28);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.10);
  transform: translateY(-2px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--smh-ink);
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  padding-left: 16px;
  padding-right: 16px;
}

.woocommerce ul.products li.product .price {
  color: var(--smh-accent);
  font-weight: 700;
  padding-left: 16px;
  padding-right: 16px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 6px;
  background: var(--smh-primary);
  color: #ffffff;
  font-weight: 700;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--smh-primary-dark);
  color: #ffffff;
}

.woocommerce span.onsale {
  min-height: auto;
  min-width: auto;
  border-radius: 6px;
  background: var(--smh-accent);
  line-height: 1;
  padding: 8px 10px;
}

.product_meta,
.woocommerce-product-details__short-description {
  color: var(--smh-muted);
}

.woocommerce div.product form.cart {
  border-top: 1px solid var(--smh-line);
  border-bottom: 1px solid var(--smh-line);
  padding: 18px 0;
}

.sellmyapphub-digital-note {
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  background: var(--smh-surface);
  color: var(--smh-muted);
  padding: 14px 16px;
}

@media (max-width: 767px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sellmyapphub-front {
  --smh-reference-pink: #c0245c;
  --smh-reference-hero: #f72c74;
  --smh-reference-green: #2dbc4a;
  --smh-reference-logo-green: #63b72f;
  --smh-reference-logo-red: #d45370;
}

.sellmyapphub-front {
  background: #f1f1f1;
  color: var(--smh-ink);
  font-family: 'Poppins', sans-serif;
}

.sellmyapphub-storefront-page .site-header,
.sellmyapphub-custom-page .site-header,
.sellmyapphub-custom-page .section-banner,
.sellmyapphub-custom-page .bosa-header,
.sellmyapphub-storefront-page .section-banner,
.sellmyapphub-storefront-page .bosa-header {
  display: none !important;
}

.sellmyapphub-custom-page {
  background:
    linear-gradient(180deg, rgba(235, 43, 110, 0.08), rgba(241, 244, 248, 0) 310px),
    #f4f6fa;
}

.smh-subpage-homebar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(219, 228, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.smh-subpage-homebutton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(235, 43, 110, 0.18);
  border-radius: 8px;
  background: #ffffff;
  padding: 8px 18px;
  box-shadow: 0 12px 28px rgba(235, 43, 110, 0.14);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.smh-subpage-homebutton:hover,
.smh-subpage-homebutton:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(235, 43, 110, 0.2);
  text-decoration: none;
}

.smh-subpage-homebutton .smh-logo-word {
  font-size: 32px;
  line-height: 1;
}

.smh-subpage-homebutton .smh-logo-word i {
  font-size: 18px;
}

.sellmyapphub-custom-page #content,
.sellmyapphub-custom-page .site-content {
  padding-top: 22px;
}

.sellmyapphub-custom-page .content-area,
.sellmyapphub-custom-page .site-main,
.sellmyapphub-custom-page article.page,
.sellmyapphub-custom-page article.post {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.smh-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.smh-topline {
  background: #ffffff;
  border-bottom: 1px solid var(--smh-line);
  font-size: 13px;
}

.smh-topline .smh-wrap,
.smh-brandbar-grid,
.smh-categorybar-grid {
  display: flex;
  align-items: center;
}

.smh-topline .smh-wrap {
  justify-content: space-between;
  min-height: 46px;
  gap: 20px;
}

.smh-topline strong {
  color: #174da3;
  font-size: 12px;
  text-transform: uppercase;
}

.smh-small-nav,
.smh-main-cats,
.smh-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.smh-small-nav a,
.smh-main-cats a,
.smh-header-actions a {
  color: var(--smh-ink);
  font-weight: 600;
  text-transform: uppercase;
}

.smh-brandbar {
  background: #ffffff;
  padding: 28px 0 20px;
}

.smh-brandbar-grid {
  justify-content: space-between;
  gap: 28px;
}

.smh-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--smh-ink);
  min-width: 210px;
}

.smh-logo-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #174da3;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
}

.smh-logo strong,
.smh-logo em {
  display: block;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
}

.smh-logo strong {
  font-size: 25px;
}

.smh-logo em {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 6px;
}

.smh-ad-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-height: 66px;
  border-radius: 2px;
  background: linear-gradient(90deg, #a9c6ef 0%, #f7d1d0 58%, #febd69 100%);
  color: var(--smh-ink);
  text-transform: uppercase;
}

.smh-ad-strip span {
  border: 3px solid #243044;
  padding: 8px 32px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 6px;
}

.smh-ad-strip strong {
  font-size: 12px;
}

.smh-header-actions {
  min-width: 180px;
  justify-content: flex-end;
}

.smh-categorybar {
  background: #ffffff;
  border-top: 1px solid var(--smh-line);
  border-bottom: 1px solid var(--smh-line);
}

.smh-categorybar-grid {
  min-height: 44px;
}

.smh-all-categories {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 24px;
  background: #174da3;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-main-cats {
  flex: 1;
  padding-left: 20px;
}

.smh-main-cats a {
  font-size: 13px;
}

.smh-search {
  display: flex;
  align-items: center;
  align-self: stretch;
  border-left: 1px solid var(--smh-line);
}

.smh-search input {
  width: 220px;
  height: 100%;
  border: 0;
  padding: 0 16px;
  color: var(--smh-muted);
}

.smh-search button {
  align-self: stretch;
  border: 0;
  border-left: 1px solid var(--smh-line);
  background: #ffffff;
  color: var(--smh-ink);
  padding: 0 18px;
  font-weight: 800;
}

.smh-hero {
  padding: 38px 0 22px;
}

.smh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 20px;
}

.smh-hero-main,
.smh-promo,
.smh-product-card,
.smh-benefit-grid {
  border-radius: 6px;
  overflow: hidden;
}

.smh-hero-main {
  display: block;
  min-height: 360px;
  background: #f8b21d;
}

.smh-hero-main picture,
.smh-hero-main img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.smh-hero-featured-game {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 1.05fr);
  gap: 24px;
  align-items: center;
  min-height: 360px;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #ffd233 0%, #ff8b3d 43%, #0b66e4 100%);
  color: #ffffff;
  padding: 34px 38px;
  position: relative;
}

.smh-hero-featured-game::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  pointer-events: none;
}

.smh-featured-copy,
.smh-featured-phone-stack {
  position: relative;
  z-index: 1;
}

.smh-featured-copy {
  display: grid;
  gap: 12px;
}

.smh-featured-copy span {
  justify-self: start;
  border-radius: 4px;
  background: #174da3;
  color: #ffffff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-featured-copy strong {
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 5px 16px rgba(23, 32, 51, 0.25);
}

.smh-featured-copy em {
  max-width: 420px;
  color: #ffffff;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.smh-featured-copy b {
  justify-self: start;
  border-radius: 6px;
  background: #ffffff;
  color: #174da3;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.smh-featured-phone-stack {
  display: grid;
  place-items: center;
  min-height: 318px;
}

.smh-featured-phone-stack img {
  grid-area: 1 / 1;
  width: min(31%, 150px);
  min-height: 0;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(23, 32, 51, 0.24);
  object-fit: cover;
  animation: smhFeaturedFloat 6s ease-in-out infinite;
}

.smh-featured-phone-stack img:nth-child(1) {
  transform: translateX(-86px) rotate(-8deg);
}

.smh-featured-phone-stack img:nth-child(2) {
  width: min(36%, 174px);
  z-index: 2;
  animation-delay: -1.8s;
}

.smh-featured-phone-stack img:nth-child(3) {
  transform: translateX(86px) rotate(8deg);
  animation-delay: -3.4s;
}

@keyframes smhFeaturedFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

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

.smh-promo {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 16px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}

.smh-promo-product {
  isolation: isolate;
}

.smh-promo::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border: 8px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.smh-promo-product::after {
  z-index: -1;
}

.smh-promo-product img {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 38%;
  max-height: 118px;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 12px 26px rgba(23, 32, 51, 0.22);
  transform: rotate(4deg);
  transition: transform 180ms ease;
}

.smh-promo-product:hover img,
.smh-promo-product:focus img {
  transform: translateY(-4px) rotate(2deg);
}

.smh-promo strong {
  position: relative;
  z-index: 1;
  max-width: 64%;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
}

.smh-promo span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
}

.smh-promo .smh-promo-label {
  justify-self: start;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 8px;
  font-size: 10px;
}

.smh-promo-pink {
  background: #ef5f79;
}

.smh-promo-cyan {
  background: #09abc1;
}

.smh-promo-orange {
  background: #f6a83c;
}

.smh-promo-purple {
  background: #9a7194;
}

.smh-benefits {
  display: none;
}

.smh-filter-strip {
  padding: 0 0 22px;
  background: #f1f1f1;
}

.smh-filter-strip .smh-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.smh-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(23, 77, 163, 0.18);
  border-radius: 6px;
  background: #ffffff;
  color: var(--smh-ink);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-filter-chip:hover,
.smh-filter-chip:focus {
  background: #174da3;
  color: #ffffff;
}

.smh-recent-projects {
  padding: 8px 0 18px;
}

.smh-recent-projects .smh-section-title h2,
.smh-product-preview-panel .smh-section-title h2,
.smh-product-reviews-panel .smh-section-title h2 {
  position: relative;
  margin: 0;
  padding-bottom: 12px;
  color: var(--smh-ink);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-recent-projects .smh-section-title h2::after,
.smh-product-preview-panel .smh-section-title h2::after,
.smh-product-reviews-panel .smh-section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 96px;
  height: 2px;
  background: #174da3;
}

.smh-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid var(--smh-line);
}

.smh-benefit-grid div {
  padding: 22px 24px;
  border-right: 1px solid var(--smh-line);
}

.smh-benefit-grid div:last-child {
  border-right: 0;
}

.smh-benefit-grid strong,
.smh-benefit-grid span {
  display: block;
}

.smh-benefit-grid strong {
  color: var(--smh-ink);
  font-size: 14px;
  text-transform: uppercase;
}

.smh-benefit-grid span {
  margin-top: 5px;
  color: var(--smh-muted);
  font-size: 13px;
}

.smh-products {
  padding: 4px 0 58px;
}

.smh-home-collections {
  padding: 4px 0 20px;
}

.smh-home-products-layout {
  display: grid !important;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: start !important;
}

.smh-price-sidebar {
  position: sticky !important;
  top: 18px !important;
  align-self: start !important;
  z-index: 2 !important;
}

.smh-price-sidebar .smh-price-filter-card {
  width: 100% !important;
  margin: 30px 0 0 !important;
}

.smh-price-sidebar .smh-sidebar-request-card {
  width: 100% !important;
  min-height: 0 !important;
  margin: 18px 0 0 !important;
  padding: 24px !important;
}

.smh-price-sidebar .smh-sidebar-request-card h2 {
  font-size: 26px !important;
}

.smh-price-sidebar .smh-sidebar-request-card p {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.smh-home-products-main {
  min-width: 0 !important;
}

@media (max-width: 980px) {
  .smh-home-products-layout {
    grid-template-columns: 1fr !important;
  }

  .smh-price-sidebar {
    position: static !important;
  }

  .smh-price-sidebar .smh-price-filter-card {
    margin-top: 24px !important;
  }
}

.smh-home-collection {
  margin-top: 30px;
}

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

.smh-collection-grid .smh-product-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.smh-collection-grid .smh-product-art {
  min-height: 0;
  aspect-ratio: 16 / 11;
}

.smh-collection-grid .smh-product-body {
  min-height: 170px;
  justify-content: flex-start;
}

.smh-collection-grid .smh-product-body strong {
  min-height: 44px;
}

.smh-home-collection-flash-sale .smh-card-badge {
  background: #ef5f79;
}

.smh-home-collection-free-files .smh-card-badge {
  background: #174da3;
}

.smh-home-collection-under-15 .smh-card-badge {
  background: #f6a83c;
  color: #172033;
}

.smh-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #d2d5db;
  margin-bottom: 28px;
}

.smh-section-title h1 {
  position: relative;
  margin: 0;
  padding: 0 0 14px;
  color: #111111;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-section-title h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 110px;
  height: 2px;
  background: #174da3;
}

.smh-section-title a {
  margin-bottom: 15px;
  color: var(--smh-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-product-section {
  margin-top: 34px;
}

.smh-product-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 16px;
}

.smh-product-section-head span {
  color: #174da3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-product-section-head h2 {
  margin: 0;
  color: var(--smh-ink);
  font-size: 24px;
  font-weight: 800;
}

.smh-see-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  background: #174da3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-see-all:hover,
.smh-see-all:focus {
  background: var(--smh-primary-dark);
  color: #ffffff;
}

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

.smh-product-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 168px;
  background: #ffffff;
  border: 1px solid var(--smh-line);
  color: var(--smh-ink);
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.smh-product-card:hover,
.smh-product-card:focus {
  color: var(--smh-ink);
  border-color: rgba(31, 122, 236, 0.28);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.13);
  transform: translateY(-2px);
}

.smh-product-art {
  display: grid;
  place-items: center;
  min-height: 168px;
  background: linear-gradient(145deg, #174da3, #2e92ff);
  position: relative;
}

.smh-card-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  border-radius: 4px;
  background: #12a87b;
  color: #ffffff;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.smh-card-views {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  padding: 4px 9px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.smh-card-purchases {
  position: absolute;
  right: 10px;
  top: 46px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(18, 168, 123, 0.9);
  color: #ffffff;
  padding: 4px 9px;
  box-shadow: 0 8px 20px rgba(18, 168, 123, 0.28);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.smh-eye {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 999px / 720px;
}

.smh-eye::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.smh-cart-mini {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
}

.smh-cart-mini::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -6px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-18deg);
}

.smh-cart-mini::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -5px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}

.smh-product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smh-code-lines {
  width: 72px;
  height: 58px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
  position: relative;
}

.smh-code-lines::before,
.smh-code-lines::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 5px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 0 rgba(255, 255, 255, 0.85), 0 28px 0 rgba(255, 255, 255, 0.62);
}

.smh-code-lines::before {
  top: 13px;
}

.smh-code-lines::after {
  display: none;
}

.smh-product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px;
}

.smh-product-body strong {
  color: var(--smh-ink);
  font-size: 17px;
  line-height: 1.25;
}

.smh-product-body em {
  margin-top: 8px;
  color: var(--smh-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.smh-product-price {
  margin-top: 14px;
  color: var(--smh-accent);
  font-size: 19px;
  font-weight: 800;
}

.smh-tone-pink .smh-product-art {
  background: linear-gradient(145deg, #ef5f79, #ff8b65);
}

.smh-tone-orange .smh-product-art {
  background: linear-gradient(145deg, #f6a83c, #ffd25e);
}

.smh-tone-green .smh-product-art {
  background: linear-gradient(145deg, #12a87b, #71d68b);
}

.smh-tone-purple .smh-product-art {
  background: linear-gradient(145deg, #8a6bc2, #c68ac9);
}

.sellmyapphub-product-page .site-header {
  border-bottom: 1px solid var(--smh-line);
}

.smh-single-product {
  background: #f1f1f1;
  padding: 34px 0 64px;
}

.smh-product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--smh-muted);
  font-size: 13px;
}

.smh-product-breadcrumb a {
  color: #174da3;
  font-weight: 700;
}

.smh-product-breadcrumb strong {
  color: var(--smh-ink);
}

.smh-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 30px;
  align-items: start;
}

.smh-product-media,
.smh-product-summary,
.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(16, 24, 39, 0.08);
}

.smh-product-media {
  padding: 16px;
}

.smh-product-summary {
  position: sticky;
  top: 18px;
  padding: 28px;
}

.smh-product-main-image {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #eef3f8;
  overflow: hidden;
}

.smh-product-main-image picture,
.smh-product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #eef3f8;
}

.smh-product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.smh-product-gallery span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--smh-line);
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.smh-product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f7fb;
}

.smh-lightbox-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  cursor: zoom-in;
}

.smh-product-gallery .smh-lightbox-link,
.smh-preview-thumbs .smh-lightbox-link {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #f4f7fb;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.smh-product-gallery .smh-lightbox-link:hover,
.smh-preview-thumbs .smh-lightbox-link:hover {
  border-color: #1f58b8;
  box-shadow: 0 10px 24px rgba(31, 88, 184, 0.16);
  transform: translateY(-2px);
}

.smh-preview-thumbs .smh-lightbox-link {
  aspect-ratio: 16 / 10;
}

.smh-lightbox-link img,
.smh-lightbox-link picture {
  display: block;
}

.smh-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 12, 24, 0.86);
  padding: 28px;
}

.smh-image-lightbox.is-open {
  display: flex;
}

.smh-image-lightbox img {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 96px);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.smh-image-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #172033;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.smh-gallery-placeholder {
  background: linear-gradient(145deg, #ef5f79, #ffb45c) !important;
}

.smh-gallery-placeholder-blue {
  background: linear-gradient(145deg, #174da3, #31b6e8) !important;
}

.smh-gallery-placeholder-green {
  background: linear-gradient(145deg, #12a87b, #71d68b) !important;
}

.smh-product-category,
.smh-product-category a {
  display: none;
  color: #174da3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.smh-product-badges span {
  border-radius: 999px;
  background: #1f58b8;
  color: #ffffff;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.smh-product-summary h1 {
  margin: 18px 0 14px;
  color: var(--smh-ink);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.08;
}

.smh-product-price-large {
  margin-top: 10px;
  color: var(--smh-accent);
  font-size: 32px;
  font-weight: 800;
}

.smh-product-short {
  margin-top: 14px;
  color: var(--smh-muted);
  font-size: 15px;
  line-height: 1.55;
}

.smh-product-actions {
  margin-top: 20px;
  padding-top: 0;
  border-top: 0;
}

.smh-product-actions form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.smh-product-actions .quantity input {
  min-height: 46px;
  border: 1px solid var(--smh-line);
  border-radius: 6px;
}

.smh-product-actions .single_add_to_cart_button {
  min-height: 48px;
  border-radius: 6px;
  background: #1f58b8;
  color: #ffffff;
  padding: 0 26px;
  font-weight: 900;
}

.smh-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.smh-product-facts div {
  border: 1px solid #dfe6f1;
  border-radius: 6px;
  background: #f6f9fd;
  padding: 12px;
}

.smh-product-facts .smh-product-views-fact {
  border-color: rgba(18, 168, 123, 0.26);
  background: rgba(18, 168, 123, 0.08);
}

.smh-product-facts .smh-product-purchases-fact {
  border-color: rgba(31, 85, 173, 0.26);
  background: rgba(31, 85, 173, 0.08);
}

.smh-product-facts strong,
.smh-product-facts span {
  display: block;
}

.smh-product-facts strong {
  color: var(--smh-ink);
  font-size: 12px;
  text-transform: uppercase;
}

.smh-product-facts span {
  margin-top: 4px;
  color: var(--smh-muted);
  font-size: 12px;
}

.smh-product-included {
  margin-top: 22px;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #f9fbfe;
  padding: 16px;
}

.smh-product-included h2,
.smh-requirements-box h3 {
  margin: 0 0 10px;
  color: var(--smh-ink);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-product-included ul,
.smh-requirements-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--smh-muted);
  font-size: 14px;
}

.smh-product-details-panel,
.smh-product-preview-panel,
.smh-product-reviews-panel,
.smh-related-products {
  margin-top: 28px;
  padding: 24px;
}

.smh-product-details-panel .smh-section-title,
.smh-product-preview-panel .smh-section-title,
.smh-product-reviews-panel .smh-section-title,
.smh-related-products .smh-section-title {
  margin-bottom: 20px;
}

.smh-product-details-panel .smh-section-title h2,
.smh-related-products .smh-section-title h2 {
  position: relative;
  margin: 0;
  padding-bottom: 12px;
  color: var(--smh-ink);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-product-details-panel .smh-section-title h2::after,
.smh-related-products .smh-section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 96px;
  height: 2px;
  background: #174da3;
}

.smh-product-details-content {
  max-width: 940px;
  color: #344054;
  font-size: 16px;
  line-height: 1.75;
}

.smh-product-details-content p:last-child {
  margin-bottom: 0;
}

.smh-product-preview-panel,
.smh-product-reviews-panel {
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: #ffffff;
}

.smh-product-reviews-panel .commentlist,
.smh-product-reviews-panel .comment-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smh-product-reviews-panel .comment,
.smh-product-reviews-panel .review {
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  background: #f9fbff;
  padding: 16px;
}

.smh-product-reviews-panel .comment-text,
.smh-product-reviews-panel .comment-content {
  color: var(--smh-muted);
  font-size: 14px;
  line-height: 1.7;
}

.smh-product-reviews-panel .meta,
.smh-product-reviews-panel .woocommerce-review__author {
  color: var(--smh-ink);
  font-weight: 800;
}


.smh-product-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
}

.smh-product-preview-copy h3 {
  margin: 0 0 10px;
  color: var(--smh-ink);
  font-size: 20px;
  font-weight: 800;
}

.smh-product-preview-copy p {
  color: var(--smh-muted);
  font-size: 15px;
  line-height: 1.7;
}

.smh-demo-button,
.smh-checkout-whatsapp,
.smh-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  background: #23b84a;
  color: #ffffff;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(35, 184, 74, 0.22);
  text-transform: uppercase;
}

.smh-demo-button:hover,
.smh-demo-button:focus,
.smh-checkout-whatsapp:hover,
.smh-checkout-whatsapp:focus,
.smh-info-button:hover,
.smh-info-button:focus {
  background: #0d8c66;
  color: #ffffff;
}

.smh-product-preview-media iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
}

.smh-preview-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.smh-preview-thumbs span {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--smh-surface);
}

.smh-preview-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f7fb;
}

.smh-requirements-box {
  margin-top: 22px;
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  background: var(--smh-surface);
  padding: 16px;
}

.smh-manual-payment-box,
.smh-code-delivery-email {
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  background: var(--smh-surface);
  padding: 16px;
}

.smh-manual-payment-box {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.smh-manual-payment-box > div {
  display: grid;
  gap: 7px;
}

.smh-manual-payment-box strong {
  color: var(--smh-ink);
  font-size: 13px;
  text-transform: uppercase;
}

.smh-manual-payment-box code {
  display: block;
  max-width: 100%;
  border: 1px solid var(--smh-line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--smh-ink);
  padding: 10px 12px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.smh-copy-payment {
  justify-self: start;
  border: 0;
  border-radius: 6px;
  background: #174da3;
  color: #ffffff;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}

.smh-payment-proof span,
.smh-proof-confirm span {
  color: var(--smh-muted);
  font-size: 13px;
  line-height: 1.5;
}

.smh-checkout-whatsapp {
  justify-self: start;
  margin-top: 8px;
}

.smh-proof-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 0;
}

.smh-proof-confirm input {
  margin-top: 5px;
}

.smh-code-delivery-email {
  margin: 18px 0;
}

.site-footer .site-info {
  display: none;
}

.site-footer,
.site-footer .site-footer-inner,
.site-footer .bottom-footer {
  background:
    linear-gradient(rgba(235, 43, 110, 0.94), rgba(235, 43, 110, 0.94)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(119, 24, 70, 0.16) 0 1px, transparent 1px 6px),
    #eb2b6e !important;
}

.smh-seo-footer-links {
  background:
    linear-gradient(rgba(235, 43, 110, 0.94), rgba(235, 43, 110, 0.94)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(119, 24, 70, 0.16) 0 1px, transparent 1px 6px),
    #eb2b6e;
  color: #ffffff;
  padding: 38px 0;
}

.smh-seo-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.smh-seo-footer-grid h2 {
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 14px;
  text-shadow: 0 2px 8px rgba(120, 20, 62, 0.25);
}

.smh-seo-footer-grid a {
  color: #ffffff !important;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  margin: 10px 0;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(120, 20, 62, 0.2);
}

.smh-seo-footer-grid a:hover {
  color: #fff7fb !important;
  text-decoration: underline;
}

.smh-arabic-footer-topics,
.smh-arabic-seo-page {
  direction: rtl;
  text-align: right;
}

.smh-arabic-footer-topics a {
  font-weight: 800;
}

.smh-arabic-seo-page .smh-info-grid section {
  text-align: right;
}

.smh-seo-footer-links,
.smh-seo-footer-links *,
.site-footer,
.site-footer * {
  color: #ffffff !important;
}

.smh-seo-landing > p {
  color: #536174;
  font-size: 19px;
  line-height: 1.65;
  max-width: 920px;
}

.smh-seo-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 24px 0 38px;
}

.smh-seo-product {
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(16, 24, 39, 0.08);
  color: #101827;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.smh-seo-product img {
  aspect-ratio: 16 / 10;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.smh-seo-product strong,
.smh-seo-product span {
  display: block;
  padding: 0 16px;
}

.smh-seo-product strong {
  font-size: 18px;
  line-height: 1.35;
  margin-top: 16px;
}

.smh-seo-product span {
  color: #12a87b;
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0 18px;
}

.smh-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.smh-guide-card {
  background: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(16, 24, 39, 0.08);
  color: #101827;
  display: block;
  padding: 22px;
  text-decoration: none;
}

.smh-guide-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.smh-guide-card span {
  color: #536174;
  display: block;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .smh-seo-footer-grid,
  .smh-seo-products,
  .smh-info-grid,
  .smh-steps,
  .smh-guides-grid {
    grid-template-columns: 1fr;
  }
}

.smh-floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: #12a87b;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 168, 123, 0.32);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-floating-whatsapp:hover,
.smh-floating-whatsapp:focus {
  background: #0d8c66;
  color: #ffffff;
}

.smh-info-page {
  width: min(1040px, calc(100% - 32px));
  margin: 42px auto 68px;
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 48px rgba(16, 24, 39, 0.09);
}

.smh-info-page h1 {
  margin: 0 0 18px;
  color: var(--smh-ink);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
}

.smh-info-page h1::after {
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eb2b6e, #23b84a);
  margin-top: 18px;
}

.smh-info-page h2 {
  color: #172033;
  font-size: 26px;
  line-height: 1.2;
  margin: 30px 0 14px;
}

.smh-info-page p {
  color: var(--smh-muted);
  font-size: 16px;
  line-height: 1.8;
}

.smh-info-page a:not(.smh-info-button):not(.smh-guide-card):not(.smh-seo-product) {
  color: #174da3;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

.smh-info-grid section {
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(16, 24, 39, 0.06);
}

.smh-info-grid h2,
.smh-info-grid h3 {
  margin: 0 0 8px;
  color: var(--smh-ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

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

.smh-steps section {
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(16, 24, 39, 0.06);
}

.smh-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #eb2b6e;
  color: #ffffff;
  font-weight: 900;
}

.smh-steps h2 {
  margin: 14px 0 8px;
  color: var(--smh-ink);
  font-size: 18px;
  font-weight: 800;
}

.smh-free-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.smh-free-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  background: var(--smh-surface);
  color: var(--smh-ink);
  padding: 16px;
}

.smh-free-card img,
.smh-free-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: linear-gradient(145deg, #174da3, #31b6e8);
}

.smh-free-placeholder-green {
  background: linear-gradient(145deg, #12a87b, #71d68b);
}

.smh-free-placeholder-pink {
  background: linear-gradient(145deg, #ef5f79, #ffb45c);
}

.smh-free-card strong {
  color: var(--smh-ink);
  font-size: 17px;
  line-height: 1.35;
}

.smh-free-card em {
  color: #12a87b;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 980px) {
  .smh-hero-grid,
  .smh-product-shell,
  .smh-product-preview-grid,
  .smh-info-grid,
  .smh-steps,
  .smh-free-grid {
    grid-template-columns: 1fr;
  }

  .smh-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .smh-product-summary {
    position: static;
  }

  .smh-product-gallery,
  .smh-preview-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smh-search {
    display: none;
  }
}

@media (max-width: 760px) {
  .smh-topline .smh-wrap,
  .smh-brandbar-grid,
  .smh-categorybar-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .smh-topline .smh-wrap {
    padding: 12px 0;
  }

  .smh-product-gallery,
  .smh-preview-thumbs,
  .smh-product-facts {
    grid-template-columns: 1fr;
  }

  .smh-small-nav,
  .smh-main-cats,
  .smh-header-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .smh-ad-strip,
  .smh-header-actions {
    display: none;
  }

  .smh-all-categories {
    justify-content: center;
    min-height: 48px;
  }

  .smh-main-cats {
    justify-content: center;
    padding: 14px 0;
  }

  .smh-hero-main,
  .smh-hero-main img {
    min-height: 240px;
  }

  .smh-hero-featured-game {
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 28px 24px;
  }

  .smh-featured-copy strong {
    font-size: 36px;
  }

  .smh-featured-phone-stack {
    min-height: 270px;
  }

  .smh-featured-phone-stack img {
    width: min(32%, 120px);
  }

  .smh-featured-phone-stack img:nth-child(2) {
    width: min(38%, 142px);
  }

  .smh-promo-grid,
  .smh-product-grid,
  .smh-benefit-grid {
    grid-template-columns: 1fr;
  }

  .smh-benefit-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--smh-line);
  }

  .smh-benefit-grid div:last-child {
    border-bottom: 0;
  }

  .smh-section-title,
  .smh-product-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .smh-product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .smh-collection-grid .smh-product-card {
    display: grid;
  }

  .smh-collection-grid .smh-product-art {
    aspect-ratio: auto;
    min-height: 168px;
  }

  .smh-collection-grid .smh-product-body,
  .smh-collection-grid .smh-product-body strong {
    min-height: 0;
  }

  .smh-product-summary h1 {
    font-size: 28px;
  }

  .smh-product-facts {
    grid-template-columns: 1fr;
  }
}

/* Final reference-style storefront overrides. */
.sellmyapphub-front .smh-brandbar {
  background: #ffffff;
  padding: 25px 0 26px;
}

.sellmyapphub-front .smh-brandbar-grid {
  display: grid;
  grid-template-columns: minmax(210px, 240px) minmax(280px, 420px) minmax(280px, 1fr);
  align-items: center;
  gap: 28px;
}

.sellmyapphub-front .smh-logo {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.smh-logo-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--smh-reference-logo-red);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.smh-logo-word strong,
.smh-logo-word i {
  color: var(--smh-reference-logo-green);
  font-style: normal;
}

.smh-logo-word i {
  margin-left: 3px;
  font-size: 26px;
}

.smh-top-search,
.smh-hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 59px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #ffffff;
}

.smh-top-search {
  height: 49px;
}

.smh-top-search input,
.smh-hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: #666666;
  font-size: 17px;
  padding: 0 19px;
}

.smh-top-search button,
.smh-hero-search button {
  position: relative;
  border: 0;
  border-left: 1px solid #d9d9d9;
  background: #ffffff;
}

.smh-top-search button::before,
.smh-hero-search button::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 2px solid #737373;
  border-radius: 50%;
}

.smh-top-search button::after,
.smh-hero-search button::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 33px;
  width: 17px;
  height: 2px;
  background: #737373;
  transform: rotate(45deg);
  transform-origin: left center;
}

.sellmyapphub-front .smh-header-actions {
  min-width: 0;
  justify-content: flex-end;
  gap: 28px;
}

.smh-cart-icon {
  position: relative;
  width: 42px;
  height: 36px;
}

.smh-cart-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 25px;
  height: 17px;
  border: 3px solid var(--smh-reference-green);
  border-top: 0;
  transform: skewX(-15deg);
}

.smh-cart-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--smh-reference-green);
  box-shadow: 24px 0 0 var(--smh-reference-green), -7px -26px 0 -1px var(--smh-reference-green);
}

.smh-login-link,
.smh-signup-button {
  color: var(--smh-reference-green);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.smh-signup-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  background: var(--smh-reference-green);
  color: #ffffff;
  padding: 0 24px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.smh-signup-button:hover,
.smh-signup-button:focus {
  color: #ffffff;
  background: #25a93f;
}

.sellmyapphub-front .smh-categorybar {
  background: var(--smh-reference-pink);
  border: 0;
}

.sellmyapphub-front .smh-categorybar-grid {
  min-height: 62px;
  justify-content: space-between;
}

.sellmyapphub-front .smh-main-cats {
  gap: 36px;
  padding-left: 0;
}

.sellmyapphub-front .smh-main-cats a,
.smh-sell-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-sell-link {
  white-space: nowrap;
}

.sellmyapphub-front .smh-hero {
  min-height: 390px;
  padding: 0;
  border-top: 4px solid rgba(255, 255, 255, 0.36);
  background-color: var(--smh-reference-hero);
  background-image:
    linear-gradient(rgba(72, 72, 72, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 72, 72, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 50%, transparent 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 50%, transparent 50%);
  background-size: 16px 16px, 16px 16px, 4px 4px, 4px 4px;
}

.smh-hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 390px;
  padding: 50px 16px 24px;
}

.smh-hero-inner h1 {
  width: min(620px, 100%);
  margin: 0 auto 31px;
  color: #ffffff;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.smh-laurel {
  position: absolute;
  top: 34px;
  width: 76px;
  height: 150px;
  opacity: 0.95;
}

.smh-laurel::before {
  content: "{";
  display: block;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 176px;
  font-weight: 400;
  line-height: 0.78;
}

.smh-laurel-left {
  left: calc(50% - 330px);
  transform: rotate(180deg);
}

.smh-laurel-right {
  right: calc(50% - 330px);
}

.smh-hero-search {
  width: min(520px, calc(100% - 32px));
  height: 50px;
}

.smh-platform-icons {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 25px;
}

.smh-platform {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.12);
}

.smh-ios {
  background: #27aeec;
}

.smh-unity {
  background: #c2255b;
  font-size: 42px;
}

.smh-android {
  background: #28c321;
  font-size: 42px;
}

.smh-assets {
  background: #ffc414;
}

.sellmyapphub-sell-page {
  background: #f5f6f8;
}

.smh-sell-app-panel {
  width: min(860px, calc(100% - 32px));
  margin: 46px auto;
  background: #ffffff;
  border: 1px solid var(--smh-line);
  border-radius: 8px;
  padding: 30px;
}

.smh-sell-app-panel h1,
.smh-sell-app-panel h2 {
  margin-top: 0;
  color: var(--smh-ink);
}

.smh-sell-app-form {
  display: grid;
  gap: 18px;
}

.smh-sell-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.smh-sell-app-form label {
  display: grid;
  gap: 7px;
  color: var(--smh-ink);
  font-weight: 700;
}

.smh-sell-app-form input,
.smh-sell-app-form select,
.smh-sell-app-form textarea {
  width: 100%;
  border: 1px solid #d8dde6;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--smh-ink);
}

.smh-sell-app-form textarea {
  min-height: 150px;
  resize: vertical;
}

.smh-sell-app-form button {
  justify-self: start;
  border: 0;
  border-radius: 4px;
  background: var(--smh-reference-green);
  color: #ffffff;
  padding: 13px 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-sell-app-notice {
  margin: 0 0 18px;
  border-radius: 6px;
  padding: 12px 14px;
  font-weight: 700;
}

.smh-sell-app-notice-success {
  background: #e8f8ed;
  color: #16802e;
}

.smh-sell-app-notice-error {
  background: #fff0f3;
  color: #b00032;
}

@media (max-width: 900px) {
  .sellmyapphub-front .smh-brandbar-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .smh-top-search {
    width: min(520px, 100%);
  }

  .sellmyapphub-front .smh-header-actions {
    justify-content: center;
  }

  .sellmyapphub-front .smh-categorybar-grid,
  .sellmyapphub-front .smh-main-cats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 12px 0;
  }

  .smh-laurel {
    display: none;
  }
}

@media (max-width: 640px) {
  .smh-logo-word {
    font-size: 34px;
  }

  .smh-logo-word i {
    font-size: 20px;
  }

  .smh-hero-inner h1 {
    font-size: 29px;
  }

  .smh-platform-icons {
    gap: 14px;
  }

  .smh-platform {
    width: 58px;
    height: 58px;
    font-size: 13px;
  }

  .smh-unity,
  .smh-android {
    font-size: 30px;
  }

  .smh-sell-app-grid {
    grid-template-columns: 1fr;
  }
}

/* End-of-file overrides for the revised platform icon hero. */
.smh-laurel {
  display: none !important;
}

.smh-hero-inner {
  min-height: 360px !important;
  padding-top: 42px !important;
}

.smh-hero-inner h1 {
  width: min(760px, calc(100% - 32px)) !important;
  margin-bottom: 28px !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.smh-platform-icons {
  gap: 44px !important;
  margin-top: 25px !important;
}

.smh-platform {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  transition: transform 160ms ease, box-shadow 160ms ease !important;
}

.smh-platform:hover,
.smh-platform:focus {
  transform: translateY(-4px) !important;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.13), 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

.smh-platform::before,
.smh-platform::after {
  content: "" !important;
  position: absolute !important;
  text-indent: 0 !important;
}

.smh-flutter-games {
  background: #2fb1ee !important;
}

.smh-flutter-games::before {
  width: 31px !important;
  height: 47px !important;
  background: #ffffff !important;
  clip-path: polygon(50% 0, 100% 0, 50% 50%, 100% 100%, 50% 100%, 0 50%) !important;
  transform: rotate(-45deg) !important;
}

.smh-flutter-games::after {
  width: 26px !important;
  height: 17px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  clip-path: polygon(0 0, 100% 0, 58% 100%, 0 100%) !important;
  transform: translate(9px, 14px) rotate(-45deg) !important;
}

.smh-flutter-apps {
  background: #ffc414 !important;
}

.smh-flutter-apps::before {
  width: 34px !important;
  height: 46px !important;
  border: 4px solid #ffffff !important;
  border-radius: 8px !important;
}

.smh-flutter-apps::after {
  bottom: 19px !important;
  width: 16px !important;
  height: 4px !important;
  border-radius: 99px !important;
  background: #ffffff !important;
}

.smh-unity-games {
  background: #c2255b !important;
}

.smh-unity-games::before {
  width: 43px !important;
  height: 43px !important;
  background: #ffffff !important;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%) !important;
}

.smh-unity-games::after {
  width: 25px !important;
  height: 25px !important;
  background: #c2255b !important;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%) !important;
}

@media (max-width: 640px) {
  .smh-hero-inner h1 {
    font-size: 27px !important;
  }

  .smh-platform-icons {
    gap: 18px !important;
  }

  .smh-platform {
    width: 58px !important;
    height: 58px !important;
  }
}

/* Final product collection card readability fixes. */
.smh-home-collections .smh-product-grid,
.smh-recent-projects .smh-product-grid {
  align-items: stretch;
}

.smh-home-collections .smh-product-card,
.smh-recent-projects .smh-product-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.smh-home-collections .smh-product-art,
.smh-recent-projects .smh-product-art {
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10 !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  background: #eef2f7 !important;
}

.smh-home-collections .smh-product-art img,
.smh-recent-projects .smh-product-art img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.smh-home-collections .smh-product-body,
.smh-recent-projects .smh-product-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 178px !important;
  padding: 22px 20px 20px !important;
  background: #ffffff !important;
}

.smh-home-collections .smh-product-body strong,
.smh-recent-projects .smh-product-body strong {
  display: block !important;
  min-height: 0 !important;
  color: #172033 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  overflow: visible !important;
  white-space: normal !important;
}

.smh-home-collections .smh-product-body em,
.smh-recent-projects .smh-product-body em {
  display: -webkit-box !important;
  min-height: 46px !important;
  margin-top: 12px !important;
  overflow: hidden !important;
  color: #667085 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

.smh-home-collections .smh-product-price,
.smh-recent-projects .smh-product-price {
  margin-top: auto !important;
  padding-top: 16px !important;
  color: #12a87b !important;
  font-size: 20px !important;
  font-weight: 900 !important;
}

@media (max-width: 900px) {
  .smh-home-collections .smh-product-body,
  .smh-recent-projects .smh-product-body {
    min-height: 150px !important;
  }
}

/* Final brand platform icons: Flutter, Flame, Unity. */
.smh-platform {
  overflow: hidden !important;
  text-indent: 0 !important;
}

.smh-platform::before,
.smh-platform::after {
  display: none !important;
  content: none !important;
}

.smh-platform-logo {
  display: block !important;
  width: 48px !important;
  height: 48px !important;
  color: #ffffff !important;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.08)) !important;
  pointer-events: none !important;
}

.smh-platform-logo-flutter {
  width: 54px !important;
  height: 54px !important;
  transform: translateX(1px) !important;
}

.smh-platform-logo-flame {
  width: 50px !important;
  height: 50px !important;
}

.smh-platform-logo-unity {
  width: 52px !important;
  height: 52px !important;
}

.smh-flutter-games {
  background: #2fb1ee !important;
}

.smh-flutter-apps {
  background: #ffc414 !important;
}

.smh-unity-games {
  background: #c2255b !important;
}

@media (max-width: 640px) {
  .smh-platform-logo {
    width: 38px !important;
    height: 38px !important;
  }

  .smh-platform-logo-flutter {
    width: 42px !important;
    height: 42px !important;
  }
}

/* Absolute final home spacing balance. */
.smh-home-collections .smh-home-products-layout {
  width: calc(100% - 4cm - 24px) !important;
  max-width: none !important;
  margin-left: 4cm !important;
  margin-right: 24px !important;
  grid-template-columns: 280px minmax(0, 1fr) !important;
  gap: 24px !important;
}

.smh-price-sidebar {
  width: 280px !important;
}

.smh-price-sidebar .smh-price-filter-card,
.smh-price-sidebar .smh-sidebar-request-card {
  padding: 20px !important;
}

.smh-price-sidebar .smh-price-filter-card h2 {
  font-size: 25px !important;
}

.smh-price-sidebar .smh-sidebar-request-card h2 {
  font-size: 24px !important;
}

.smh-price-sidebar .smh-sidebar-request-card p {
  font-size: 14px !important;
}

.smh-price-sidebar .smh-price-values strong {
  min-width: 76px !important;
  font-size: 13px !important;
}

.smh-price-sidebar .smh-price-inputs input {
  min-height: 42px !important;
  font-size: 14px !important;
}

.smh-home-collections .smh-collection-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
  gap: 22px !important;
}

.smh-home-collections .smh-product-body {
  min-height: 156px !important;
  padding: 18px 16px 18px !important;
}

.smh-home-collections .smh-product-body strong {
  font-size: 16px !important;
  line-height: 1.22 !important;
}

.smh-home-collections .smh-product-body em {
  min-height: 40px !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
}

.smh-home-collections .smh-product-price {
  padding-top: 12px !important;
  font-size: 18px !important;
}

@media (max-width: 1500px) {
  .smh-home-collections .smh-collection-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
  }
}

@media (max-width: 1180px) {
  .smh-home-collections .smh-home-products-layout {
    width: calc(100% - 32px) !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
    grid-template-columns: 250px minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  .smh-price-sidebar {
    width: 250px !important;
  }

  .smh-home-collections .smh-collection-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  }
}

@media (max-width: 780px) {
  .smh-home-collections .smh-home-products-layout {
    width: min(100% - 24px, 560px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: 1fr !important;
  }

  .smh-price-sidebar {
    width: 100% !important;
  }

  .smh-home-collections .smh-collection-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1180px) {
  .smh-seo-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .smh-seo-footer-grid {
    grid-template-columns: 1fr;
  }
}

.smh-account-layout,
.smh-seller-profile-page {
  width: min(1180px, calc(100% - 32px));
  margin: 40px auto;
  display: grid;
  gap: 24px;
}

.smh-account-hero,
.smh-seller-profile-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.smh-seller-profile-hero {
  padding: 34px;
  border: 1px solid #dce6f3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.smh-seller-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f7fc;
  border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  flex: 0 0 auto;
}

.smh-seller-avatar-large {
  width: 136px;
  height: 136px;
}

.smh-seller-avatar-small {
  width: 58px;
  height: 58px;
  border-width: 3px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.smh-seller-avatar-img,
.smh-seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smh-profile-public-link {
  display: inline-flex;
  margin-top: 8px;
  color: #1f58b8;
  font-weight: 800;
  text-decoration: none;
}

.smh-profile-public-link:hover {
  color: #0f3f91;
}

.smh-profile-edit-panel h2,
.smh-profile-products-panel h2 {
  margin: 0 0 18px;
  color: #172033;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.smh-profile-form textarea {
  min-height: 110px;
}

.smh-auth-notice-success {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.smh-seller-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.smh-seller-product-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 12px;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.smh-seller-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.smh-seller-product-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: #eef4fb;
}

.smh-seller-product-image img,
.smh-seller-product-image > span {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smh-seller-product-card strong {
  color: #172033;
  font-size: 16px;
  line-height: 1.25;
}

.smh-seller-product-card span:not(.smh-seller-product-image) {
  color: #10a77a;
  font-weight: 900;
}

.smh-seller-product-card em {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.smh-seller-bio {
  color: #657087;
  font-size: 18px;
  font-weight: 800;
}

.smh-product-seller-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 18px 0 8px;
  padding: 14px;
  border: 1px solid #dce6f3;
  border-radius: 8px;
  background: #f8fbff;
}

.smh-product-seller-card span {
  display: block;
  color: #10a77a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.smh-product-seller-card strong {
  display: block;
  color: #172033;
  font-size: 18px;
  line-height: 1.2;
}

.smh-product-seller-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.smh-product-seller-links a {
  color: #1f58b8;
  font-weight: 900;
  text-decoration: none;
}

.smh-product-seller-links a:hover {
  color: #0f3f91;
}

.smh-btn.seller-whatsapp,
.smh-seller-whatsapp-link {
  color: #fff !important;
  background: #25d366;
}

.smh-seller-whatsapp-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .smh-seller-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .smh-account-layout,
  .smh-seller-profile-page {
    width: min(100% - 24px, 560px);
    margin: 24px auto;
  }

  .smh-account-hero,
  .smh-seller-profile-hero,
  .smh-product-seller-card {
    grid-template-columns: 1fr;
  }

  .smh-seller-profile-hero {
    padding: 22px;
  }

  .smh-seller-products-grid {
    grid-template-columns: 1fr;
  }
}

/* SEO feature polish: product cards, trust notes, and internal CTA links. */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
}

.smh-loop-badges {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}

.smh-loop-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.84);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.smh-product-trust-box {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #dbe8f7;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef8f4 100%);
}

.smh-product-trust-box h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  color: #152033;
}

.smh-product-trust-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smh-product-trust-box li {
  position: relative;
  padding-left: 24px;
  color: #506176;
  font-weight: 700;
  line-height: 1.45;
}

.smh-product-trust-box li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14b883;
  box-shadow: 0 0 0 4px rgba(20, 184, 131, 0.14);
}

.smh-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  background: #1f58b8;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
}

.smh-inline-cta:hover,
.smh-inline-cta:focus {
  background: #174797;
  color: #fff !important;
}

.smh-trend-row,
.smh-trend-archive {
  padding: 34px 0;
  background: #f7fafc;
}

.smh-services-row,
.smh-services-archive {
  padding: 38px 0;
  background: #ffffff;
}

.smh-services-row .smh-section-title {
  margin-bottom: 18px;
}

.smh-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.smh-service-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 46, 77, 0.07);
}

.smh-service-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0f766e 0%, #1f58b8 100%);
  color: #fff;
  text-decoration: none;
}

.smh-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smh-service-media span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 26px;
  font-weight: 900;
}

.smh-service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.smh-service-body > span {
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1f58b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.smh-service-body h3 {
  margin: 0;
  color: #152033;
  font-size: 19px;
  line-height: 1.25;
}

.smh-service-body h3 a {
  color: inherit;
  text-decoration: none;
}

.smh-service-body h3 a:hover,
.smh-service-body h3 a:focus {
  color: #1f58b8;
}

.smh-service-body p {
  margin: 0;
  color: #506176;
  font-size: 14px;
  line-height: 1.55;
}

.smh-services-hero {
  padding: 54px 0 34px;
  background: #0f2f2c;
  color: #fff;
}

.smh-services-hero span,
.smh-service-back {
  display: inline-flex;
  margin-bottom: 10px;
  color: #73e9c0;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.smh-services-hero h1,
.smh-service-single-header h1 {
  max-width: 920px;
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  color: inherit;
}

.smh-services-hero p {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.smh-service-single {
  padding: 48px 0;
  background: #f7fafc;
}

.smh-service-single > .smh-wrap {
  max-width: 940px;
}

.smh-service-single-header {
  padding: 30px;
  border-radius: 8px;
  background: #0f2f2c;
  color: #fff;
}

.smh-service-single-header > span {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.smh-service-featured-image {
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e8eef5;
}

.smh-service-featured-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.smh-service-single-content {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #fff;
  color: #2a3442;
  font-size: 17px;
  line-height: 1.8;
}

.smh-service-single-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.smh-services-pagination {
  margin-top: 24px;
}

.smh-trend-row .smh-section-title {
  margin-bottom: 18px;
}

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

.smh-trend-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 150px;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 46, 77, 0.07);
}

.smh-trend-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  background: linear-gradient(135deg, #12213a 0%, #1f58b8 52%, #14b883 100%);
  color: #fff;
  text-decoration: none;
}

.smh-trend-media img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.smh-trend-media span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 26px;
  font-weight: 900;
}

.smh-trend-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.smh-trend-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #637083;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.smh-trend-meta strong {
  flex: 0 0 auto;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e7f8ef;
  color: #0b855e;
}

.smh-trend-body h3 {
  margin: 0;
  color: #152033;
  font-size: 18px;
  line-height: 1.25;
}

.smh-trend-body h3 a {
  color: inherit;
  text-decoration: none;
}

.smh-trend-body h3 a:hover,
.smh-trend-body h3 a:focus {
  color: #1f58b8;
}

.smh-trend-body p {
  margin: 0;
  color: #506176;
  font-size: 14px;
  line-height: 1.5;
}

.smh-trend-hero {
  padding: 54px 0 34px;
  background: #102033;
  color: #fff;
}

.smh-trend-hero span,
.smh-trend-back {
  display: inline-flex;
  margin-bottom: 10px;
  color: #67e0b3;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.smh-trend-hero h1,
.smh-trend-single-header h1 {
  max-width: 920px;
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  color: inherit;
}

.smh-trend-hero p {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.smh-trend-single {
  padding: 48px 0;
  background: #f7fafc;
}

.smh-trend-single > .smh-wrap {
  max-width: 940px;
}

.smh-trend-single-header {
  padding: 30px;
  border-radius: 8px;
  background: #102033;
  color: #fff;
}

.smh-trend-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.smh-trend-single-meta span,
.smh-trend-single-meta strong {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.smh-trend-featured-image {
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e8eef5;
}

.smh-trend-featured-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.smh-trend-single-content {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid #dce7f2;
  border-radius: 8px;
  background: #fff;
  color: #2a3442;
  font-size: 17px;
  line-height: 1.8;
}

.smh-trend-single-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.smh-inline-cta-secondary {
  background: #14b883;
}

.smh-inline-cta-secondary:hover,
.smh-inline-cta-secondary:focus {
  background: #0d9468;
}

.smh-trend-pagination {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .smh-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smh-trend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .smh-services-grid {
    grid-template-columns: 1fr;
  }

  .smh-services-hero h1,
  .smh-service-single-header h1 {
    font-size: 30px;
  }

  .smh-service-single-header,
  .smh-service-single-content {
    padding: 20px;
  }

  .smh-trend-grid {
    grid-template-columns: 1fr;
  }

  .smh-trend-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .smh-trend-media,
  .smh-trend-media img {
    min-height: 144px;
  }

  .smh-trend-body {
    padding: 12px;
  }

  .smh-trend-body h3 {
    font-size: 16px;
  }

  .smh-trend-body p {
    font-size: 13px;
  }

  .smh-trend-hero h1,
  .smh-trend-single-header h1 {
    font-size: 30px;
  }

  .smh-trend-single-header,
  .smh-trend-single-content {
    padding: 20px;
  }

  .smh-loop-badges {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .smh-loop-badges span {
    font-size: 10px;
    padding: 4px 7px;
  }

  .smh-product-trust-box {
    padding: 14px;
  }
}
