/*

CHANGES MADE:
1. New color scheme: vibrant/soft orange replacing purple
2. New typography: Playfair Display + DM Sans replacing system fonts
3. Custom cursor (ring + dot)
4. Animated particle canvas background on home
5. Section tags / badges (pill labels above headings)
6. Active coverflow item glow effect
7. Animated stat counters with suffix
8. Redesigned footer with brand block and tagline
9. Scroll reveal animations (.reveal class)
10. New nav button style (square with diagonal accent)
11. Input placeholders and send icon on submit button
12. Animated gradient border on active coverflow item
13. Products page: filter bar, product grid, cards, cart sidebar, quick view modal

*/

@charset "utf-8";

/* ===== CSS Variables ===== */
:root {
  --accent-1: #ff7a18;
  --accent-2: #ffb347;
  --accent-3: #ffd580;
  --accent-grad: linear-gradient(135deg, #ff7a18 0%, #ffb347 100%);
  --teal-1: #00d4aa;
  --teal-2: #0099cc;
  --teal-grad: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
  --bg-deep: #020617;
  --bg-mid: #0f172a;
  --bg-light: #1e293b;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  overflow-x: hidden;
  position: relative;
  background: var(--bg-deep);
  color: var(--text-primary);
}

h1,
h2,
h3,
.logo-text,
.footer-logo span {
  font-family: "Playfair Display", Georgia, serif;
}

/* ===== Custom Cursor ===== */
.custom-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease;
  opacity: 0;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  opacity: 0;
}

body:hover .custom-cursor,
body:hover .custom-cursor-dot {
  opacity: 1;
}

/* ===== Particle Canvas ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Sections */
.section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#home {
  background:
    radial-gradient(
      ellipse at 30% 40%,
      rgba(0, 212, 170, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgba(0, 153, 204, 0.08) 0%,
      transparent 60%
    ),
    var(--bg-deep);
}

#about {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}

#contact {
  background: radial-gradient(
    ellipse at center,
    var(--bg-mid) 0%,
    var(--bg-deep) 100%
  );
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(3, 13, 18, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 170, 0.12);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(3, 13, 18, 0.96);
  height: 68px;
  border-bottom-color: rgba(0, 212, 170, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo-container:hover {
  transform: translateY(-2px);
}
.logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo svg {
  width: 100%;
  height: 100%;
}
.logo-text {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 10px;
  backdrop-filter: blur(10px);
}

.menu-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 18px;
  border-radius: 30px;
  letter-spacing: 0.3px;
}

.menu-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}
.menu-item.active {
  color: var(--bg-deep);
  background: var(--accent-grad);
  font-weight: 600;
}
.menu-item::after {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Home Section */
.coverflow-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.coverflow-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  position: relative;
}

.coverflow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  position: relative;
  width: 100%;
  height: 400px;
}

.coverflow-item {
  position: absolute;
  width: 300px;
  height: 300px;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  user-select: none;
}

.coverflow-item .cover {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  background: #1a2a30;
}

.coverflow-item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.coverflow-item.active .cover {
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.9),
    0 0 0 2px var(--accent-1),
    0 0 40px rgba(0, 212, 170, 0.35),
    0 0 80px rgba(0, 212, 170, 0.15);
  animation: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {
  0%,
  100% {
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.9),
      0 0 0 2px var(--accent-1),
      0 0 40px rgba(0, 212, 170, 0.35),
      0 0 80px rgba(0, 212, 170, 0.15);
  }
  50% {
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.9),
      0 0 0 2px var(--accent-2),
      0 0 60px rgba(0, 153, 204, 0.45),
      0 0 100px rgba(0, 153, 204, 0.2);
  }
}

.coverflow-item .reflection {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transform: scaleY(-1);
  opacity: 0.18;
  filter: blur(2px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  overflow: hidden;
}

.coverflow-item.active {
  z-index: 100;
  transform: translateX(0) translateZ(0) rotateY(0deg);
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 212, 170, 0.08);
  border: 1.5px solid rgba(0, 212, 170, 0.3);
  color: var(--accent-1);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 200;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.nav-button:hover {
  background: rgba(0, 212, 170, 0.18);
  border-color: var(--accent-1);
  color: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}
.nav-button.prev {
  left: 50px;
}
.nav-button.next {
  right: 50px;
}

.dots-container {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 200;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--accent-1);
  transform: scale(1.4);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.6);
}

