/* ============================================================
   HYDRIFY ENERGY — PRODUCT PAGE (Attractive Redesign)
   ============================================================ */

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  margin-top: 76px;
  background: linear-gradient(90deg, var(--dark2), rgba(61,214,232,.04), var(--dark2));
  border-bottom: 1px solid rgba(61,214,232,.15);
  padding: 13px 0;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,40px);
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--muted);
}
.breadcrumb-inner a { color: var(--muted); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--cyan); }
.bc-sep { color: rgba(61,214,232,.4); font-size: 1rem; }
.bc-active { color: var(--cyan); font-weight: 600; }

/* ── PRODUCT SECTION ── */
.product-section {
  padding: clamp(36px,5vw,64px) 0 clamp(60px,8vw,100px);
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(61,214,232,.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(91,141,238,.05) 0%, transparent 60%),
    var(--dark);
  position: relative; overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(61,214,232,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,214,232,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.product-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,40px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px); align-items: start;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.product-gallery { position: sticky; top: 96px; }

.main-img-wrap {
  position: relative;
  background: linear-gradient(145deg, #061222, #0a1e35, #061222);
  border: 1px solid rgba(61,214,232,.25);
  border-radius: 28px; overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow:
    0 0 0 1px rgba(61,214,232,.08),
    0 20px 80px rgba(0,0,0,.5),
    0 0 120px rgba(61,214,232,.08),
    inset 0 0 60px rgba(61,214,232,.03);
}
/* animated corner accents */
.main-img-wrap::before, .main-img-wrap::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-color: var(--cyan); border-style: solid;
  opacity: .5;
}
.main-img-wrap::before { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.main-img-wrap::after  { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.prod-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--grad); color: #000;
  font-family: 'Orbitron', sans-serif; font-size: .62rem;
  font-weight: 800; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 20px; z-index: 2;
  box-shadow: 0 4px 16px rgba(61,214,232,.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 4px 16px rgba(61,214,232,.3); }
  50%      { box-shadow: 0 4px 28px rgba(61,214,232,.7); }
}

.main-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

/* ── Charger 3D illustration ── */
.charger-render {
  display: flex; align-items: flex-end; gap: 32px; padding: 24px;
}
.cr-body {
  width: 190px;
  background: linear-gradient(160deg, #f0f6fc 0%, #d4e8f4 35%, #b0cfe0 70%, #8ab2c8 100%);
  border-radius: 24px;
  padding: 20px 16px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.5),
    0 0 0 1px rgba(61,214,232,.4),
    0 0 40px rgba(61,214,232,.15),
    inset 0 2px 0 rgba(255,255,255,.5),
    inset 0 -2px 0 rgba(0,0,0,.1);
  position: relative;
  animation: chargerFloat 4s ease-in-out infinite;
}
@keyframes chargerFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(.5deg); }
}
.cr-body::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.15), transparent);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

