/*
Theme Name: Cube Eco
Theme URI: https://cube-eco.pl/
Author: Cube Eco
Version: 1.0.0
*/

:root {
  color-scheme: dark;
  --bg: #071321;
  --panel: #0b1d31;
  --line: #245d8e;
  --cyan: #61d7ff;
  --green: #6bf0c2;
  --violet: #8068f2;
  --text: #f2f7ff;
  --muted: #a9bdd3;
  --warn: #f0a53a;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, Segoe UI, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; overflow-x: hidden; }
img, video { max-width: 100%; }
html { overflow-x: hidden; }
body::before,
body::after { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; }
body::before {
  opacity: .52;
  background:
    repeating-linear-gradient(90deg, rgba(97, 215, 255, .07) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(107, 240, 194, .055) 0 1px, transparent 1px 72px),
    linear-gradient(115deg, transparent 0 34%, rgba(97, 215, 255, .08) 35%, transparent 43%, transparent 70%, rgba(128, 104, 242, .06) 73%, transparent 82%);
  background-size: 180px 180px, 144px 144px, 260% 260%;
  animation: cubeGridDrift 28s linear infinite;
}
body::after {
  opacity: .38;
  background: linear-gradient(100deg, transparent 0 44%, rgba(107, 240, 194, .22) 48%, rgba(97, 215, 255, .18) 50%, transparent 56% 100%);
  transform: translateX(-70%);
  animation: cubeScan 9s ease-in-out infinite;
}
body > * { position: relative; z-index: 1; }
@keyframes cubeGridDrift {
  0% { background-position: 0 0, 0 0, 0% 50%; }
  100% { background-position: 180px 90px, -144px 72px, 100% 50%; }
}
@keyframes cubeScan {
  0%, 20% { transform: translateX(-80%); opacity: 0; }
  42% { opacity: .32; }
  70%, 100% { transform: translateX(80%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .hero-slide { animation: none; }
  .hero-slide:first-child { opacity: 1; }
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 10; background: rgba(7, 19, 33, .92); border-bottom: 1px solid rgba(97, 215, 255, .18); backdrop-filter: blur(16px); }
.nav .wrap { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { font-size: 26px; font-weight: 800; }
.brand-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-logo img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; background: #fff; padding: 2px; box-shadow: 0 0 18px rgba(107, 240, 194, .18); }
.navlinks { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.btn, button, input[type=submit] { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 8px; background: #1d9bf0; color: white; font-weight: 800; text-decoration: none; border: 1px solid #61d7ff; cursor: pointer; }
.btn.alt { background: transparent; border-color: var(--green); color: var(--green); }
.lang-switch { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid rgba(97, 215, 255, .2); border-radius: 8px; background: rgba(8, 17, 26, .8); }
.lang-switch button { min-height: 30px; padding: 0 8px; border-radius: 6px; font-size: 12px; background: transparent; border-color: transparent; color: var(--muted); }
.lang-switch button.active { background: rgba(97, 215, 255, .16); color: var(--cyan); border-color: rgba(97, 215, 255, .45); }
.hero { padding: 72px 0 36px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: center; }
h1 { font-size: clamp(44px, 8vw, 88px); line-height: .95; margin: 0 0 22px; }
.hero-logo { width: min(240px, 74%); margin: 0 0 20px; padding: 8px; border: 1px solid rgba(107, 240, 194, .28); border-radius: 8px; background: rgba(255, 255, 255, .96); box-shadow: 0 20px 50px rgba(0, 0, 0, .26), 0 0 34px rgba(107, 240, 194, .12); }
.hero-logo img { display: block; width: 100%; height: auto; border-radius: 6px; }
.lead { max-width: 680px; color: #d6e7fa; font-size: 20px; margin: 0 0 28px; }
.cube-eco-banner-section { padding: 28px 0 18px; }
.cube-eco-banner-section .wrap { width: min(1440px, calc(100% - 32px)); }
.cube-eco-banner {
  --ce-bg: #03070d;
  --ce-panel: rgba(5, 14, 25, .72);
  --ce-line: rgba(104, 226, 255, .36);
  --ce-cyan: #20d7ff;
  --ce-green: #60f27a;
  --ce-yellow: #ffd54a;
  --ce-red: #ff4545;
  --ce-white: #f5fbff;
  --ce-muted: #b8c8d7;
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 58vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(97, 215, 255, .32);
  border-radius: 8px;
  background: var(--ce-bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .48), inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.cube-eco-banner::before,
.cube-eco-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.cube-eco-banner::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .62) 42%, rgba(0, 0, 0, .18) 72%, rgba(0, 0, 0, .58) 100%),
    radial-gradient(circle at 18% 55%, rgba(32, 215, 255, .22), transparent 28%),
    radial-gradient(circle at 74% 40%, rgba(96, 242, 122, .16), transparent 24%);
}
.cube-eco-banner::after {
  opacity: .38;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.ce-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #03070d;
}
.ce-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: ceSlide 30s infinite;
}
.ce-slide:nth-child(2) { animation-delay: 6s; }
.ce-slide:nth-child(3) { animation-delay: 12s; }
.ce-slide:nth-child(4) { animation-delay: 18s; }
.ce-slide:nth-child(5) { animation-delay: 24s; }
.ce-slide:first-child { opacity: 1; }
.ce-slide img,
.ce-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.07);
}
.ce-slide:nth-child(1) img { object-position: center 48%; }
.ce-slide:nth-child(2) video,
.ce-slide:nth-child(3) img,
.ce-slide:nth-child(4) video,
.ce-slide:nth-child(5) img { object-position: 74% center; }
.ce-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: center;
  gap: clamp(18px, 5vw, 84px);
  padding: clamp(26px, 5vw, 72px);
}
.ce-copy { max-width: 690px; }
.ce-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--ce-line);
  border-radius: 999px;
  color: var(--ce-cyan);
  background: rgba(5, 14, 25, .7);
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
}
.ce-title {
  margin: 0;
  max-width: 12ch;
  color: var(--ce-white);
  font-size: clamp(44px, 6.9vw, 94px);
  line-height: .95;
  letter-spacing: 0;
  text-wrap: balance;
}
.ce-title span {
  display: block;
  color: var(--ce-cyan);
  text-shadow: 0 0 24px rgba(32, 215, 255, .42);
}
.ce-emergency {
  max-width: 650px;
  margin: 18px 0 0;
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 213, 74, .46);
  border-left: 4px solid var(--ce-yellow);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 213, 74, .18), rgba(32, 215, 255, .1) 54%, rgba(5, 14, 25, .72));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3), 0 0 28px rgba(255, 213, 74, .12);
}
.ce-emergency-brand {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  color: #04111f;
  background: linear-gradient(135deg, var(--ce-yellow), var(--ce-green));
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
.ce-emergency strong {
  display: block;
  margin-top: 9px;
  color: var(--ce-white);
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 0 26px rgba(32, 215, 255, .25);
  text-wrap: balance;
}
.ce-emergency em {
  display: block;
  margin-top: 8px;
  color: var(--ce-yellow);
  font-size: clamp(13px, 1.25vw, 17px);
  font-style: normal;
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}
.ce-tagline {
  position: relative;
  min-height: clamp(120px, 10vw, 172px);
  margin: clamp(16px, 2vw, 22px) 0 0;
  color: var(--ce-white);
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}
.ce-tagline span {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: min(100%, 15ch);
  opacity: 0;
  transform: translateY(20px);
  animation: ceWords 16s infinite;
}
.ce-tagline span:nth-child(2) { animation-delay: 4s; }
.ce-tagline span:nth-child(3) { animation-delay: 8s; }
.ce-tagline span:nth-child(4) { animation-delay: 12s; }
.ce-description {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--ce-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}
.ce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.ce-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #031019;
  background: linear-gradient(135deg, var(--ce-cyan), var(--ce-green));
  font-weight: 900;
  text-decoration: none;
  line-height: 1.1;
  box-shadow: 0 18px 42px rgba(32, 215, 255, .22);
}
.ce-button.secondary {
  color: var(--ce-white);
  border-color: var(--ce-line);
  background: rgba(5, 14, 25, .66);
  box-shadow: none;
  backdrop-filter: blur(14px);
}
.ce-device {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .03));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .08);
  transform: rotate(2deg);
}
.ce-device::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .24);
  transform: translateX(-50%);
  z-index: 4;
}
.ce-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #07111d;
}
.ce-phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: cePhone 18s infinite;
}
.ce-phone-screen img:nth-child(2) { animation-delay: 3s; }
.ce-phone-screen img:nth-child(3) { animation-delay: 6s; }
.ce-phone-screen img:nth-child(4) { animation-delay: 9s; }
.ce-phone-screen img:nth-child(5) { animation-delay: 12s; }
.ce-phone-screen img:nth-child(6) { animation-delay: 15s; }
.ce-stats {
  position: absolute;
  right: clamp(14px, 2.4vw, 34px);
  bottom: clamp(14px, 2.4vw, 34px);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 10px;
  width: min(720px, calc(100% - 28px));
}
.ce-stat {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(4, 13, 23, .74);
  backdrop-filter: blur(16px);
}
.ce-stat strong {
  display: block;
  color: var(--ce-white);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1;
}
.ce-stat span {
  display: block;
  margin-top: 8px;
  color: var(--ce-muted);
  font-size: 13px;
  line-height: 1.2;
}
.ce-alert { color: var(--ce-yellow); }
.ce-ok { color: var(--ce-green); }
.ce-red { color: var(--ce-red); }
@keyframes ceSlide {
  0%, 100% { opacity: 0; transform: scale(1.04); }
  5%, 25% { opacity: 1; }
  31% { opacity: 0; transform: scale(1.11); }
}
@keyframes ceWords {
  0%, 100% { opacity: 0; transform: translateY(20px); }
  7%, 21% { opacity: 1; transform: translateY(0); }
  27% { opacity: 0; transform: translateY(-18px); }
}
@keyframes cePhone {
  0%, 100% { opacity: 0; transform: scale(1.025); }
  5%, 16% { opacity: 1; }
  21% { opacity: 0; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .ce-slide,
  .ce-tagline span,
  .ce-phone-screen img { animation: none; }
  .ce-slide:first-child,
  .ce-tagline span:first-child,
  .ce-phone-screen img:first-child { opacity: 1; }
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-slider { position: relative; min-height: 460px; overflow: hidden; border: 1px solid rgba(97, 215, 255, .35); border-radius: 8px; background: #071321; box-shadow: 0 24px 60px rgba(0, 0, 0, .32), inset 0 -8px 0 rgba(97, 215, 255, .08); }
.hero-product-video { position: relative; min-height: 460px; overflow: hidden; border: 1px solid rgba(97, 215, 255, .35); border-radius: 8px; background: #050d18; box-shadow: 0 24px 60px rgba(0, 0, 0, .32), inset 0 -8px 0 rgba(97, 215, 255, .08); }
.hero-product-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; background: #050d18; }
.hero-product-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 19, 33, .5), rgba(7, 19, 33, .06) 58%, rgba(7, 19, 33, .2)); pointer-events: none; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; animation: cubeHeroSlider 15s infinite; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 19, 33, .74), rgba(7, 19, 33, .12) 58%, rgba(7, 19, 33, .18)); pointer-events: none; }
.hero-slide-2 { animation-delay: 5s; }
.hero-slide-3 { animation-delay: 10s; }
@keyframes cubeHeroSlider {
  0%, 27% { opacity: 1; }
  33%, 94% { opacity: 0; }
  100% { opacity: 1; }
}
.hero-slider-panel { position: absolute; left: 24px; right: 24px; bottom: 24px; max-width: 390px; border: 1px solid rgba(107, 240, 194, .34); border-radius: 8px; background: rgba(5, 13, 24, .78); backdrop-filter: blur(12px); padding: 18px; }
.hero-product-panel { z-index: 2; }
.hero-slider-panel span { display: inline-flex; margin-bottom: 8px; padding: 4px 8px; border-radius: 6px; background: rgba(107, 240, 194, .14); color: var(--green); font-size: 12px; font-weight: 900; }
.hero-slider-panel strong { display: block; font-size: 24px; line-height: 1.12; }
.hero-slider-panel small { display: block; margin-top: 8px; color: var(--muted); }
.device { min-height: 460px; border: 1px solid rgba(97, 215, 255, .35); border-radius: 8px; background: radial-gradient(circle at 72% 20%, rgba(128, 104, 242, .26), transparent 32%), linear-gradient(145deg, #0d2740, #0a1724 60%, #111829); padding: 22px; display: grid; align-content: center; gap: 14px; box-shadow: inset 0 -8px 0 rgba(97, 215, 255, .08); }
.appbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.appname { font-size: 28px; font-weight: 900; }
.pill { border: 1px solid rgba(107, 240, 194, .5); color: var(--green); border-radius: 999px; padding: 5px 10px; font-size: 12px; }
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tile { min-height: 116px; border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: rgba(5, 13, 24, .62); }
.tile:nth-child(2) { border-color: var(--violet); }
.tile:nth-child(3) { border-color: var(--warn); grid-column: 1 / -1; }
.tile:nth-child(4) { border-color: var(--green); }
.tile b { display: block; font-size: 20px; margin-bottom: 10px; }
.tile span { color: var(--muted); font-size: 14px; }
section { padding: 44px 0; }
h2 { font-size: 34px; margin: 0 0 18px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { border: 1px solid rgba(97, 215, 255, .24); border-radius: 8px; background: var(--panel); padding: 20px; }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0 0 10px; color: var(--muted); }
.rich-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.benefit-card { border: 1px solid rgba(107, 240, 194, .24); border-radius: 8px; background: linear-gradient(145deg, rgba(11, 29, 49, .98), rgba(7, 19, 33, .96)); padding: 20px; }
.benefit-card h3 { margin: 0 0 10px; font-size: 20px; color: #e9fff8; }
.benefit-card p { margin: 0; color: var(--muted); }
.info-band, .protect-panel, .vehicles-panel { margin-top: 18px; border: 1px solid rgba(97, 215, 255, .24); border-radius: 8px; background: rgba(8, 17, 26, .72); padding: 22px; }
.info-band { display: grid; grid-template-columns: .92fr 1.08fr; gap: 20px; align-items: start; }
.info-band h3, .protect-panel h3, .vehicles-panel h2, .vehicle-groups h3 { margin: 0 0 10px; }
.parameter-list { margin: 0; padding-left: 20px; color: #d6e7fa; }
.parameter-list li { margin: 0 0 8px; }
.protect-panel { border-left: 4px solid var(--green); }
.vehicles-panel { display: grid; grid-template-columns: .86fr 1.14fr; gap: 22px; }
.vehicle-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vehicle-groups article { border: 1px solid rgba(240, 165, 58, .26); border-radius: 8px; background: rgba(26, 21, 18, .72); padding: 16px; }
.vehicle-groups p { margin: 0; color: var(--muted); }
.section-head { margin-bottom: 18px; }
.top-films { padding: 34px 0 40px; }
.top-films .section-head { max-width: 780px; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.video-grid.top-film-grid,
.single-video-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; align-items: start; }
.lower-film-section { padding-top: 10px; }
.lower-film-section .section-head { max-width: 780px; }
.dpf-protection-section { padding-top: 18px; }
.dpf-protection-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .72fr); gap: 18px; align-items: start; }
.dpf-copy-panel { border: 1px solid rgba(107, 240, 194, .24); border-radius: 8px; background: linear-gradient(145deg, rgba(8, 24, 40, .9), rgba(5, 13, 24, .78)); padding: 22px; }
.section-pill { min-height: 30px; display: inline-flex; align-items: center; padding: 0 10px; border: 1px solid rgba(107, 240, 194, .52); border-radius: 6px; background: rgba(107, 240, 194, .12); color: var(--green); font-size: 12px; font-weight: 950; text-transform: uppercase; }
.dpf-copy-panel h2 { margin: 14px 0 12px; }
.dpf-points { display: grid; gap: 10px; margin: 18px 0 20px; padding: 0; list-style: none; }
.dpf-points li { position: relative; min-height: 44px; padding: 10px 12px 10px 38px; border: 1px solid rgba(97, 215, 255, .18); border-radius: 8px; background: rgba(5, 13, 24, .52); color: #d6e7fa; }
.dpf-points li::before { content: ""; position: absolute; left: 14px; top: 18px; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(107, 240, 194, .55); }
.dpf-video-card { align-self: stretch; }
.video-card { position: relative; border: 1px solid rgba(97, 215, 255, .24); border-radius: 8px; background: var(--panel); padding: 16px; }
.video-card video { display: block; width: 100%; aspect-ratio: 9 / 16; max-height: 720px; object-fit: contain; border-radius: 8px; background: #050d18; border: 1px solid rgba(97, 215, 255, .18); }
.top-film-card video { width: min(100%, 405px); max-height: none; margin: 0 auto; object-fit: cover; }
.sound-unlock { display: block; position: absolute; top: 28px; right: 28px; z-index: 3; }
.sound-unlock button { min-height: 38px; padding: 0 12px; border-color: rgba(107, 240, 194, .72); background: rgba(5, 13, 24, .88); color: var(--green); box-shadow: 0 8px 20px rgba(0, 0, 0, .32); }
.video-card.sound-blocked .sound-unlock button { border-color: rgba(97, 215, 255, .72); color: #d6e7fa; }
.video-card.sound-in-view .sound-unlock button { background: rgba(107, 240, 194, .18); border-color: rgba(107, 240, 194, .95); color: #e9fff8; }
.video-card h3 { margin: 14px 0 8px; font-size: 20px; }
.video-card p { margin: 0; color: var(--muted); }
.shop { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.shop-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; align-items: stretch; }
.product-card { position: relative; min-height: 445px; display: flex; flex-direction: column; gap: 12px; border: 1px solid rgba(97, 215, 255, .24); border-radius: 8px; background: linear-gradient(180deg, rgba(11, 29, 49, .98), rgba(7, 19, 33, .98)); padding: 18px; overflow: hidden; }
.product-card.featured { border-color: rgba(107, 240, 194, .5); }
@property --cube-demo-neon-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.product-card.demo {
  --cube-demo-neon-angle: 0deg;
  isolation: isolate;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(11, 29, 49, .99), rgba(7, 19, 33, .99)) padding-box,
    conic-gradient(
      from var(--cube-demo-neon-angle),
      rgba(104, 255, 204, .32),
      rgba(82, 255, 178, 1),
      rgba(177, 255, 226, .72),
      rgba(46, 232, 156, .96),
      rgba(130, 255, 212, 1),
      rgba(104, 255, 204, .32)
    ) border-box;
  box-shadow:
    0 0 0 1px rgba(96, 255, 190, .34),
    0 18px 44px rgba(44, 212, 160, .16),
    0 0 28px rgba(82, 255, 178, .24),
    0 0 58px rgba(82, 255, 178, .14);
  animation: cube-demo-neon-flow 8s linear infinite;
}
.product-card.demo > * { position: relative; z-index: 2; }
.product-card.demo::after {
  content: "";
  position: absolute;
  inset: -34px;
  z-index: 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(82, 255, 178, .34), transparent 46%),
    radial-gradient(circle at 10% 70%, rgba(96, 255, 190, .20), transparent 42%),
    radial-gradient(circle at 90% 58%, rgba(46, 232, 156, .18), transparent 38%);
  filter: blur(18px);
  opacity: .86;
  pointer-events: none;
  animation: cube-demo-neon-breathe 5.6s ease-in-out infinite;
}
.product-card.lifetime { border-color: rgba(240, 165, 58, .58); }
.product-badge { align-self: flex-start; min-height: 28px; display: inline-flex; align-items: center; padding: 0 10px; border-radius: 6px; background: #0f7f65; color: white; font-weight: 900; font-size: 12px; }
.product-card.demo .product-badge { background: linear-gradient(135deg, #33856f, #2f6fa8); box-shadow: 0 0 18px rgba(107, 240, 194, .18); }
.product-card.lifetime .product-badge { background: #a46414; }
.product-media, .product-icon { height: 168px; display: grid; place-items: center; border-radius: 8px; background: rgba(5, 13, 24, .64); border: 1px solid rgba(97, 215, 255, .18); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-icon { color: var(--green); font-size: 42px; font-weight: 950; letter-spacing: 0; }
.product-card h3 { min-height: 54px; margin: 0; font-size: 21px; line-height: 1.25; }
.product-card p { margin: 0; color: var(--muted); font-size: 14px; }
.product-price { margin-top: auto; color: var(--green); font-size: 29px; line-height: 1.05; font-weight: 950; }
.product-card.demo .product-price { color: #9ff6dc; text-shadow: 0 0 20px rgba(107, 240, 194, .22); }
.product-card.lifetime .product-price { color: #ffd39b; }
.product-card .btn { width: 100%; }
.product-card.demo .btn {
  border-color: rgba(107, 240, 194, .84);
  color: #baffea;
  box-shadow: inset 0 0 0 1px rgba(107, 240, 194, .08), 0 0 20px rgba(107, 240, 194, .10);
}
.product-card.demo .btn:hover,
.product-card.demo .btn:focus-visible {
  background: rgba(107, 240, 194, .12);
  box-shadow: inset 0 0 0 1px rgba(107, 240, 194, .18), 0 0 28px rgba(107, 240, 194, .18);
}
@keyframes cube-demo-neon-flow {
  to { --cube-demo-neon-angle: 360deg; }
}
@keyframes cube-demo-neon-breathe {
  0%, 100% { opacity: .48; transform: scale(.985); }
  50% { opacity: .82; transform: scale(1.015); }
}
@media (prefers-reduced-motion: reduce) {
  .product-card.demo,
  .product-card.demo::after { animation: none; }
}
.price { font-size: 36px; font-weight: 900; color: var(--green); }
.small { color: var(--muted); font-size: 14px; }
.small-lead { font-size: 18px; color: #d6e7fa; }
.product-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 22px; align-items: center; }
.product-shot { margin: 0; border: 1px solid rgba(97, 215, 255, .28); border-radius: 8px; background: linear-gradient(145deg, rgba(13, 39, 64, .96), rgba(5, 13, 24, .98)); padding: 18px; }
.product-shot img { display: block; width: 100%; height: auto; border-radius: 8px; }
.product-shot figcaption { color: var(--muted); font-size: 13px; margin-top: 10px; }
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.price-row div { border: 1px solid rgba(107, 240, 194, .25); border-radius: 8px; padding: 14px; background: rgba(8, 17, 26, .72); }
.price-row span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.price-row strong { display: block; color: var(--green); font-size: 25px; line-height: 1.1; }
.aso-note { margin: 16px 0 0; border-left: 4px solid var(--green); border-radius: 8px; background: rgba(107, 240, 194, .09); padding: 14px 16px; color: #d8fff1; font-size: 15px; }
.comic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.comic article { position: relative; min-height: 230px; border: 2px solid rgba(97, 215, 255, .34); border-radius: 8px; background: #0b1d31; padding: 54px 16px 16px; box-shadow: inset 0 -5px 0 rgba(97, 215, 255, .08); }
.comic article:nth-child(1) { border-color: rgba(240, 165, 58, .72); background: #1a1512; }
.comic article:nth-child(2) { border-color: rgba(128, 104, 242, .72); background: #14152b; }
.comic article:nth-child(3) { border-color: rgba(97, 215, 255, .72); }
.comic article:nth-child(4) { border-color: rgba(107, 240, 194, .78); background: #09241d; }
.comic span { position: absolute; top: 14px; left: 14px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: #04111f; background: var(--cyan); font-weight: 900; }
.comic h3 { margin: 0 0 10px; font-size: 19px; }
.comic p { margin: 0; color: var(--muted); }
.comic-images { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.comic-images figure { margin: 0; overflow: hidden; border: 1px solid rgba(255, 211, 69, .42); border-radius: 8px; background: #071321; box-shadow: 0 16px 34px rgba(0, 0, 0, .28); }
.comic-images img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0; }
.woocommerce ul.products li.product { width: auto !important; float: none !important; margin: 0 !important; border: 1px solid rgba(97, 215, 255, .24); border-radius: 8px; background: var(--panel); padding: 16px !important; }
.woocommerce ul.products li.product .button { width: 100%; margin-top: 10px; }
.woocommerce-cart .shop_table { width: 100%; table-layout: fixed; }
.woocommerce-cart .shop_table th,
.woocommerce-cart .shop_table td { overflow-wrap: anywhere; }
.woocommerce-cart table.cart img { width: 96px; height: auto; border-radius: 8px; }
.woocommerce-cart table.cart .product-name a { color: #f2f7ff; font-weight: 900; overflow-wrap: anywhere; }
.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal,
.woocommerce-cart .cart_totals .order-total .amount { color: var(--green); font-weight: 950; white-space: nowrap; }
.woocommerce-cart table.cart .quantity { display: inline-grid; grid-template-columns: 42px 60px 42px; max-width: 100%; border: 1px solid rgba(97, 215, 255, .34); border-radius: 8px; overflow: hidden; }
.woocommerce-cart table.cart .quantity input.qty { width: 60px; min-height: 42px; border: 0; border-left: 1px solid rgba(97, 215, 255, .22); border-right: 1px solid rgba(97, 215, 255, .22); background: rgba(5, 13, 24, .7); color: #f2f7ff; text-align: center; }
.woocommerce-checkout form.checkout,
.woocommerce-checkout .woocommerce-checkout-review-order { color: var(--text); }
.woocommerce-checkout #payment {
  border: 1px solid rgba(97, 215, 255, .24);
  border-radius: 8px;
  background: rgba(11, 29, 49, .98);
  color: var(--text);
  overflow: hidden;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid rgba(97, 215, 255, .18);
  padding: 18px;
}
.woocommerce-checkout #payment ul.payment_methods li,
.woocommerce-checkout #payment label { color: #f2f7ff; }
.woocommerce-checkout #payment div.payment_box {
  border: 1px solid rgba(107, 240, 194, .28);
  border-radius: 8px;
  background: rgba(5, 13, 24, .92) !important;
  color: #d6e7fa !important;
  padding: 16px;
}
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: rgba(5, 13, 24, .92) !important; }
.woocommerce-checkout #payment div.payment_box p,
.woocommerce-checkout #payment div.payment_box strong {
  color: #d6e7fa !important;
  opacity: 1;
}
.woocommerce-checkout #payment div.payment_box strong { color: var(--green) !important; }
.woocommerce-checkout #payment .place-order {
  background: rgba(8, 17, 26, .62);
  padding: 18px;
}
.woocommerce-checkout #payment .place-order .woocommerce-privacy-policy-text,
.woocommerce-checkout #payment .place-order .woocommerce-privacy-policy-text p { color: var(--muted); }
.woocommerce-checkout #payment .place-order a { color: #7fdcff; font-weight: 800; }
.woocommerce-checkout #payment #place_order {
  min-height: 48px;
  border: 1px solid #61d7ff;
  border-radius: 8px;
  background: #1d9bf0;
  color: #fff;
  font-weight: 900;
  text-shadow: none;
  box-shadow: none;
}
.cube-eco-portal input { width: min(440px, 100%); min-height: 42px; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--line); background: #071321; color: var(--text); }
.cube-eco-portal input[type=checkbox] { width: 18px; min-width: 18px; height: 18px; min-height: 18px; padding: 0; margin: 0; border-radius: 5px; border-color: rgba(97, 215, 255, .55); accent-color: var(--green); box-shadow: none; cursor: pointer; vertical-align: middle; }
.cube-eco-remember { margin: 8px 0 16px; }
.cube-eco-remember label { width: fit-content; display: inline-flex; align-items: center; justify-content: flex-start; gap: 10px; color: var(--muted); line-height: 1.35; cursor: pointer; }
.cube-eco-remember span { display: inline-block; }
.cube-eco-portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.cube-eco-portal-grid form, .cube-eco-buy-account { border: 1px solid rgba(97, 215, 255, .2); border-radius: 8px; background: rgba(7, 19, 33, .54); padding: 18px; }
.cube-eco-buy-account p { color: var(--muted); }
.cube-eco-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.cube-eco-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 12px; }
.cube-eco-form-grid p { margin: 0 0 8px; }
.cube-eco-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.cube-eco-resend { margin-top: 16px; border: 1px solid rgba(97, 215, 255, .18); border-radius: 8px; background: rgba(7, 19, 33, .42); padding: 18px; }
.cube-eco-dashboard-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 16px; }
.cube-eco-dashboard-head h3 { margin: 0 0 6px; font-size: 28px; line-height: 1.15; }
.cube-eco-kicker { margin: 0 0 5px; color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.cube-eco-status-pill { flex: 0 0 auto; min-height: 34px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid rgba(97, 215, 255, .42); border-radius: 8px; color: #d6e7fa; background: rgba(97, 215, 255, .1); font-weight: 900; }
.cube-eco-status-pill.is-active { border-color: rgba(107, 240, 194, .65); color: var(--green); background: rgba(107, 240, 194, .1); }
.cube-eco-status-pill.is-waiting { border-color: rgba(240, 165, 58, .65); color: #ffd39b; background: rgba(240, 165, 58, .1); }
.cube-eco-status-pill.is-error { border-color: rgba(255, 104, 104, .65); color: #ffb3b3; background: rgba(255, 104, 104, .1); }
.cube-eco-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 14px 0 16px; }
.cube-eco-metrics article { min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(107, 240, 194, .22); border-radius: 8px; background: linear-gradient(180deg, rgba(8, 24, 40, .9), rgba(5, 13, 24, .76)); padding: 14px; }
.cube-eco-metrics span { color: var(--muted); font-size: 13px; }
.cube-eco-metrics strong { display: block; margin: 8px 0; color: var(--green); font-size: 28px; line-height: 1.05; overflow-wrap: anywhere; }
.cube-eco-metrics small { color: #d6e7fa; font-size: 12px; line-height: 1.35; }
.cube-eco-account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 16px 0; }
.cube-eco-account-box { border: 1px solid rgba(97, 215, 255, .2); border-radius: 8px; background: rgba(7, 19, 33, .42); padding: 16px; }
.cube-eco-account-box h3 { margin: 0 0 12px; font-size: 19px; }
.cube-eco-account-box dl { display: grid; gap: 8px; margin: 0; }
.cube-eco-account-box dl div { display: grid; grid-template-columns: minmax(110px, .42fr) minmax(0, 1fr); gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(97, 215, 255, .12); }
.cube-eco-account-box dl div:last-child { border-bottom: 0; }
.cube-eco-account-box dt { color: var(--muted); font-size: 13px; }
.cube-eco-account-box dd { margin: 0; color: #f2f7ff; font-weight: 800; overflow-wrap: anywhere; }
.cube-eco-account-status { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 12px 0 16px; }
.cube-eco-account-status p { margin: 0; border: 1px solid rgba(107, 240, 194, .2); border-radius: 8px; padding: 12px; background: rgba(7, 19, 33, .52); color: #d6e7fa; }
.cube-eco-downloads { display: grid; grid-template-columns: 1fr 260px; gap: 18px; align-items: start; margin: 18px 0; border: 1px solid rgba(97, 215, 255, .2); border-radius: 8px; background: rgba(7, 19, 33, .42); padding: 18px; }
.cube-eco-downloads .btn { margin: 0 8px 8px 0; }
.cube-eco-download-limit { display: inline-flex; gap: 6px; align-items: center; border: 1px solid rgba(130, 255, 206, .35); border-radius: 8px; padding: 8px 10px; color: var(--text); background: rgba(30, 132, 104, .14); }
.cube-eco-download-link { max-width: 100%; color: var(--muted); font-size: 13px; overflow-wrap: anywhere; word-break: break-word; }
.cube-eco-qr { margin: 0; text-align: center; }
.cube-eco-qr img { display: block; width: min(100%, 220px); margin: 0 auto; border-radius: 8px; background: white; padding: 10px; }
.cube-eco-qr figcaption { margin-top: 8px; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
.cube-eco-muted { color: var(--muted); font-size: 14px; }
.cube-eco-password-rules { color: var(--muted); font-size: 13px; margin-top: -4px; }
.cube-eco-alert { color: #ffd39b; }
footer { border-top: 1px solid rgba(97, 215, 255, .18); padding: 28px 0 36px; color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 88px; height: 88px; object-fit: cover; border-radius: 8px; background: #fff; padding: 4px; }
@media (max-width: 820px) {
  .wrap { width: min(100% - 24px, 560px); }
  .cube-eco-banner-section { padding: 18px 0 12px; }
  .cube-eco-banner-section .wrap { width: min(100% - 24px, 680px); }
  .cube-eco-banner { min-height: 840px; }
  .cube-eco-banner::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .46) 46%, rgba(0, 0, 0, .8) 100%),
      radial-gradient(circle at 26% 34%, rgba(32, 215, 255, .2), transparent 32%),
      radial-gradient(circle at 78% 78%, rgba(96, 242, 122, .14), transparent 28%);
  }
  .ce-content { grid-template-columns: 1fr; align-items: start; gap: 18px; padding: 28px 28px 170px; }
  .ce-copy { max-width: 720px; }
  .ce-emergency { max-width: none; }
  .ce-emergency strong { font-size: clamp(24px, 6.2vw, 38px); }
  .ce-device { width: min(72vw, 360px); justify-self: center; transform: rotate(0); }
  .ce-stats { left: 20px; right: 20px; grid-template-columns: repeat(4, 1fr); width: auto; }
  .hero-grid, .shop, .product-grid, .price-row, .comic, .comic-images, .woocommerce ul.products, .rich-grid, .info-band, .vehicles-panel, .vehicle-groups, .cube-eco-portal-grid, .cube-eco-account-status, .cube-eco-form-grid, .cube-eco-downloads, .cube-eco-metrics, .cube-eco-account-grid, .video-grid, .shop-products, .dpf-protection-grid { grid-template-columns: minmax(0, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 34px 0 26px; }
  .top-films { padding: 24px 0 30px; }
  h1 { font-size: clamp(42px, 16vw, 60px); }
  h2 { font-size: 28px; line-height: 1.15; }
  .lead { font-size: 17px; }
  .hero-logo { width: min(210px, 70%); }
  .hero-product-video { order: -1; display: flex; flex-direction: column; min-height: 0; }
  .hero-product-video video { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
  .hero-product-video::after { display: none; }
  .hero-product-panel { position: relative; left: auto; right: auto; bottom: auto; max-width: none; border-width: 1px 0 0; border-radius: 0; background: rgba(5, 13, 24, .94); backdrop-filter: none; }
  .hero-slider { min-height: 340px; }
  .hero-slide img { object-position: 62% center; }
  .hero-slider-panel { left: 14px; right: 14px; bottom: 14px; }
  .hero-slider-panel strong { font-size: 20px; }
  .device { min-height: 380px; }
  .video-card { padding: 12px; }
  .video-card video { max-height: 78vh; }
  .top-film-card video { width: min(100%, 420px); max-height: none; }
  .sound-unlock { top: 22px; right: 22px; }
  .product-card { min-height: 0; padding: 16px; }
  .product-media, .product-icon { height: 190px; }
  .product-card h3 { min-height: 0; font-size: 24px; }
  .product-price { font-size: 34px; }
  .product-shot { padding: 12px; }
  .price-row strong { font-size: 22px; overflow-wrap: anywhere; }
  .cube-eco-dashboard-head { flex-direction: column; }
  .cube-eco-status-pill { width: 100%; justify-content: center; }
  .nav .wrap { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .brand { font-size: 22px; }
  .brand-logo img { width: 40px; height: 40px; }
  .navlinks { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .navlinks a { min-height: 38px; display: flex; align-items: center; padding: 0 8px; border: 1px solid rgba(97, 215, 255, .14); border-radius: 8px; text-decoration: none; }
  .navlinks .btn { grid-column: 1 / -1; width: 100%; }
  .lang-switch { grid-column: 1 / -1; width: 100%; overflow-x: auto; justify-content: flex-start; }
  .lang-switch button { flex: 1 0 auto; }
  .woocommerce-cart .woocommerce { max-width: 100%; overflow-x: hidden; }
  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-cart .cart_totals { width: 100%; max-width: 100%; overflow: hidden; }
  .woocommerce-cart table.shop_table_responsive,
  .woocommerce-cart table.shop_table_responsive tbody,
  .woocommerce-cart table.shop_table_responsive tr,
  .woocommerce-cart table.shop_table_responsive td { display: block; width: 100% !important; max-width: 100%; box-sizing: border-box; }
  .woocommerce-cart table.shop_table_responsive thead { display: none; }
  .woocommerce-cart table.shop_table_responsive tr.cart_item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 8px 14px;
    margin: 0 0 18px;
    border: 1px solid rgba(97, 215, 255, .24);
    border-radius: 8px;
    background: rgba(11, 29, 49, .98);
    padding: 14px;
    overflow: hidden;
  }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td {
    min-width: 0;
    border: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    background: transparent !important;
  }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td::before {
    float: none;
    display: inline-block;
    margin: 0 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
  }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail { grid-column: 1; grid-row: 1 / 5; }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-thumbnail::before,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name::before,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove::before { display: none; }
  .woocommerce-cart table.cart img { width: 86px; max-width: 86px; }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-quantity,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-remove { grid-column: 2; }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-name a { display: inline-block; max-width: 100%; font-size: 18px; line-height: 1.2; }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price .amount,
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal .amount {
    display: inline-block;
    max-width: 100%;
    color: var(--green);
    font-size: clamp(22px, 8vw, 32px);
    line-height: 1.05;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal {
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px !important;
    border-top: 1px solid rgba(97, 215, 255, .16) !important;
  }
  .woocommerce-cart table.cart .quantity { grid-template-columns: 40px 54px 40px; }
  .woocommerce-cart table.cart .quantity input.qty { width: 54px; }
  .woocommerce-cart .coupon,
  .woocommerce-cart .actions { display: grid !important; grid-template-columns: 1fr; gap: 10px; }
  .woocommerce-cart .coupon input,
  .woocommerce-cart .coupon button,
  .woocommerce-cart .actions button,
  .woocommerce-cart .wc-proceed-to-checkout .button { width: 100% !important; min-height: 52px; }
  .woocommerce-cart .cart_totals table.shop_table_responsive tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }
  .woocommerce-cart .cart_totals .order-total .amount { font-size: clamp(24px, 8vw, 34px); white-space: nowrap; }
  .woocommerce-cart .wp-block-woocommerce-cart,
  .woocommerce-cart .wc-block-components-sidebar-layout,
  .woocommerce-cart .wc-block-components-main,
  .woocommerce-cart .wc-block-components-sidebar,
  .woocommerce-cart .wc-block-cart-items { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
  .woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart { display: block !important; }
  .woocommerce-cart .wc-block-cart-items { display: block !important; border-collapse: separate; }
  .woocommerce-cart .wc-block-cart-items__row {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 10px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    border: 1px solid rgba(97, 215, 255, .24);
    border-radius: 8px;
    background: rgba(11, 29, 49, .98);
    padding: 14px !important;
    box-sizing: border-box;
    overflow: hidden;
  }
  .woocommerce-cart .wc-block-cart-item__image {
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    width: 92px !important;
    max-width: 92px !important;
    padding: 0 !important;
  }
  .woocommerce-cart .wc-block-cart-item__image img { width: 92px !important; max-width: 92px !important; height: auto; border-radius: 8px; }
  .woocommerce-cart .wc-block-cart-item__product {
    grid-column: 2 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .woocommerce-cart .wc-block-cart-item__wrap { width: 100%; max-width: 100%; min-width: 0; }
  .woocommerce-cart .wc-block-cart-item__wrap a,
  .woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-name {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .woocommerce-cart .wc-block-cart-item__prices,
  .woocommerce-cart .wc-block-components-product-price {
    max-width: 100%;
    color: var(--green);
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.04;
    font-weight: 950;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .woocommerce-cart .wc-block-cart-item__total { display: none !important; }
  .woocommerce-cart .wc-block-components-quantity-selector { max-width: 150px; }
  .woocommerce-cart .wc-block-components-totals-footer-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }
  .woocommerce-cart .wc-block-components-totals-item__label { min-width: 0; overflow-wrap: anywhere; }
  .woocommerce-cart .wc-block-components-totals-item__value,
  .woocommerce-cart .wc-block-components-totals-item__value .amount {
    max-width: 42vw;
    color: var(--green);
    font-size: clamp(22px, 7vw, 32px);
    font-weight: 950;
    white-space: nowrap;
    text-align: right;
  }
  .footer-brand { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  .wrap { width: calc(100% - 18px); }
  .cube-eco-banner-section { padding-top: 10px; }
  .cube-eco-banner-section .wrap { width: calc(100% - 18px); }
  .cube-eco-banner { min-height: 890px; }
  .ce-content { padding: 20px 16px 176px; }
  .ce-kicker { margin-bottom: 12px; font-size: 11px; }
  .ce-title { max-width: 9ch; font-size: clamp(40px, 14vw, 62px); }
  .ce-emergency { margin-top: 14px; padding: 12px; }
  .ce-emergency strong { font-size: clamp(22px, 7.2vw, 32px); }
  .ce-emergency em { font-size: 12px; }
  .ce-tagline { min-height: 148px; font-size: clamp(23px, 8vw, 34px); }
  .ce-description { margin-top: 22px; font-size: 15px; }
  .ce-actions { display: grid; grid-template-columns: 1fr; margin-top: 20px; }
  .ce-device { width: min(58vw, 250px); margin-top: -4px; }
  .ce-stats { grid-template-columns: 1fr 1fr; gap: 6px; left: 8px; right: 8px; bottom: 8px; }
  .ce-stat { min-height: 74px; padding: 10px 8px; }
  .ce-stat strong { font-size: 17px; }
  .ce-stat span { font-size: 11px; }
  section { padding: 32px 0; }
  .hero { padding-top: 24px; }
  .top-films { padding-top: 18px; }
  .actions .btn { width: 100%; }
  .hero-slider { min-height: 300px; }
  .hero-product-video { min-height: 0; }
  .hero-product-panel { padding: 12px; }
  .hero-slider-panel { padding: 14px; }
  .hero-slider-panel strong { font-size: 18px; }
  .cube-eco-account-box dl div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .cube-eco-metrics strong { font-size: 26px; }
  .sound-unlock { left: 24px; right: 24px; }
  .sound-unlock button { width: 100%; }
  .product-media, .product-icon { height: 170px; }
  .card, .benefit-card, .info-band, .protect-panel, .vehicles-panel, .video-card, .product-card, .dpf-copy-panel { padding: 14px; }
  .woocommerce ul.products li.product { padding: 14px !important; }
}
@media (min-width: 821px) and (max-width: 1120px) {
  .shop-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
