/* ═══════════════════════════════════════════════════
   ATLAS PRO ONTV — Page-Specific Styles
   ═══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   HOMEPAGE
   ══════════════════════════════════════════════════ */

/* ── Hero Section ────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - 4rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-4xl) var(--container-padding);
  text-align: center;
}

.hero__offer-banner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.6rem 1.2rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__offer-kicker {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
}

.hero__offer-details {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--color-text-white-muted);
}

.hero__offer-price {
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
}

.hero__offer-old-price {
  text-decoration: line-through;
  opacity: 0.6;
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  color: var(--color-text-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.hero__title-highlight {
  color: var(--color-accent);
  -webkit-text-fill-color: var(--color-accent);
}

.hero__description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-text-white-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.hero__description strong {
  color: var(--color-text-white);
  font-weight: var(--fw-bold);
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}


/* ── Features Grid ───────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Pricing Grid ────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}


/* ── Testimonials Grid ───────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


/* ── FAQ Grid ────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
}


/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  background: var(--gradient-featured);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(29, 78, 216, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body-lg);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════════════════
   DOWNLOAD PAGE
   ══════════════════════════════════════════════════ */

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
  .install-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}


/* ══════════════════════════════════════════════════
   BLOG / ARTICLE
   ══════════════════════════════════════════════════ */

.article {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding: var(--space-3xl) var(--container-padding);
}

.article__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.article__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.article__meta svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article__toc {
  background: var(--color-bg-section-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.article__toc-title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.article__toc-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.article__toc-link {
  font-size: var(--fs-small);
  color: var(--color-primary);
  transition: color var(--duration-fast) var(--ease-out);
  padding: var(--space-2xs) 0;
}

.article__toc-link:hover {
  color: var(--color-primary-dark);
}

.article h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.article h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article p {
  margin-bottom: var(--space-lg);
}

.article ol {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-xl);
}

.article ol li {
  counter-increment: step;
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
}

.article ol li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
}

.article ul {
  margin-bottom: var(--space-xl);
  padding-left: var(--space-xl);
}

.article ul li {
  position: relative;
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
}

.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.article a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast) var(--ease-out);
}

.article a:hover {
  color: var(--color-primary-dark);
}