.cr-screen {
  width: 100%;
  background: linear-gradient(160deg, #050f1e, #0a1628);
  border-radius: 12px; padding: 12px 14px;
  border: 1px solid rgba(61,214,232,.5);
  box-shadow: 0 0 20px rgba(61,214,232,.2), inset 0 0 16px rgba(61,214,232,.1);
}
.cr-screen-top { display: flex; gap: 5px; margin-bottom: 8px; }
.cr-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); opacity: .5;
  animation: dotBlink 1.8s ease-in-out infinite;
}
.cr-dot:nth-child(2) { animation-delay: .3s; background: var(--green); }
.cr-dot:nth-child(3) { animation-delay: .6s; background: var(--purple); }
@keyframes dotBlink { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

.cr-display {
  font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 900;
  color: var(--cyan); text-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(61,214,232,.4);
  line-height: 1;
}
.cr-display span { font-size: .72rem; opacity: .75; }
.cr-status {
  font-size: .6rem; color: var(--green); margin-top: 5px;
  letter-spacing: 2px; font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 8px var(--green);
  animation: statusBlink 2s ease-in-out infinite;
}
@keyframes statusBlink { 0%,100% { opacity: .7; } 50% { opacity: 1; } }

.cr-logo {
  font-family: 'Orbitron', sans-serif; font-size: .5rem;
  color: rgba(61,214,232,.55); letter-spacing: 2.5px;
  text-transform: uppercase;
}
.cr-port {
  width: 56px; height: 56px; background: #050f1e;
  border-radius: 50%; border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(61,214,232,.4), inset 0 0 12px rgba(61,214,232,.1);
  animation: portGlow 2s ease-in-out infinite;
}
@keyframes portGlow {
  0%,100% { box-shadow: 0 0 16px rgba(61,214,232,.3), inset 0 0 8px rgba(61,214,232,.08); }
  50%      { box-shadow: 0 0 32px rgba(61,214,232,.6), inset 0 0 16px rgba(61,214,232,.15); }
}
.cr-port-inner { font-size: 1.6rem; filter: drop-shadow(0 0 8px var(--cyan)); }

.cr-cable {
  width: 5px; height: 48px;
  background: linear-gradient(180deg, var(--cyan), rgba(61,214,232,.15));
  border-radius: 3px; margin-top: -6px;
  box-shadow: 0 0 10px rgba(61,214,232,.3);
}

/* ── Phone mockup ── */
.cr-phone {
  width: 84px;
  background: linear-gradient(160deg, #0d1f35, #061222);
  border-radius: 16px; border: 2px solid rgba(61,214,232,.35);
  padding: 12px 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 20px rgba(61,214,232,.12);
  margin-bottom: 24px;
  animation: phoneFloat 4s ease-in-out infinite .8s;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.cr-phone-screen { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.cr-app-icon { font-size: 1.4rem; filter: drop-shadow(0 0 6px var(--cyan)); }
.cr-app-text {
  font-size: .5rem; color: var(--cyan);
  font-family: 'Orbitron', sans-serif; letter-spacing: .8px;
}
.cr-charge-bar {
  width: 100%; height: 6px;
  background: rgba(61,214,232,.12); border-radius: 4px; overflow: hidden;
}
.cr-charge-fill {
  height: 100%; width: 72%;
  background: var(--grad); border-radius: 4px;
  animation: chargeAnim 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(61,214,232,.5);
}
@keyframes chargeAnim { 0% { width:20%; } 50% { width:90%; } 100% { width:20%; } }

/* ── Thumbnails ── */
.thumb-row { display: flex; gap: 10px; }
.thumb {
  flex: 1; aspect-ratio: 1;
  background: var(--dark3);
  border: 1.5px solid rgba(61,214,232,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.thumb:hover { border-color: rgba(61,214,232,.5); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(61,214,232,.15); }
.thumb.active { border-color: var(--cyan); box-shadow: 0 0 18px rgba(61,214,232,.3); transform: translateY(-3px); }
.thumb-render {
  font-family: 'Orbitron', sans-serif; font-size: .58rem;
  color: var(--muted); text-align: center; padding: 8px 4px;
}
.thumb-render.front { color: var(--cyan); font-weight: 700; }

/* ══════════════════════════════════
   PRODUCT INFO
══════════════════════════════════ */
.product-info { display: flex; flex-direction: column; gap: 0; }

.pi-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(61,214,232,.1);
  border: 1px solid rgba(61,214,232,.3);
  color: var(--cyan); padding: 5px 16px; border-radius: 24px;
  font-size: .67rem; font-family: 'Orbitron', sans-serif;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 14px; width: fit-content;
  box-shadow: 0 0 14px rgba(61,214,232,.12);
}
.pi-tag::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: dotBlink 1.5s infinite; }

.pi-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem,4.5vw,3rem); font-weight: 900;
  color: #fff; line-height: 1.08; margin-bottom: 8px;
  text-shadow: 0 0 60px rgba(61,214,232,.1);
}
.pi-subtitle {
  color: var(--muted); font-size: .97rem; margin-bottom: 26px;
  border-left: 3px solid var(--cyan); padding-left: 14px;
  border-radius: 0 4px 4px 0;
}

/* Rating row */
.pi-rating {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.pi-stars { color: #f5c842; font-size: 1rem; letter-spacing: 2px; }
.pi-rating-num { font-size: .85rem; color: var(--cyan); font-weight: 700; }
.pi-rating-count { font-size: .8rem; color: var(--muted); }
.pi-rating-sep { width: 1px; height: 16px; background: var(--border); }
.pi-sold { font-size: .8rem; color: var(--green); font-weight: 600; }

/* Price block */
.pi-price-block {
  background: linear-gradient(135deg, rgba(61,214,232,.07), rgba(46,232,160,.04));
  border: 1px solid rgba(61,214,232,.2);
  border-radius: 18px; padding: 22px 26px; margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.pi-price-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}
.pi-price-mrp {
  font-size: .82rem; color: var(--muted);
  text-decoration: line-through; margin-bottom: 4px;
}
.pi-price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pi-price {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.pi-price-unit { font-size: .82rem; opacity: .7; }
.pi-discount {
  background: rgba(46,232,160,.15); border: 1px solid rgba(46,232,160,.3);
  color: var(--green); font-size: .75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 8px;
}
.pi-price-note { font-size: .78rem; color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 6px; }

/* Features */
.pi-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 0; margin-bottom: 26px;
  border: 1px solid rgba(61,214,232,.12);
  border-radius: 16px; overflow: hidden;
}
.pi-features li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-size: .9rem; line-height: 1.5;
  padding: 12px 18px;
  background: rgba(61,214,232,.02);
  border-bottom: 1px solid rgba(61,214,232,.07);
  transition: background .2s;
}
.pi-features li:last-child { border-bottom: none; }
.pi-features li:hover { background: rgba(61,214,232,.06); }
.pi-check { font-size: 1rem; flex-shrink: 0; }

/* ── Quantity ── */
.pi-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.pi-qty-label { font-size: .78rem; color: var(--muted); font-family: 'Orbitron', sans-serif; letter-spacing: 1px; }
.qty-box {
  display: inline-flex; align-items: center;
  background: var(--dark3); border: 1px solid rgba(61,214,232,.2);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 12px rgba(61,214,232,.06);
}
.qty-btn {
  width: 44px; height: 44px; background: none; border: none;
  color: var(--cyan); font-size: 1.4rem; cursor: pointer;
  transition: background .2s; font-weight: 300;
}
.qty-btn:hover { background: rgba(61,214,232,.12); }
.qty-val {
  width: 50px; text-align: center;
  font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 1.05rem;
  color: #fff; border-left: 1px solid rgba(61,214,232,.15);
  border-right: 1px solid rgba(61,214,232,.15);
  line-height: 44px;
}

/* ── Buttons ── */
.pi-btn-row { display: flex; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.pi-cart-btn, .pi-buy-btn {
  flex: 1; min-width: 160px; justify-content: center;
  padding: 16px 22px; font-size: .84rem; border-radius: 14px;
  letter-spacing: .5px;
}
.pi-cart-btn {
  border: 2px solid var(--cyan); color: var(--cyan);
  background: rgba(61,214,232,.05);
  transition: background .3s, box-shadow .3s, transform .3s;
}
.pi-cart-btn:hover { background: rgba(61,214,232,.12); box-shadow: 0 0 28px rgba(61,214,232,.3); transform: translateY(-3px); }
.pi-buy-btn {
  background: var(--grad); color: #000; font-weight: 800;
  box-shadow: 0 8px 28px rgba(61,214,232,.3);
  transition: transform .3s, box-shadow .3s;
}
.pi-buy-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(61,214,232,.5); }

/* ── Add-ons ── */
.addons-box {
  background: var(--dark3); border: 1px solid rgba(61,214,232,.15);
  border-radius: 18px; padding: 22px; margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.addons-box::before {
  content: 'ADD ONS';
  position: absolute; top: -12px; right: 20px;
  font-family: 'Orbitron', sans-serif; font-size: 4rem; font-weight: 900;
  color: rgba(61,214,232,.03); pointer-events: none; line-height: 1;
}
.addons-title {
  font-family: 'Orbitron', sans-serif; font-size: .68rem;
  color: var(--cyan); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.addons-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(61,214,232,.3), transparent); }
.addon-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(61,214,232,.07);
  transition: background .2s; border-radius: 8px;
}
.addon-item:last-child { border-bottom: none; padding-bottom: 0; }
.addon-icon {
  font-size: 1.6rem; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(61,214,232,.07); border-radius: 10px;
  border: 1px solid rgba(61,214,232,.12);
}
.addon-text { flex: 1; }
.addon-name { font-size: .88rem; color: var(--text); font-weight: 500; }
.addon-price { font-size: .82rem; color: var(--green); margin-top: 3px; font-weight: 600; }
.addon-add {
  width: 34px; height: 34px;
  background: rgba(61,214,232,.08); border: 1px solid rgba(61,214,232,.25);
  border-radius: 10px; color: var(--cyan); font-size: 1.3rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0; font-weight: 300;
}
.addon-add:hover { background: var(--grad); border-color: transparent; color: #000; transform: scale(1.1); }

/* ── Delivery Steps ── */
.delivery-box {
  background: linear-gradient(135deg, rgba(6,18,34,.9), rgba(10,28,50,.9));
  border: 1px solid rgba(61,214,232,.18);
  border-radius: 18px; padding: 22px; margin-bottom: 24px;
}
.delivery-title {
  font-family: 'Orbitron', sans-serif; font-size: .68rem;
  color: var(--cyan); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.delivery-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(61,214,232,.3), transparent); }
.delivery-steps { display: flex; align-items: center; }
.ds-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; flex: 1; text-align: center;
}
.ds-icon-wrap {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--dark2); border: 2px solid rgba(61,214,232,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all .3s;
  box-shadow: 0 0 12px rgba(61,214,232,.08);
}
.ds-step.active .ds-icon-wrap {
  border-color: var(--green);
  background: rgba(46,232,160,.1);
  box-shadow: 0 0 20px rgba(46,232,160,.3);
}
.ds-label {
  font-size: .7rem; color: var(--muted); font-weight: 600;
  font-family: 'Orbitron', sans-serif; font-size: .62rem; letter-spacing: .5px;
}
.ds-sub { font-size: .62rem; color: rgba(138,180,196,.45); }
.ds-step.active .ds-label { color: var(--green); }
.ds-line {
  height: 2px; flex: 1; margin-bottom: 30px;
  background: linear-gradient(90deg, rgba(61,214,232,.3), rgba(46,232,160,.3));
  position: relative; overflow: hidden;
}
.ds-line::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer { to { left: 100%; } }

/* ── Accordion ── */
.accordion { border: 1px solid rgba(61,214,232,.15); border-radius: 18px; overflow: hidden; margin-bottom: 24px; }
.acc-item { border-bottom: 1px solid rgba(61,214,232,.08); }
.acc-item:last-child { border-bottom: none; }
.acc-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; background: var(--dark3); border: none;
  color: var(--text); font-size: .88rem; font-weight: 500;
  cursor: pointer; text-align: left;
  transition: background .2s, color .2s;
}
.acc-toggle span { display: flex; align-items: center; gap: 10px; }
.acc-toggle svg { color: var(--muted); flex-shrink: 0; transition: transform .25s, color .2s; }
.acc-toggle:hover { background: rgba(61,214,232,.06); color: var(--cyan); }
.acc-toggle:hover svg { color: var(--cyan); }
.acc-item.open .acc-toggle { color: var(--cyan); background: rgba(61,214,232,.07); }
.acc-item.open .acc-toggle svg { transform: rotate(180deg); color: var(--cyan); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: rgba(4,12,24,.9); padding: 0 22px;
}
.acc-item.open .acc-body { max-height: 500px; padding: 18px 22px; }
.acc-body p { color: var(--muted); font-size: .88rem; line-height: 1.8; }

