.shop-hero-section {
  background: #ffffff;
  overflow: hidden;
}

.shop-hero {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 39px 64px;
    
  padding-left: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(64,186,216,.20), transparent 32%),
    radial-gradient(circle at 85% 60%, rgba(64,186,216,.16), transparent 34%),
    linear-gradient(135deg, var(--dark-bg), var(--dark-bg-2));
  color: var(--white);
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, rgba(0,0,0,.8), transparent);
  pointer-events: none;
}

.shop-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -170px;
  background: rgba(64,186,216,.22);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(64,186,216,.42);
  border-radius: 100px;
  background: rgba(64,186,216,.10);
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--main-color);
  box-shadow: 0 0 0 6px rgba(64,186,216,.16);
  animation: badgePulse 1.8s infinite;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4vw, 82px);
  line-height: .95;
font-weight: 700;
color: white;
}

.hero-title span {
  display: block;
  color: var(--main-color);
  text-shadow: 0 0 38px rgba(64,186,216,.25);
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: .25s ease;
}

.hero-btn-primary {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
  box-shadow: 0 16px 36px rgba(64,186,216,.25);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  background: #35aeca;
  border-color: #35aeca;
  color: #fff;
  box-shadow: 0 20px 44px rgba(64,186,216,.36);
}

.hero-btn-outline {
  border: 1px solid rgba(64,186,216,.65);
  background: rgba(64,186,216,.06);
  color: var(--main-color);
}

.hero-btn-outline:hover {
  transform: translateY(-3px);
  border-color: var(--main-color);
  background: rgba(64,186,216,.14);
  color: #fff;
}





/* Preview */
.hero-preview {
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.preview-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -30px;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,186,216,.28), transparent 62%);
  filter: blur(25px);
  animation: glowMove 5s ease-in-out infinite alternate;
}

.desktop-frame {
  position: absolute;
  right: -20px;
  top: 35px;
  width: min(650px, 100%);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.18);
  transform: rotate(-5deg);
  animation: floatDesktop 5.5s ease-in-out infinite;
}

.browser-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #f3f5f6;
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd1d5;
}

.browser-top span:nth-child(1) {
  background: #ff5f57;
}

.browser-top span:nth-child(2) {
  background: #febc2e;
}

.browser-top span:nth-child(3) {
  background: #28c840;
}

.desktop-screen {
  aspect-ratio: 16 / 10;
  background: #fff;
  overflow: hidden;
}

.desktop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.mobile-frame {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 185px;
  aspect-ratio: 9 / 19;
  padding: 14px 9px 10px;
  border-radius: 28px;
  background: #101416;
  box-shadow:
    0 24px 60px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.12);
  transform: rotate(6deg);
  animation: floatMobile 4.8s ease-in-out infinite;
}

.mobile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  display: block;
}

.mobile-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 52px;
  height: 5px;
  border-radius: 20px;
  background: rgba(255,255,255,.16);
  transform: translateX(-50%);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0,0,0,.22);
  font-size: 14px;
  line-height: 1.1;
  color: black;
}

.floating-card b {
  color: black;
  font-size: 22px;
  line-height: 1;
}

.card-one {
  right: 28px;
  bottom: 58px;
  animation: floatCard 4s ease-in-out infinite;
}

.card-two {
  left: 110px;
  top: 30px;
  animation: floatCard 4.5s ease-in-out infinite reverse;
}

/* Animations */
@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(64,186,216,.35);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(64,186,216,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(64,186,216,0);
  }
}

@keyframes floatDesktop {
  0%, 100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-14px);
  }
}

@keyframes floatMobile {
  0%, 100% {
    transform: rotate(6deg) translateY(0);
  }
  50% {
    transform: rotate(6deg) translateY(-12px);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glowMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-30px, 20px) scale(1.08);
  }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .shop-hero {
    padding: 58px 42px;
  }

  .hero-preview {
    min-height: 470px;
  }

  .mobile-frame {
    width: 165px;
  }
}

@media (max-width: 991.98px) {
  .shop-hero {
    padding: 52px 30px 38px;
    border-radius: 28px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-preview {
    min-height: 520px;
    margin-top: 10px;
  }

  .desktop-frame {
    right: 0;
    width: 92%;
  }

  .mobile-frame {
    left: 4%;
    bottom: 10px;
  }

  .card-two {
    left: auto;
    right: 18px;
    top: 8px;
  }
}

@media (max-width: 767.98px) {


  .shop-hero {
    padding: 34px 20px 26px;
    border-radius: 24px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 9px 13px;
  }

  .hero-title {
    font-size: clamp(38px, 9vw, 58px);
    letter-spacing: -0.045em;
  }

  .hero-text {
    margin-top: 20px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    font-size: 17px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-preview {
    min-height: 430px;
  }

  .desktop-frame {
    top: 34px;
    right: -28px;
    width: 105%;
    border-radius: 18px;
    transform: rotate(-3deg);
  }

  .mobile-frame {
    width: 132px;
    left: 0;
    bottom: 22px;
    border-radius: 22px;
  }

  .mobile-frame img {
    border-radius: 16px;
  }

  .floating-card {
    display: none;
  }

  @keyframes floatDesktop {
    0%, 100% {
      transform: rotate(-3deg) translateY(0);
    }
    50% {
      transform: rotate(-3deg) translateY(-10px);
    }
  }
}

@media (max-width: 420px) {
  .shop-hero {
    padding: 30px 16px 22px;
  }

  .hero-preview {
    min-height: 380px;
  }

  .mobile-frame {
    width: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge span,
  .desktop-frame,
  .mobile-frame,
  .floating-card,
  .preview-glow {
    animation: none;
  }
}
