/* ================================
   SINGLE PRODUCT PAGE
================================ */

.single-product-page {
  padding: 70px 20px 100px;
}

/* ================================
   SINGLE PRODUCT CONTAINER
================================ */

.single-product-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 60px);

  position: relative;
  overflow: hidden;

  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(77, 184, 255, 0.35);

  color: #ffffff;

  animation: funnelGlow 3.5s infinite ease-in-out;
}

.single-product-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  border: 1px solid rgba(77, 184, 255, 0.45);

  box-shadow:
    0 0 14px rgba(77, 184, 255, 0.35),
    0 0 34px rgba(77, 184, 255, 0.16),
    inset 0 0 24px rgba(77, 184, 255, 0.06);
}

.single-product-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    transparent 150px
  );
}

.single-product-shell > * {
  position: relative;
  z-index: 2;
}

/* ================================
   CONTENT WIDTH
================================ */

.single-product-content {
  max-width: 860px;
  margin: 0 auto;
}

/* ================================
   TITLE
================================ */

.single-product-title {
  position: relative;

  display: inline-block;

  margin: 0 0 35px;
  padding-bottom: 18px;

  font-family: "Acme", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;

  color: #ffffff;

  text-shadow:
    0 0 15px rgba(77, 184, 255, 0.25),
    0 0 35px rgba(77, 184, 255, 0.12);
}

.single-product-title::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 70%;
  height: 4px;

  border-radius: 999px;

  background: linear-gradient(90deg, #4db8ff, #ffffff, #4db8ff, transparent);

  box-shadow:
    0 0 12px rgba(77, 184, 255, 0.8),
    0 0 25px rgba(77, 184, 255, 0.4);
}

/* ================================
   WORDPRESS BLOCK TEXT
================================ */

.single-product-content p {
  margin: 0 0 24px;

  font-size: 1.1rem;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.88);
}

.single-product-content h2 {
  margin: 55px 0 18px;

  font-family: "Acme", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;

  color: #4db8ff;

  text-shadow:
    0 0 12px rgba(77, 184, 255, 0.25),
    0 0 28px rgba(77, 184, 255, 0.12);
}

.single-product-content h3 {
  margin: 38px 0 14px;

  font-family: "Acme", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);

  color: #ffffff;
}

.single-product-content strong {
  color: #ffffff;
}

/* ================================
   WORDPRESS IMAGES
================================ */

.single-product-content figure,
.single-product-content .wp-block-image {
  margin: 35px 0;
}

.single-product-content img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 24px;

  border: 1px solid rgba(77, 184, 255, 0.25);

  box-shadow:
    0 0 16px rgba(77, 184, 255, 0.18),
    0 18px 45px rgba(0, 0, 0, 0.45);
}

.single-product-content figcaption {
  margin-top: 12px;

  text-align: center;
  font-size: 0.95rem;

  color: rgba(255, 255, 255, 0.65);
}

/* ================================
   LISTS
================================ */

.single-product-content ul,
.single-product-content ol {
  margin: 20px 0 28px;
  padding-left: 28px;

  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.single-product-content li {
  margin-bottom: 14px;

  font-size: 1.05rem;
  line-height: 1.75;

  color: rgba(255, 255, 255, 0.88);
}

.single-product-content li::marker {
  color: #4db8ff;
}

.single-product-content li:last-child {
  margin-bottom: 0;
}
/* ================================
   BUTTON BLOCK
================================ */

.single-product-content .wp-block-buttons {
  margin-top: 35px;
}

.single-product-content .wp-block-button__link {
  padding: 15px 28px;

  border-radius: 999px;

  background: rgba(0, 0, 0, 0.85);

  border: 1px solid rgba(77, 184, 255, 0.4);

  color: #ffffff;

  font-family: "Acme", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow:
    0 0 12px rgba(77, 184, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.single-product-content .wp-block-button__link:hover {
  transform: translateY(-2px);

  box-shadow:
    0 0 18px rgba(77, 184, 255, 0.35),
    0 0 36px rgba(77, 184, 255, 0.18);
}

/* ================================
   QUOTE / IMPORTANT BLOCK
================================ */

.single-product-content blockquote,
.single-product-content .wp-block-quote {
  margin: 35px 0;
  padding: 28px;

  border-radius: 24px;

  background: rgba(77, 184, 255, 0.05);

  border: 1px solid rgba(77, 184, 255, 0.25);
  border-left: 5px solid #ffffff;

  color: rgba(255, 255, 255, 0.9);

  box-shadow:
    0 0 16px rgba(77, 184, 255, 0.14),
    0 18px 45px rgba(0, 0, 0, 0.4);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .single-product-page {
    padding: 45px 16px 80px;
  }

  .single-product-shell {
    padding: 34px 22px;
  }

  .single-product-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .single-product-content p {
    font-size: 1.03rem;
  }

  .single-product-content ul,
  .single-product-content ol {
    padding: 24px 22px 24px 42px;
  }
}
