/* =========================================================
   CKS TRADERS — Futuristic Premium Mobile Shop
   Pure CSS — Glassmorphism, Neon Glow, Cyberpunk Luxury
   ========================================================= */

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #00e5ff #050510;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: #050510;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(#00e5ff, #a855f7);
  border-radius: 4px;
}

:root {
  --bg: #04040a;
  --bg-2: #0a0a18;
  --space-gray: #161624;
  --electric: #0066ff;
  --cyan: #00e5ff;
  --purple: #a855f7;
  --pink: #ff2cf7;
  --white: #ffffff;
  --muted: #8a8aa3;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-brd: rgba(255, 255, 255, 0.1);
  --neon-shadow:
    0 0 20px rgba(0, 229, 255, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(0, 102, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(168, 85, 247, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(0, 229, 255, 0.12),
      transparent 50%
    ),
    linear-gradient(180deg, #04040a 0%, #0a0a18 100%);
  z-index: -3;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle, #0a0a18, #04040a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition:
    opacity 0.6s,
    visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  position: relative;
  width: 90px;
  height: 90px;
}

.loader-ring div {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-ring div:nth-child(2) {
  border-top-color: var(--purple);
  animation-delay: -0.2s;
  inset: 8px;
}

.loader-ring div:nth-child(3) {
  border-top-color: var(--electric);
  animation-delay: -0.4s;
  inset: 16px;
}

.loader-ring div:nth-child(4) {
  border-top-color: var(--pink);
  animation-delay: -0.6s;
  inset: 24px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.loader-text span {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  font-weight: 500;
  margin-left: 6px;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  animation: fill 1.6s ease forwards;
  box-shadow: 0 0 10px var(--cyan);
}

@keyframes fill {
  to {
    width: 100%;
  }
}

/* ---------- CURSOR GLOW ---------- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s;
  mix-blend-mode: screen;
}

.cursor-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
  transform: translate(-50%, -50%);
}

@media (hover: none) {
  body {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9000;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  box-shadow: 0 0 10px var(--cyan);
  transition: width 0.1s;
}

/* ---------- PARTICLES ---------- */
#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

/* ---------- ORBS ---------- */
.orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--electric);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: 40%;
  right: -200px;
  animation-delay: -7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--cyan);
  bottom: -100px;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(80px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-60px, 40px) scale(0.9);
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s;
}

.navbar.scrolled {
  background: rgba(8, 8, 20, 0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--glass-brd);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
}

.logo-mark {
  color: var(--cyan);
  text-shadow: 0 0 15px var(--cyan);
  font-size: 24px;
  animation: pulse-glow 2s infinite;
}

.logo-text {
  color: var(--white);
}

.logo-text i {
  font-style: normal;
  color: var(--cyan);
  font-weight: 500;
  margin-left: 4px;
  font-size: 0.8em;
}

@keyframes pulse-glow {
  50% {
    text-shadow:
      0 0 25px var(--cyan),
      0 0 40px var(--purple);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .admin-link {
  padding: 6px 14px;
  border: 1px solid var(--cyan);
  border-radius: 20px;
  color: var(--cyan);
  font-size: 13px;
}

.nav-links .admin-link:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 15px var(--cyan);
}

.nav-links .admin-link::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.cart-btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
  color: var(--cyan);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--pink);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  gap: 40px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 1.5px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 20px;
  color: var(--cyan);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title .line {
  display: block;
  animation: fadeInUp 0.9s ease both;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.15s;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--cyan) 0%,
    var(--purple) 50%,
    var(--pink) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
}

.hero-typed {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 18px;
  min-height: 30px;
}

.cursor-blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-sub {
  color: var(--muted);
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease both;
  animation-delay: 0.45s;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  animation: fadeInUp 1s ease both;
  animation-delay: 0.6s;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats b {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric), var(--purple));
  color: #fff;
  box-shadow:
    0 8px 30px rgba(0, 102, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-brd);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

/* ---------- HERO VISUAL (Phones) ---------- */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-effect {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.3);
  animation: rotate 30s linear infinite;
}