/* Spec Table */
.spec-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.spec-table tr { border-bottom: 1px solid rgba(61,214,232,.07); transition: background .2s; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table tr:hover { background: rgba(61,214,232,.04); }
.spec-table td { padding: 10px 6px; }
.spec-table td:first-child { color: var(--text); font-weight: 600; width: 45%; }
.spec-table td:last-child { color: var(--cyan); font-weight: 500; }

/* ── Money Back ── */
.money-back {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, rgba(46,232,160,.08), rgba(61,214,232,.05));
  border: 1px solid rgba(46,232,160,.3);
  border-radius: 16px; padding: 20px 22px;
  position: relative; overflow: hidden;
}
.money-back::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}
.mb-icon { font-size: 2.2rem; filter: drop-shadow(0 0 8px rgba(46,232,160,.5)); }
.mb-text { flex: 1; }
.mb-title { font-family: 'Orbitron', sans-serif; font-size: .82rem; color: var(--green); font-weight: 800; }
.mb-sub { font-size: .78rem; color: var(--muted); margin-top: 4px; }
.mb-badge {
  background: rgba(46,232,160,.12); border: 1px solid rgba(46,232,160,.35);
  color: var(--green); font-size: .72rem; font-weight: 800;
  padding: 6px 14px; border-radius: 20px; white-space: nowrap;
  animation: badgePulse 2.5s infinite .5s;
}

