/* =========================
   TABLET / SMALL DESKTOP
========================= */

@media (max-width: 1000px) {

  .hero-grid,
  .cards-grid,
  .intro-box,
  .about-box,
  .offer-box,
  .products-grid,
  .soon-grid,
  .benefits-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-border img,
  .hero-image-border video {
    height: 520px;
  }

}


/* =========================
   MOBILE GLOBAL
========================= */

@media (max-width: 768px) {

  .container {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 42px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.96;
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-image-border img,
  .hero-image-border video {
    height: 360px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a,
  .hero-buttons span,
  .btn-primary,
  .btn-secondary,
  .btn-third {
    width: 100%;
    text-align: center;
  }

  .intro-box,
  .about-box,
  .offer-box,
  .soon-box,
  .availability-box,
  .legal-box {
    padding: 34px 26px;
    border-radius:
      46px 70px 58px 78px /
      64px 48px 80px 60px;
  }

  .intro-box,
  .about-box,
  .offer-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-right h2,
  .about-content h2,
  .offer-left h2,
  .section-heading h2,
  .availability-box h2,
  .soon-box h2,
  .cta-box h2,
  .newsletter-box h2,
  .fiverr-left h2,
  .award-left h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 0.98;
    letter-spacing: -1.4px;
  }

  .cards-grid,
  .products-grid,
  .soon-grid,
  .benefits-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .product-card {
    min-height: auto;
  }

  .product-image img {
    height: 260px;
  }

  .gallery-grid img {
    height: 280px;
  }

  .reviews-grid img {
    max-width: 100%;
  }

  .availability-item {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }

  .price {
    font-size: 48px;
  }

  .hero-line-top,
  .hero-line-bottom {
    opacity: 0.35;
  }

}


/* =========================
   NAV MOBILE
========================= */

@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    gap: 20px;
    padding: 18px 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

}


/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 768px) {

  .footer {
    padding: 50px 0 35px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-brand p {
    margin: 0;
  }

  .footer-contact {
    text-align: left;
  }

}


/* =========================
   COOKIE MOBILE
========================= */

@media (max-width: 768px) {

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

}


/* =========================
   FORM / NEWSLETTER MOBILE
========================= */

@media (max-width: 768px) {

  .newsletter-form {
    flex-direction: column;
  }

}

/* =========================
   O MNIE MOBILE FIX
========================= */

@media (max-width: 768px) {

  .fiverr-box,
  .award-box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px 26px;
    overflow: hidden;
  }

  .fiverr-right,
  .award-right {
    width: 100%;
  }

  .fiverr-right img,
  .award-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .award-right {
    grid-template-columns: 1fr;
  }

  .fiverr-left h2,
  .award-left h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 0.98;
    letter-spacing: -1.4px;
  }

  .fiverr-left p,
  .award-left p {
    font-size: 16px;
    line-height: 1.7;
  }

}

/* =========================
   HERO CLICK LAYER FIX
========================= */

.hero {
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-buttons,
.hero-buttons a {
  position: relative;
  z-index: 4;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-line {
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-content {
    z-index: 5;
  }

  .hero-buttons,
  .hero-buttons a {
    z-index: 6;
  }

  .hero-image-wrap {
    z-index: 1;
  }
}