.ring-effect::before,
.ring-effect::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(168, 85, 247, 0.25);
  animation: rotate 25s linear infinite reverse;
}

.ring-effect::after {
  inset: 60px;
  border-color: rgba(255, 44, 247, 0.2);
  animation-duration: 20s;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.phone-float {
  position: absolute;
  animation: phone-float 6s ease-in-out infinite;
}

.phone-1 {
  transform: rotate(-12deg);
  z-index: 2;
  animation-delay: 0s;
}

.phone-2 {
  transform: translate(140px, 40px) rotate(12deg);
  z-index: 1;
  animation-delay: -3s;
  opacity: 0.85;
}

@keyframes phone-float {
  50% {
    transform: translateY(-20px) rotate(-12deg);
  }
}

.phone-2 {
  animation-name: phone-float-2;
}

@keyframes phone-float-2 {
  50% {
    transform: translate(140px, 20px) rotate(12deg);
  }
}

.phone-frame {
  width: 240px;
  height: 480px;
  border-radius: 36px;
  background: linear-gradient(145deg, #1a1a2e, #0a0a18);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 229, 255, 0.3),
    inset 0 0 0 4px #000,
    inset 0 0 40px rgba(168, 85, 247, 0.2);
  padding: 6px;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(
    ellipse at top,
    #0066ff 0%,
    #1a0a3e 40%,
    #04040a 100%
  );
}

.phone-screen.alt {
  background: radial-gradient(
    ellipse at bottom,
    #a855f7 0%,
    #3e0a5e 40%,
    #04040a 100%
  );
}

.phone-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(0, 229, 255, 0.4),
    transparent 60%
  );
  animation: phone-glow-anim 3s ease-in-out infinite;
}

.phone-glow.alt {
  background: radial-gradient(
    circle at 50% 70%,
    rgba(255, 44, 247, 0.4),
    transparent 60%
  );
}

@keyframes phone-glow-anim {
  50% {
    opacity: 0.5;
  }
}

.phone-time {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 20px var(--cyan);
}

.phone-icons {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.phone-icons span {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid var(--cyan);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scroll-anim 1.6s infinite;
}

@keyframes scroll-anim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 24px;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan);
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
}

.section-sub {
  color: var(--muted);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 17px;
}

/* ---------- GLASS ---------- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-brd);
  border-radius: 20px;
}

/* ---------- FILTERS ---------- */
.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 14px;
  padding: 18px;
  margin-bottom: 40px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-brd);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--muted);
}

.search-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: 15px;
  color: #fff;
}

.filters select {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-brd);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='3'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.filters select:focus,
.search-wrap:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.filters select option {
  background: #0a0a18;
}

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(15px);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.3, 1),
    box-shadow 0.4s,
    border-color 0.4s;
  transform-style: preserve-3d;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(0, 229, 255, 0.2);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.1),
    transparent 40%,
    rgba(168, 85, 247, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.pc-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.12),
    transparent 70%
  );
  position: relative;
  overflow: hidden;
}

.pc-img img,
.pc-img svg {
  max-height: 180px;
  max-width: 80%;
  object-fit: contain;
  transition:
    transform 0.5s,
    filter 0.5s;
  filter: drop-shadow(0 10px 25px rgba(0, 229, 255, 0.4));
}

.product-card:hover .pc-img img,
.product-card:hover .pc-img svg {
  transform: scale(1.1) rotate(-4deg);
  filter: drop-shadow(0 15px 30px rgba(168, 85, 247, 0.6));
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  text-transform: uppercase;
  font-weight: 700;
}

.pc-badge.out {
  background: rgba(255, 44, 247, 0.15);
  color: var(--pink);
  border-color: rgba(255, 44, 247, 0.3);
}

.pc-quick {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-brd);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s;
}

.product-card:hover .pc-quick {
  opacity: 1;
  transform: translateY(0);
}

.pc-quick:hover {
  background: var(--cyan);
  color: #000;
}

.pc-info {
  padding: 18px;
}

.pc-cat {
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.pc-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 10px;
  color: #fff;
}

.pc-name a {
  color: inherit;
  text-decoration: none;
}

.pc-name a:hover {
  color: var(--cyan);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail-image,
.product-detail-info {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-brd);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(20px);
}