.info {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 200;
  white-space: nowrap;
}

.info-badge {
  display: inline-block;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.3);
  color: var(--accent-1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.info h2 {
  font-size: 34px;
  font-family: "Playfair Display", Georgia, serif;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.info p {
  font-size: 15px;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeInUp 0.7s 0.1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.play-pause-button {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 212, 170, 0.08);
  border: 1.5px solid rgba(0, 212, 170, 0.3);
  color: var(--accent-1);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 200;
}
.play-pause-button:hover {
  background: rgba(0, 212, 170, 0.2);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 16px rgba(0, 212, 170, 0.4);
}
.play-pause-button .pause-icon {
  font-size: 13px;
  letter-spacing: 2px;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Section Tag ===== */
.section-tag {
  display: inline-block;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  color: var(--accent-1);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  min-height: auto;
  padding: 100px 0 80px;
  background: linear-gradient(
    180deg,
    var(--bg-deep) 0%,
    var(--bg-mid) 50%,
    var(--bg-deep) 100%
  );
  align-items: flex-start;
}

.products-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.products-header {
  text-align: center;
  margin-bottom: 50px;
}

.products-header h2 {
  font-size: 52px;
  margin-top: 16px;
  margin-bottom: 16px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-header p {
  font-size: 18px;
  color: var(--text-muted);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 22px;
  border-radius: 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--teal-1);
  color: var(--teal-1);
  background: rgba(0, 212, 170, 0.07);
}

.filter-btn.active {
  background: var(--teal-grad);
  border-color: transparent;
  color: var(--bg-deep);
  font-weight: 600;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Product Card */
.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(0, 212, 170, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 212, 170, 0.1);
}

.product-card.hidden {
  display: none;
}

/* Badge */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-grad);
  color: var(--bg-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 10;
}

.new-badge {
  background: var(--teal-grad);
}

/* Product Image */
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* Product placeholder for cards without real images */
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.05),
    rgba(0, 153, 204, 0.05)
  );
}

/* Overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.quick-view-btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg-deep);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}
.quick-view-btn:hover {
  background: var(--teal-1);
  color: white;
}

/* Product Info */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-category-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-1);
}

.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  font-family: "Playfair Display", Georgia, serif;
}

.product-info > p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-current {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-old {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--teal-grad);
  color: var(--bg-deep);
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.4);
}

.add-to-cart-btn.added {
  background: linear-gradient(135deg, #00b894, #00d4aa);
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: var(--bg-mid);
  border-left: 1px solid rgba(0, 212, 170, 0.15);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-size: 22px;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
}

.cart-close-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cart-close-btn:hover {
  background: rgba(255, 80, 80, 0.15);
  border-color: rgba(255, 80, 80, 0.3);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-items::-webkit-scrollbar {
  width: 4px;
}
.cart-items::-webkit-scrollbar-track {
  background: transparent;
}
.cart-items::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 170, 0.3);
  border-radius: 2px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 16px;
  color: var(--text-muted);
}
.cart-empty svg {
  opacity: 0.3;
}
.cart-empty p {
  font-size: 15px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-info {
  flex: 1;
}
.cart-item-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 13px;
  font-weight: 600;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.qty-btn:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: var(--teal-1);
}
.qty-count {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s ease;
  line-height: 1;
}
.cart-remove-btn:hover {
  color: rgba(255, 80, 80, 0.7);
}

.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total span:first-child {
  font-size: 15px;
  color: var(--text-muted);
}
.cart-total span:last-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal-grad);
  color: var(--bg-deep);
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 212, 170, 0.4);
}

/* Cart FAB */
.cart-fab {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--teal-grad);
  border: none;
  border-radius: 16px;
  color: var(--bg-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4);
  transition: all 0.3s ease;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.cart-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 212, 170, 0.5);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-1);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-deep);
  transition: transform 0.3s ease;
}
.cart-count.bump {
  animation: cartBump 0.3s ease;
}
@keyframes cartBump {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}