/* ── Trust Badges ── */
.trust-badges {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-top: 20px;
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--dark3); border: 1px solid rgba(61,214,232,.12);
  border-radius: 14px; padding: 14px 10px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.trust-badge:hover { border-color: rgba(61,214,232,.4); transform: translateY(-3px); }
.trust-badge span:first-child { font-size: 1.5rem; }
.trust-badge small { font-size: .68rem; color: var(--muted); font-weight: 500; line-height: 1.4; }

/* ══════════════════════════════════
   YOU MAY ALSO LIKE
══════════════════════════════════ */
.also-like {
  padding: clamp(60px,8vw,100px) 0;
  background:
    linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(61,214,232,.1);
  position: relative; overflow: hidden;
}
.also-like::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.also-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 22px; margin-top: 44px;
}
.also-card {
  background: var(--dark3); border: 1px solid rgba(61,214,232,.12);
  border-radius: 22px; overflow: hidden;
  transition: border-color .3s, transform .35s, box-shadow .35s;
  position: relative;
}
.also-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.also-card:hover::before { transform: scaleX(1); }
.also-card:hover { border-color: var(--cyan); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(61,214,232,.15), var(--glow); }
.also-img {
  background: linear-gradient(135deg, #061222, #0d1f38);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 28px;
  position: relative; overflow: hidden;
}
.also-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(61,214,232,.06), transparent);
}
.also-charger {
  width: 110px; height: 160px; border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; border: 2px solid;
  position: relative; z-index: 1;
  transition: transform .35s;
  animation: chargerFloat 4s ease-in-out infinite;
}
.also-card:hover .also-charger { transform: scale(1.05); }
.also-charger.cyan   { border-color: var(--cyan); background: rgba(61,214,232,.07); box-shadow: 0 0 30px rgba(61,214,232,.2); }
.also-charger.green  { border-color: var(--green); background: rgba(46,232,160,.07); box-shadow: 0 0 30px rgba(46,232,160,.2); animation-delay:.5s; }
.also-charger.purple { border-color: var(--purple); background: rgba(91,141,238,.07); box-shadow: 0 0 30px rgba(91,141,238,.2); animation-delay:1s; }
.also-charger.orange { border-color: #f0a030; background: rgba(240,160,48,.07); box-shadow: 0 0 30px rgba(240,160,48,.2); animation-delay:1.5s; }
.ac-screen { font-family: 'Orbitron', sans-serif; font-size: .9rem; font-weight: 800; color: var(--cyan); }
.also-charger.green  .ac-screen { color: var(--green); }
.also-charger.purple .ac-screen { color: var(--purple); }
.also-charger.orange .ac-screen { color: #f0a030; }
.ac-icon  { font-size: 2rem; }
.ac-brand { font-family: 'Orbitron', sans-serif; font-size: .42rem; color: rgba(255,255,255,.35); letter-spacing: 2px; }
.also-info { padding: 20px 18px; }
.also-name { font-family: 'Orbitron', sans-serif; font-size: .82rem; color: #fff; margin-bottom: 4px; font-weight: 700; }
.also-watt { font-size: .75rem; color: var(--muted); margin-bottom: 12px; }
.also-price {
  font-family: 'Orbitron', sans-serif; font-size: 1.05rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px;
}
.also-btn { width: 100%; justify-content: center; font-size: .72rem; padding: 10px 14px; border-radius: 10px; }

/* ══════════════════════════════════
   PRODUCT FOOTER
══════════════════════════════════ */
.prod-footer { padding: clamp(50px,7vw,80px) 0 0; }
.pf-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,40px) clamp(40px,5vw,60px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(28px,4vw,56px);
}
.pf-desc { color: var(--muted); font-size: .83rem; line-height: 1.8; margin-bottom: 18px; }
.pf-socials { display: flex; gap: 12px; }
.pf-socials a {
  width: 38px; height: 38px;
  background: rgba(61,214,232,.07); border: 1px solid rgba(61,214,232,.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all .2s;
}
.pf-socials a:hover { background: rgba(61,214,232,.15); border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(61,214,232,.2); }
.pf-col-title {
  font-family: 'Orbitron', sans-serif; font-size: .66rem;
  color: var(--cyan); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.pf-col-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(61,214,232,.3), transparent); }
.pf-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pf-col ul li a {
  color: var(--muted); font-size: .83rem;
  transition: color .2s, padding-left .2s; display: block;
}
.pf-col ul li a:hover { color: var(--cyan); padding-left: 6px; }
.pf-col ul li:not(:has(a)) { color: var(--muted); font-size: .83rem; }
.pf-cities { display: flex !important; flex-wrap: wrap; gap: 4px 12px !important; }
.pf-cities li { font-size: .78rem !important; color: var(--muted) !important; }
.pf-bottom { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px,4vw,40px) 30px; }
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(61,214,232,.3), transparent); margin-bottom: 20px; }
.footer-copy { text-align: center; font-size: .78rem; color: rgba(138,180,196,.45); }

/* ══════════════════════════════════
   CART TOAST
══════════════════════════════════ */
.cart-toast {
  position: fixed; bottom: 36px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, rgba(10,28,50,.98), rgba(6,18,34,.98));
  border: 1px solid var(--green);
  color: var(--green); padding: 16px 32px;
  border-radius: 16px; font-size: .92rem; font-weight: 600;
  box-shadow: 0 12px 48px rgba(0,0,0,.5), 0 0 30px rgba(46,232,160,.2);
  z-index: 9999; opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  pointer-events: none; white-space: nowrap;
}
.cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .also-grid { grid-template-columns: repeat(2,1fr); }
  .pf-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .product-wrap { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .pi-btn-row { flex-direction: column; }
  .pi-cart-btn, .pi-buy-btn { min-width: unset; }
  .also-grid { grid-template-columns: repeat(2,1fr); }
  .pf-inner  { grid-template-columns: 1fr; }
  .ds-label  { font-size: .6rem; }
  .trust-badges { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .also-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .charger-render { gap: 16px; }
  .cr-body { width: 145px; }
  .cr-phone { width: 64px; }
  .trust-badges { grid-template-columns: 1fr 1fr 1fr; }
}