.product-detail-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.product-detail-image img,
.product-detail-image svg {
  max-width: 100%;
  max-height: 100%;
  border-radius: 24px;
}

.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.product-detail-info .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 600;
}

.product-detail-info .product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 20px 0;
}

.product-detail-info .product-description {
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 24px;
}

.product-detail-info .product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-info .product-specs li {
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.product-detail-info .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.product-detail-info .product-actions .btn {
  min-width: 180px;
}

.product-detail-info .product-actions .btn-primary {
  width: auto;
}

.product-detail-info .product-link {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
}

.product-error {
  padding: 80px 24px;
  text-align: center;
  color: var(--muted);
}

.product-error a {
  color: var(--cyan);
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */

.pc-stock-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  margin-right: 6px;
}

.pc-stock-dot.out {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

.pc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.pc-price small {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
}

.pc-add {
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--cyan), var(--electric));
  color: #000;
  transition: all 0.3s;
  text-transform: uppercase;
}

.pc-add:hover {
  box-shadow: 0 0 20px var(--cyan);
  transform: translateY(-2px);
}

.pc-add:disabled {
  background: #333;
  color: #777;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state.hidden {
  display: none;
}

.empty-orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  padding: 36px;
  max-width: 340px;
  position: relative;
  z-index: 2;
  animation: phone-float 6s infinite;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 18px;
}

.about-card ul {
  list-style: none;
}

.about-card li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-card li:last-child {
  border: none;
}

.about-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  font-weight: 700;
}

.about-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  filter: blur(50px);
  opacity: 0.4;
}

.about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 18px 0;
}

.about-text strong {
  color: #fff;
}

.about-counters {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-counters h3 {
  font-family: var(--font-display);
  font-size: 32px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-counters span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scroll-x 40s linear infinite;
  width: max-content;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.t-card {
  width: 340px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(15px);
  position: relative;
  flex-shrink: 0;
}

.t-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--cyan);
  opacity: 0.4;
  line-height: 1;
}

.t-stars {
  color: #ffd700;
  margin-bottom: 12px;
  font-size: 14px;
}

.t-text {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-family: var(--font-display);
}

.t-user h4 {
  font-size: 15px;
}

.t-user span {
  font-size: 12px;
  color: var(--muted);
}

@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info {
  padding: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-brd);
}

.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.2),
    rgba(168, 85, 247, 0.2)
  );
  border: 1px solid var(--glass-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--muted);
  font-size: 15px;
}

.map-placeholder {
  margin-top: 20px;
  height: 180px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a0a18, #1a1a2e);
  border: 1px solid var(--glass-brd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: map-pan 20s linear infinite;
}

@keyframes map-pan {
  to {
    transform: translate(30px, 30px);
  }
}

.map-pin {
  font-size: 36px;
  z-index: 1;
  animation: phone-float 3s infinite;
  filter: drop-shadow(0 0 10px var(--cyan));
}

.map-placeholder span {
  z-index: 1;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 6px;
}

.contact-form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 600;
}

.field input,
.field textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-brd);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  font-size: 15px;
  color: #fff;
  transition: 0.3s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 80px 24px 30px;
  margin-top: 60px;
  border-top: 1px solid var(--glass-brd);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.footer-glow {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan),
    var(--purple),
    var(--pink),
    transparent
  );
  filter: blur(1px);
  animation: glow-slide 4s ease-in-out infinite;
}

@keyframes glow-slide {
  50% {
    filter: blur(3px) brightness(1.5);
  }
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.footer a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--cyan);
}

.muted {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-brd);
  padding: 0;
  transition: all 0.3s;
  color: #fff;
}

.socials a:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 15px var(--cyan);
  transform: translateY(-3px);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-brd);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  color: #fff;
  font-size: 14px;
}

.newsletter input:focus {
  border-color: var(--cyan);
}

.newsletter button {
  width: 42px;
  border-radius: 10px;
  font-size: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  font-weight: 700;
}

.footer-bottom {
  max-width: 1300px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--glass-brd);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ---------- CART SIDEBAR ---------- */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 400px;
  max-width: 90vw;
  z-index: 2000;
  background: rgba(8, 8, 20, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-brd);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  transform: translateX(0);
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.6);
}