/* ===== QUICK VIEW MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 860px;
  background: var(--bg-mid);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 24px;
  z-index: 3001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.modal-close:hover {
  background: rgba(255, 80, 80, 0.2);
  border-color: rgba(255, 80, 80, 0.4);
}

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

.modal-img-wrap {
  height: 420px;
  overflow: hidden;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: 420px;
}
.modal-details::-webkit-scrollbar {
  width: 4px;
}
.modal-details::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 170, 0.3);
}

.modal-details h2 {
  font-size: 26px;
  color: white;
  line-height: 1.3;
}

.modal-details > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--teal-grad);
  border-radius: 50%;
  font-size: 11px;
  color: var(--bg-deep);
  flex-shrink: 0;
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.modal-cart-btn {
  padding: 12px 20px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  color: white;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-header h2 {
  font-size: 52px;
  margin-top: 16px;
  margin-bottom: 20px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-header p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

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

.showcase-display {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-main {
  position: relative;
  width: 350px;
  height: 420px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.07) 0%,
    rgba(0, 153, 204, 0.07) 100%
  );
  border-radius: 30px;
  border: 1px solid rgba(0, 212, 170, 0.15);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 212, 170, 0.08);
}

.showcase-logo {
  width: 120px;
  height: 120px;
  background: var(--accent-grad);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.35);
}
.showcase-logo svg {
  width: 70%;
  height: 70%;
}

.showcase-title {
  font-size: 30px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  text-align: center;
}
.showcase-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.7;
}
.showcase-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  background: rgba(0, 212, 170, 0.06);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.badge:hover {
  background: var(--accent-grad);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.corner-decoration {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(0, 212, 170, 0.25);
}
.corner-decoration.top-left {
  top: -16px;
  left: -16px;
  border-right: none;
  border-bottom: none;
  border-radius: 16px 0 0 0;
}
.corner-decoration.bottom-right {
  bottom: -16px;
  right: -16px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 16px 0;
}

.about-info {
  padding-left: 40px;
}
.about-info h3 {
  font-size: 36px;
  margin-bottom: 28px;
  line-height: 1.3;
}
.about-info p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.feature-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-grad);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 13px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-grad);
  color: var(--bg-deep);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}
.cta-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.cta-button:hover svg {
  transform: translateX(5px);
}

/* Stats */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px;
  background: rgba(0, 212, 170, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(0, 212, 170, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-suffix {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 2px;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  color: white;
}

.contact-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
.contact-header h2 {
  font-size: 52px;
  margin-top: 16px;
  margin-bottom: 20px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-header p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section {
  padding-right: 40px;
}
.contact-info-section h3 {
  font-size: 28px;
  margin-bottom: 18px;
}
.contact-info-section > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.contact-item:hover {
  background: rgba(0, 212, 170, 0.06);
  border-color: rgba(0, 212, 170, 0.25);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 212, 170, 0.12);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.contact-text h4 {
  font-size: 15px;
  color: white;
  margin-bottom: 4px;
}
.contact-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.social-links {
  margin-top: 36px;
}
.social-links h4 {
  font-size: 17px;
  margin-bottom: 18px;
  color: white;
}
.social-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--accent-grad);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 212, 170, 0.35);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.contact-form-section {
  padding-left: 40px;
}

.contact-form {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 170, 0.12);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0, 212, 170, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(0, 212, 170, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.submit-btn {
  background: var(--accent-grad);
  color: var(--bg-deep);
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 212, 170, 0.4);
}
.submit-btn svg {
  transition: transform 0.3s ease;
}
.submit-btn:hover svg {
  transform: translateX(4px) rotate(-10deg);
}

/* Image loading */
.image-loading {
  background: linear-gradient(45deg, #0a2030, #0f3040);
  position: relative;
}
.image-loading::after {
  content: "🌄";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  opacity: 0.4;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: rgba(3, 13, 18, 0.98);
  border-top: 1px solid rgba(0, 212, 170, 0.15);
  padding: 50px 20px 40px;
  margin-top: 80px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 2px;
  background: var(--accent-grad);
  filter: blur(1px);
  opacity: 0.8;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
  line-height: 1.8;
}
.footer-copyright a {
  color: var(--accent-1);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-copyright a:hover {
  color: var(--accent-2);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--accent-1);
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 999;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 212, 170, 0.45);
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 212, 170, 0.95);
  color: var(--bg-deep);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual {
    height: 400px;
  }
  .about-info {
    padding-left: 0;
    text-align: center;
  }
  .feature-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
  }
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-info-section {
    padding-right: 0;
  }
  .contact-form-section {
    padding-left: 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .cart-sidebar {
    width: 340px;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-img-wrap {
    height: 260px;
  }
  .modal-details {
    max-height: none;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }
  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(3, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 0;
  }
  .main-menu.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .coverflow-item {
    width: 200px;
    height: 200px;
  }
  .nav-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .nav-button.prev {
    left: 20px;
  }
  .nav-button.next {
    right: 20px;
  }
  .info h2 {
    font-size: 24px;
  }
  .info p {
    font-size: 13px;
  }
  .logo-text {
    font-size: 20px;
  }
  .about-header h2 {
    font-size: 38px;
  }
  .about-info h3 {
    font-size: 28px;
  }
  .about-visual {
    height: 400px;
  }
  .showcase-display {
    max-width: 340px;
    height: 380px;
  }
  .showcase-main {
    width: 100%;
    height: 340px;
    padding: 28px;
  }
  .showcase-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
  }
  .showcase-title {
    font-size: 26px;
  }
  .stat-number {
    font-size: 40px;
  }
  .contact-header h2 {
    font-size: 38px;
  }
  .footer-content {
    padding: 0 20px;
  }
  .custom-cursor,
  .custom-cursor-dot {
    display: none;
  }
  .products-header h2 {
    font-size: 38px;
  }
  .products-content {
    padding: 0 20px;
  }
  .cart-sidebar {
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  .filter-bar {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .header {
    height: 70px;
    padding: 0 15px;
  }
  .header.scrolled {
    height: 60px;
  }
  .logo {
    width: 36px;
    height: 36px;
  }
  .logo-text {
    font-size: 17px;
  }
  .coverflow-item {
    width: 170px;
    height: 170px;
  }
  .about-content,
  .contact-content {
    padding: 20px;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .contact-header {
    margin-bottom: 36px;
  }
  .contact-header h2 {
    font-size: 32px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .add-to-cart-btn {
    width: 100%;
    justify-content: center;
  }
  .modal-price-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-cart-btn {
    width: 100%;
    justify-content: center;
  }
  .products-section {
    padding: 80px 0 60px;
  }
}

/* =====================================================
   PERFORMANCE FIXES — added to fix mobile slowness
   ===================================================== */

/* 1. backdrop-filter blur is very GPU expensive on mobile — disable it */
@media (max-width: 768px), (hover: none) {
  .header,
  .main-menu,
  .nav-button,
  .play-pause-button,
  .cart-sidebar,
  .product-modal,
  .modal-overlay,
  .product-card,
  .contact-form,
  .search-results-dropdown {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* 2. Disable continuous glow animation on mobile — it runs forever at 60fps */
@media (max-width: 768px), (hover: none) {
  .coverflow-item.active .cover {
    animation: none !important;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3) !important;
  }
}

/* 3. Simplify coverflow 3D on mobile — perspective + preserve-3d is GPU heavy */
@media (max-width: 768px) {
  .coverflow-container {
    perspective: none !important;
  }
  .coverflow {
    transform-style: flat !important;
  }
  .coverflow-item {
    transition: all 0.3s ease !important;
  }
  .coverflow-item .cover {
    transform-style: flat !important;
  }
  .coverflow-item .reflection {
    display: none !important;
  }
}

/* 4. Disable scroll reveal animation on mobile — simpler = faster */
@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal.revealed {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 5. Disable hover transform effects on touch devices */
@media (hover: none) {
  .product-card:hover {
    transform: none !important;
  }
  .product-card:hover .product-img-wrap img {
    transform: none !important;
  }
  .cta-button:hover {
    transform: none !important;
  }
  .logo-container:hover {
    transform: none !important;
  }
  .stat-item:hover {
    transform: none !important;
  }
  .contact-item:hover {
    transform: none !important;
  }
  .social-btn:hover {
    transform: none !important;
  }
}

/* 6. Use will-change only on desktop where GPU can handle it */
@media (max-width: 768px) {
  * {
    will-change: auto !important;
  }
}

/* 7. Prefers reduced motion — disable ALL animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
