/* =========================================================
   Energetika Custom Single Product Page
   Theme: Hello Elementor
   Rebuilt to match the ENERGETIKA369 sitewide design system:
   same CSS variable names, fonts, sharp-edged dark-field
   cards, hairline borders, and fill-sweep buttons used
   across the rest of the site. All class names unchanged.
========================================================= */

.energetika-product-page,
.energetika-product-page * {
  box-sizing: border-box;
}

.energetika-product-page {
  --electric-blue: #00d4ff;
  --arc-white: #e8f4ff;
  --plasma-cyan: #00ffe7;
  --coil-purple: #7b2fff;
  --deep-void: #020810;
  --dark-field: #050f1e;
  --mid-field: #0a1a30;
  --field-line: rgba(0, 212, 255, 0.14);
  --glow-soft: 0 0 15px rgba(0, 212, 255, 0.4);
  --glow-strong: 0 0 30px rgba(0, 212, 255, 0.7), 0 0 60px rgba(0, 212, 255, 0.25);
  --glow-purple: 0 0 22px rgba(123, 47, 255, 0.45);

  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 212, 255, 0.14), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(123, 47, 255, 0.14), transparent 34%),
    linear-gradient(180deg, var(--deep-void) 0%, var(--dark-field) 48%, var(--deep-void) 100%);
  color: var(--arc-white);
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden;
  width: 100%;
}

.energetika-product-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--field-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--field-line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  animation: epGridDrift 40s linear infinite;
}

.energetika-product-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.05), transparent);
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: epScanSweep 11s ease-in-out infinite;
}

.energetika-product-page a {
  text-decoration: none;
}

.energetika-product-page img {
  max-width: 100%;
}

/* =========================================================
   Hero Section
========================================================= */

.ep-product-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 100px 6% 90px;
  min-height: 88vh;
  isolation: isolate;
}

.ep-product-hero::before {
  content: "";
  position: absolute;
  inset: 40px 4%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  pointer-events: none;
  z-index: -1;
}

.ep-product-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: 18%;
  background: radial-gradient(circle, rgba(123, 47, 255, 0.2), transparent 65%);
  filter: blur(10px);
  z-index: -2;
  animation: epFloatOrb 9s ease-in-out infinite;
}

/* =========================================================
   Product Gallery
========================================================= */

.ep-product-gallery {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 26, 48, 0.86), rgba(5, 15, 30, 0.92));
  border: 1px solid rgba(0, 212, 255, 0.16);
  padding: 22px;
  box-shadow: var(--glow-soft), 0 22px 55px rgba(0, 0, 0, 0.3);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.ep-product-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), var(--plasma-cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ep-product-gallery:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: var(--glow-soft), 0 22px 60px rgba(0, 0, 0, 0.36);
}

.ep-product-gallery:hover::before {
  transform: scaleX(1);
}

.ep-main-image-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(2, 8, 16, 0.6);
}

/* corner brackets — pure CSS, no extra markup required */
.ep-main-image-wrap::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.35s ease;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(var(--electric-blue), var(--electric-blue)),
    linear-gradient(var(--electric-blue), var(--electric-blue)),
    linear-gradient(var(--electric-blue), var(--electric-blue)),
    linear-gradient(var(--electric-blue), var(--electric-blue)),
    linear-gradient(var(--electric-blue), var(--electric-blue)),
    linear-gradient(var(--electric-blue), var(--electric-blue)),
    linear-gradient(var(--electric-blue), var(--electric-blue)),
    linear-gradient(var(--electric-blue), var(--electric-blue));
  background-size:
    20px 1px, 1px 20px,
    20px 1px, 1px 20px,
    20px 1px, 1px 20px,
    20px 1px, 1px 20px;
  background-position:
    top 0 left 0, top 0 left 0,
    top 0 right 0, top 0 right 0,
    bottom 0 left 0, bottom 0 left 0,
    bottom 0 right 0, bottom 0 right 0;
}