.article strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.article__info-box {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.article__info-box p {
  margin-bottom: 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

.article__warning-box {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.article__warning-box p {
  margin-bottom: 0;
  font-size: var(--fs-small);
}


/* ══════════════════════════════════════════════════
   PRODUCT PAGES
   ══════════════════════════════════════════════════ */

.product-hero {
  background: var(--gradient-hero);
  padding: calc(var(--space-4xl) + 2rem) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.product-hero__content {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.product-hero__text h1 {
  color: var(--color-text-white);
  margin-bottom: var(--space-lg);
}

.product-hero__text p {
  color: var(--color-text-white-muted);
  font-size: var(--fs-body-lg);
  margin-bottom: var(--space-xl);
}

.product-hero__price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
  text-align: center;
}

.product-hero__price-card .pricing-card__price-row {
  justify-content: center;
}

.product-hero__price-card .pricing-card__amount {
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 4rem);
}

.product-hero__price-card .pricing-card__currency,
.product-hero__price-card .pricing-card__decimal {
  color: rgba(255, 255, 255, 0.8);
}

.product-hero__price-card .pricing-card__old-price {
  color: rgba(255, 255, 255, 0.5);
}

.product-hero__price-card .pricing-card__per-month {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .product-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-hero__price-card {
    max-width: 350px;
    margin-inline: auto;
  }
}


/* ── Device Compatibility Grid ───────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg) var(--space-sm);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.device-item:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.2);
}

.device-item svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--color-primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-item__name {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── How It Works (Steps on product pages) ──────── */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.how-it-works .step-card {
  position: relative;
  z-index: 1;
  background: var(--color-bg-body);
}

@media (max-width: 768px) {
  .how-it-works {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-inline: auto;
  }

  .how-it-works::before {
    display: none;
  }
}


/* ── Cross-sell Section ──────────────────────────── */
.cross-sell {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 700px;
  margin-inline: auto;
}

.cross-sell__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.cross-sell__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cross-sell__card-title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.cross-sell__card-price {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

@media (max-width: 640px) {
  .cross-sell {
    grid-template-columns: 1fr;
  }
}


/* ── Hero responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: clamp(2rem, 6vw, 3.5rem);
    padding-bottom: clamp(3rem, 10vw, 5rem);
  }

  .hero__content {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__offer-banner {
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-lg);
    padding: 0.8rem 1rem;
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }

  .hero__offer-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.6rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .hero__offer-details span:last-child {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
  }
}

.product-detail {
  padding: calc(var(--space-4xl) + 2rem) 0 var(--space-3xl);
  background: var(--color-bg-body);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-3xl);
  max-width: var(--container-max);
  margin-inline: auto;
}

@media (max-width: 992px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.product-detail__gallery {
  position: sticky;
  top: 6rem;
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
}

.product-detail__main-img-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #18113c 0%, #0d0824 100%);
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail__main-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  transition: transform var(--duration-normal) var(--ease-out);
}

.product-detail__main-img-wrap:hover .product-detail__main-img {
  transform: scale(1.04);
}

.product-detail__discount-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--color-danger);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  border-radius: var(--radius-sm);
  z-index: 1;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.product-detail__info {
  display: flex;
  flex-direction: column;
}

.product-detail__category {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.product-detail__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.product-detail__rating-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-detail__stars {
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.product-detail__reviews-count {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

.product-detail__price-box {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-block: var(--space-sm);
}

.product-detail__price {
  font-size: 2.8rem;
  font-weight: var(--fw-black);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
}

.product-detail__old-price {
  font-size: var(--fs-h3);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-detail__divider {
  height: 1px;
  background: var(--color-border);
  margin-block: var(--space-lg);
}

.product-detail__short-desc {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.product-detail__short-desc p {
  margin-bottom: 0;
}

.product-detail__actions {
  margin-top: var(--space-md);
  max-width: 480px;
}

.product-detail__buy-btn {
  font-size: var(--fs-body);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.product-detail__secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  font-weight: var(--fw-semibold);
  margin-top: var(--space-md);
}

.product-detail__secure-badge svg {
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2.5;
}

.product-detail__tabs {
  margin-top: var(--space-3xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  max-width: var(--container-max);
  margin-inline: auto;
}

.product-detail__section-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.product-detail__tabs-content {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.product-detail__compatibility {
  margin-top: var(--space-3xl);
  max-width: var(--container-max);
  margin-inline: auto;
}


/* ── SEO Info Section ────────────────────────────── */
.seo-info-section {
  padding-block: var(--space-4xl);
  border-top: 1px solid var(--color-border);
}

.seo-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.seo-info-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.seo-info-desc {
  margin-bottom: var(--space-md);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.seo-info-features {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.seo-info-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.seo-info-feature-emoji {
  font-size: 1.5rem;
}

.seo-info-feature-title {
  font-size: var(--fs-small);
  margin-bottom: 2px;
}

.seo-info-feature-sub {
  font-size: var(--fs-xs);
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.seo-info-card {
  background: var(--gradient-dark-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  color: #ffffff;
  border: 1px solid var(--color-border-light);
}

.seo-info-card-title {
  color: #ffffff;
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
}

.seo-info-card-desc {
  color: var(--color-text-white-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.seo-info-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0;
  list-style: none;
}

.seo-info-card-list-item {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text-white);
  line-height: 1.6;
}

.seo-info-card-list-item strong {
  color: #ffffff;
  font-weight: var(--fw-semibold);
}

.seo-info-card-checkmark {
  color: var(--color-accent);
  font-weight: bold;
}

@media (max-width: 992px) {
  .seo-info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 576px) {
  .seo-info-features {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ── Shop/Boutique Page Redesign ──────────────────── */
.shop-hero {
  position: relative;
  background: var(--gradient-hero);
  padding: calc(var(--space-4xl) + 2rem) 0 var(--space-3xl);
  overflow: hidden;
  text-align: center;
}

.shop-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shop-hero__glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.shop-hero__glow--1 {
  top: -10%;
  left: 10%;
  background: var(--color-primary);
}

.shop-hero__glow--2 {
  bottom: -10%;
  right: 10%;
  background: var(--color-accent);
}

.shop-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-narrow);
}

.shop-hero__title {
  color: var(--color-text-white);
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  margin-bottom: var(--space-md);
}

.shop-hero__title-accent {
  color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-hero__subtitle {
  color: var(--color-text-white-muted);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* Products Grid */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.shop-product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.shop-product-card--popular {
  border: 2px solid var(--color-primary);
}

.shop-product-card--best-value {
  border: 2px solid var(--color-success);
}

.shop-product-card__image-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  background: var(--color-bg-dark);
  overflow: hidden;
}

.shop-product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.shop-product-card:hover .shop-product-card__image {
  transform: scale(1.06);
}

.shop-product-card__discount {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-danger);
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
  z-index: 1;
}

.shop-product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-cta);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  z-index: 1;
}

.shop-product-card__badge--green {
  background: var(--color-success);
}

.shop-product-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.shop-product-card__title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.shop-product-card__price {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.shop-product-card__old-price {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.shop-product-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  font-weight: var(--fw-medium);
}

.shop-product-card__secure svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Rating Header */
.shop-rating-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.shop-rating-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.shop-rating-badge__score {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.shop-rating-badge__label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  display: block;
}

.shop-rating-badge__count {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

/* Cinema Section */
.shop-cinema {
  background: var(--gradient-hero);
  color: #ffffff;
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.shop-cinema__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.shop-cinema__title {
  color: #ffffff;
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.shop-cinema__desc {
  color: var(--color-text-white-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.shop-cinema__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.shop-cinema__stat {
  display: flex;
  flex-direction: column;
}

.shop-cinema__stat-number {
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  color: var(--color-accent);
  line-height: 1;
}

.shop-cinema__stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-2xs);
}

.shop-cinema__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-cinema__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
  max-width: 400px;
}

.shop-cinema__card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.shop-cinema__card h3 {
  color: #ffffff;
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.shop-cinema__card p {
  color: var(--color-text-white-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Features Highlight Grid */
.shop-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.shop-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.shop-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.shop-feature-card__icon {
  width: 3rem;
  height: 3rem;
  background: rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.shop-feature-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-feature-card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.shop-feature-card__desc {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* App Promo Section */
.shop-app-promo {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-section-alt);
  overflow: hidden;
}

.shop-app-promo__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.shop-app-promo__title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-lg);
}

.shop-app-promo__desc {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.shop-app-promo__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.shop-app-promo__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

.shop-app-promo__features svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.shop-app-promo__visual {
  display: flex;
  justify-content: center;
}

.shop-app-promo__phone {
  background: #000000;
  width: 280px;
  height: 560px;
  border-radius: 40px;
  border: 12px solid #222222;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.shop-app-promo__phone-screen {
  background: #0b071e;
  height: 100%;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.shop-app-promo__phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
}

.shop-app-promo__phone-header span:last-child {
  background: var(--color-danger);
  padding: 0.1rem 0.4rem;
  font-size: 0.6rem;
  border-radius: var(--radius-sm);
}

.shop-app-promo__phone-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.shop-app-promo__channel {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
}

.shop-app-promo__channel.active {
  background: var(--gradient-primary);
  color: #ffffff;
}

/* Trust Badges Grid */
.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  text-align: center;
}

.shop-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-trust-item__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.shop-trust-item__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-xs);
}

.shop-trust-item__desc {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .shop-cinema__grid,
  .shop-app-promo__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .shop-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 576px) {
  .shop-products-grid,
  .shop-features-grid {
    grid-template-columns: 1fr;
  }
}