.cart-head {
  padding: 24px;
  border-bottom: 1px solid var(--glass-brd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-brd);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.close-btn:hover {
  background: var(--pink);
  color: #000;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-brd);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-img img,
.cart-item-img svg {
  max-width: 80%;
  max-height: 80%;
}

.cart-item h5 {
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item p {
  font-size: 12px;
  color: var(--muted);
}

.cart-item .price {
  color: var(--cyan);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  margin-top: 4px;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.qty-ctrl button {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-brd);
  color: #fff;
  font-size: 14px;
}

.qty-ctrl button:hover {
  background: var(--cyan);
  color: #000;
}

.qty-ctrl span {
  min-width: 20px;
  text-align: center;
  font-size: 13px;
}

.cart-remove {
  background: none;
  color: var(--pink);
  font-size: 18px;
  padding: 6px;
}

.cart-foot {
  padding: 24px;
  border-top: 1px solid var(--glass-brd);
  background: rgba(0, 0, 0, 0.3);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total span {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cyan);
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.cart-empty .icon {
  font-size: 48px;
  margin-bottom: 14px;
  opacity: 0.4;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- PRODUCT MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.modal-img {
  height: 380px;
  border-radius: 16px;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.18),
    transparent 70%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-brd);
}

.modal-img img,
.modal-img svg {
  max-height: 300px;
  max-width: 80%;
  filter: drop-shadow(0 20px 40px rgba(0, 229, 255, 0.5));
}

.modal-info h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}

.modal-info .cat {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  margin-bottom: 18px;
}

.modal-stock.out {
  background: rgba(255, 44, 247, 0.1);
  color: var(--pink);
  border-color: rgba(255, 44, 247, 0.3);
}

.modal-desc {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 18px;
}

.modal-specs h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--cyan);
}

.modal-specs ul {
  list-style: none;
  margin-bottom: 24px;
}

.modal-specs li {
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-brd);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.modal-specs li b {
  color: #fff;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-wa:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-brd);
  color: #fff;
  font-size: 18px;
  z-index: 2;
}

.modal-close:hover {
  background: var(--pink);
  color: #000;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(8, 8, 20, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  padding: 14px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 5000;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- IMAGE BOX FRAME ---------- */
.image-box {
  width: 220px;
  height: 220px;
  border: 4px solid var(--cyan);
  border-radius: 26px;
  overflow: hidden;
  margin: 24px auto;
  box-shadow:
    0 0 24px rgba(0, 229, 255, 0.45),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: floatImage 6s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.image-box:hover img {
  transform: scale(1.08) translateY(-4px);
  filter: brightness(1.03);
}

.developer-content,
.owner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.developer-content .btn,
.owner-content .btn {
  width: min(240px, 100%);
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0) scale(1.02);
  }

  50% {
    transform: translateY(-10px) scale(1.04);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 0;
  }

  .nav-inner {
    padding: 0 18px;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 90px 18px 60px;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    height: auto;
    order: 1;
    margin-top: 30px;
  }

  .hero-cta,
  .hero-stats {
    justify-content: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 340px;
  }

  .filters {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .filters select,
  .search-wrap {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-img {
    height: 280px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 18px;
  }
}

@media (max-width: 720px) {
  body {
    cursor: auto;
  }

  .nav-inner {
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgba(8, 8, 20, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--glass-brd);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding: 64px 16px 48px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-visual {
    height: auto;
    min-height: 300px;
    margin-top: 30px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 18px;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 16px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .phone-frame {
    width: 180px;
    height: 360px;
  }

  .phone-2 {
    transform: translate(100px, 30px) rotate(12deg);
  }

  @keyframes phone-float-2 {
    50% {
      transform: translate(100px, 10px) rotate(12deg);
    }
  }

  .ring-effect {
    width: 340px;
    height: 340px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .product-card {
    min-width: 0;
  }

  .pc-img {
    height: 180px;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-image {
    min-height: 260px;
  }

  .product-detail-info .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: min(92vw, 600px);
  }
}