.ep-main-image-wrap:hover::after {
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(0, 255, 231, 0.5));
}

.ep-main-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease, opacity 0.25s ease;
}

.ep-main-image-wrap:hover .ep-main-image {
  transform: scale(1.05);
  filter: saturate(1.15) contrast(1.08) brightness(1.03);
}

.ep-gallery-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}

.ep-gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}

.ep-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 231, 0.35);
  border-radius: 999px;
}

.ep-gallery-thumb {
  width: 86px;
  height: 86px;
  min-width: 86px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(0, 212, 255, 0.18);
  opacity: 0.6;
  transition: 0.3s ease;
  background: rgba(5, 15, 30, 0.6);
}

.ep-gallery-thumb:hover,
.ep-gallery-thumb.is-active {
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--plasma-cyan);
  box-shadow: 0 0 16px rgba(0, 255, 231, 0.3);
}

/* =========================================================
   Product Info
========================================================= */

.ep-product-info {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.ep-category {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--plasma-cyan);
  border: 1px solid rgba(0, 255, 231, 0.32);
  background: rgba(0, 212, 255, 0.05);
  padding: 8px 14px;
  margin: 0 0 20px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.ep-category::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--plasma-cyan);
  box-shadow: 0 0 10px var(--plasma-cyan);
  animation: epDotBlink 2.2s ease-in-out infinite;
}

.ep-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.04;
  margin: 0 0 22px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(0, 212, 255, 0.18);
}

.ep-rating {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: var(--plasma-cyan);
  font-size: 16px;
  font-family: 'Rajdhani', sans-serif;
}

.ep-stars {
  letter-spacing: 2px;
  color: var(--plasma-cyan);
  text-shadow: 0 0 14px rgba(0, 255, 231, 0.24);
}

.ep-review-count {
  color: rgba(232, 244, 255, 0.6);
}

.ep-price {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  color: var(--electric-blue);
  margin-bottom: 25px;
  text-shadow: var(--glow-soft);
}

.ep-price .woocommerce-Price-amount,
.ep-price .woocommerce-Price-currencySymbol {
  color: var(--electric-blue);
}

.ep-short-desc {
  color: rgba(232, 244, 255, 0.66);
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 620px;
  font-weight: 300;
}

.ep-short-desc p {
  margin: 0;
}

.ep-stock-row {
  margin-bottom: 32px;
}

.ep-stock-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.ep-stock-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  animation: epDotBlink 2.2s ease-in-out infinite;
}

.ep-stock-status.is-in-stock {
  color: var(--plasma-cyan);
  background: rgba(0, 255, 231, 0.06);
  border-color: rgba(0, 255, 231, 0.34);
}

.ep-stock-status.is-in-stock::before {
  background: var(--plasma-cyan);
  box-shadow: 0 0 8px var(--plasma-cyan);
}

.ep-stock-status.is-out-stock {
  color: var(--coil-purple);
  background: rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.4);
}

.ep-stock-status.is-out-stock::before {
  background: var(--coil-purple);
  box-shadow: 0 0 8px var(--coil-purple);
}

.ep-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.ep-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 30px;
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.6px;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    letter-spacing 0.3s ease;
}

.ep-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.ep-btn:hover {
  letter-spacing: 3.4px;
}

.ep-btn-primary {
  color: var(--electric-blue);
  border-color: rgba(0, 212, 255, 0.68);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.18);
}

.ep-btn-primary::before {
  background: linear-gradient(90deg, var(--electric-blue), var(--plasma-cyan));
}

.ep-btn-primary:hover {
  color: var(--deep-void);
  border-color: var(--plasma-cyan);
  box-shadow: var(--glow-strong);
}

.ep-btn-primary:hover::before {
  transform: scaleX(1);
}

.ep-btn-secondary {
  color: rgba(232, 244, 255, 0.82);
  border-color: rgba(123, 47, 255, 0.6);
  box-shadow: 0 0 14px rgba(123, 47, 255, 0.16);
}

.ep-btn-secondary::before {
  background: rgba(123, 47, 255, 0.18);
  transform-origin: right;
}

.ep-btn-secondary:hover {
  color: var(--arc-white);
  border-color: var(--coil-purple);
  box-shadow: var(--glow-purple);
}

.ep-btn-secondary:hover::before {
  transform: scaleX(1);
}

.ep-btn-outline {
  color: var(--arc-white) !important;
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.03);
}

.ep-btn-outline::before {
  display: none;
}

.ep-btn-outline:hover {
  border-color: var(--plasma-cyan);
  background: rgba(0, 255, 231, 0.07);
  box-shadow: 0 0 14px rgba(0, 255, 231, 0.18);
}

/* =========================================================
   Section Common
========================================================= */

.ep-description-section,
.ep-reviews-section,
.ep-highlights-section,
.ep-final-cta {
  position: relative;
  z-index: 1;
  padding: 86px 6%;
}

.ep-description-section,
.ep-reviews-section {
  max-width: 1180px;
  margin: 0 auto;
}

.ep-section-head {
  margin-bottom: 28px;
}

.ep-section-kicker {
  display: inline-block;
  color: var(--plasma-cyan);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(0, 255, 231, 0.5);
}

.ep-section-head h2,
.ep-final-cta h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
   Description
========================================================= */

.ep-description-content {
  background: linear-gradient(180deg, rgba(10, 26, 48, 0.86), rgba(5, 15, 30, 0.92));
  border: 1px solid rgba(0, 212, 255, 0.16);
  padding: 34px;
  color: rgba(232, 244, 255, 0.68);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 300;
  box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.025), 0 22px 55px rgba(0, 0, 0, 0.28);
}

.ep-description-content p {
  margin: 0 0 18px;
}

.ep-description-content p:last-child {
  margin-bottom: 0;
}

.ep-description-content h2,
.ep-description-content h3,
.ep-description-content h4 {
  color: var(--plasma-cyan);
  margin: 30px 0 14px;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ep-description-content ul,
.ep-description-content ol {
  margin: 18px 0;
  padding-left: 22px;
}

.ep-description-content li {
  margin-bottom: 10px;
}

/* =========================================================
   Highlights — hairline data-grid, matching the
   services / stats grid pattern used sitewide
========================================================= */

.ep-highlights-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.13);
  max-width: 1240px;
  margin: 0 auto;
}

.ep-highlight-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  background: rgba(5, 15, 30, 0.94);
  overflow: hidden;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.ep-highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), var(--plasma-cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ep-highlight-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(123, 47, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.ep-highlight-card:hover {
  background: rgba(0, 212, 255, 0.035);
  box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.035);
}

.ep-highlight-card:hover::before {
  transform: scaleX(1);
}

.ep-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 255, 0.08));
  color: var(--plasma-cyan);
  font-size: 1.3rem;
  margin-bottom: 22px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.ep-highlight-card:hover .ep-highlight-icon {
  border-color: var(--plasma-cyan);
  box-shadow: 0 0 16px rgba(0, 255, 231, 0.3);
  transform: scale(1.08);
}

.ep-highlight-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 12px;
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ep-highlight-card p {
  color: rgba(232, 244, 255, 0.62);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

/* =========================================================
   Reviews — matches the sitewide testimonial treatment
========================================================= */

.ep-reviews-list {
  display: grid;
  gap: 18px;
}

.ep-review-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 26, 48, 0.8), rgba(5, 15, 30, 0.8));
  border: 1px solid rgba(0, 212, 255, 0.1);
  padding: 28px 30px;
  color: rgba(232, 244, 255, 0.68);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.ep-review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Orbitron', monospace;
  font-size: 3.4rem;
  color: var(--electric-blue);
  opacity: 0.14;
  line-height: 1;
  transition: opacity 0.4s ease;
}

.ep-review-card:hover {
  border-color: rgba(0, 212, 255, 0.32);
  box-shadow: var(--glow-soft);
  transform: translateY(-3px);
}

.ep-review-card:hover::before {
  opacity: 0.26;
}

.ep-review-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--plasma-cyan);
  margin-bottom: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 1px;
}

.ep-review-header strong {
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.ep-review-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}

.ep-review-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(232, 244, 255, 0.42);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.ep-no-reviews {
  color: rgba(232, 244, 255, 0.62);
  background: linear-gradient(135deg, rgba(10, 26, 48, 0.7), rgba(5, 15, 30, 0.8));
  border: 1px solid rgba(0, 212, 255, 0.14);
  padding: 24px;
}

/* =========================================================
   Final CTA
========================================================= */

.ep-final-cta {
  padding-bottom: 110px;
}

.ep-final-cta-inner {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.18);
  padding: 64px 7%;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(10, 26, 48, 0.86), rgba(5, 15, 30, 0.92));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.ep-final-cta-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(0, 212, 255, 0.04) 25%,
    rgba(123, 47, 255, 0.04) 50%,
    rgba(0, 255, 231, 0.04) 75%,
    transparent 100%
  );
  animation: epHalo 14s linear infinite;
  pointer-events: none;
}

.ep-final-cta-inner h2,
.ep-final-cta p,
.ep-final-actions {
  position: relative;
  z-index: 1;
}

.ep-final-cta p {
  max-width: 720px;
  margin: 18px auto 30px;
  color: rgba(232, 244, 255, 0.65);
  font-size: 18px;
  line-height: 1.75;
}

.ep-final-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* =========================================================
   Loading / Error
========================================================= */

.energetika-product-page.is-loading .ep-title {
  opacity: 0.6;
}

.ep-error {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--deep-void);
  color: #ffffff;
}

.ep-error h2 {
  font-family: 'Orbitron', monospace;
  font-size: 38px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ep-error p {
  color: rgba(232, 244, 255, 0.65);
  font-family: 'Rajdhani', sans-serif;
}

/* =========================================================
   Keyframes
========================================================= */

@keyframes epGridDrift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

@keyframes epScanSweep {
  0%, 72%, 100% { transform: translateX(-100%); opacity: 0; }
  82% { opacity: 0.35; }
  94% { transform: translateX(100%); opacity: 0; }
}

@keyframes epFloatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(16px, -16px, 0) scale(1.05); }
}

@keyframes epDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes epHalo {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1024px) {
  .ep-product-hero {
    gap: 42px;
    padding: 80px 5%;
  }

  .ep-main-image {
    height: 470px;
  }
}

@media (max-width: 900px) {
  .ep-product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 5%;
  }

  .ep-product-info {
    max-width: 100%;
  }

  .ep-highlights-section {
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ep-main-image {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .ep-product-hero {
    padding: 46px 4.5%;
    gap: 34px;
  }

  .ep-product-hero::before {
    display: none;
  }

  .ep-product-gallery {
    padding: 14px;
  }

  .ep-main-image {
    height: 310px;
  }

  .ep-gallery-thumb {
    width: 72px;
    height: 72px;
    min-width: 72px;
  }

  .ep-title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .ep-short-desc {
    font-size: 17px;
  }

  .ep-actions,
  .ep-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ep-btn {
    width: 100%;
  }

  .ep-description-section,
  .ep-reviews-section,
  .ep-highlights-section,
  .ep-final-cta {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }

  .ep-description-content,
  .ep-final-cta-inner {
    padding: 26px 20px;
  }

  .ep-highlight-card {
    padding: 26px 22px;
  }

  .ep-review-header {
    flex-direction: column;
  }

  .energetika-product-page::after,
  .ep-product-hero::after,
  .ep-final-cta-inner::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .energetika-product-page *,
  .energetika-product-page::before,
  .energetika-product-page::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}