html, body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --bg: #f9fafb;
  --text: #0f172a;
  --muted: #64748b;
  --card: #ffffff;
  --border: #e5e7eb;
}

:root[data-theme="dark"] {
  --bg: #0b0d12;
  --text: #e6e8ef;
  --muted: #9aa1b2;
  --card: #0f1426;
  --border: #1f2540;

  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-direction: row;
  flex-wrap: nowrap;
}

.nav-theme-toggle {
  flex-shrink: 0;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo:hover img {
  opacity: 0.85;
}

.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  height: 64px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--purple);
  color: white;
  padding: 12px 22px;   /* ⬅ taller button */
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.nav-theme-toggle {
  margin-left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.25s ease, color 0.25s ease, border 0.25s ease;
}

html {
  transition: background-color 0.35s ease, color 0.35s ease;
}

* {
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.nav-theme-toggle:hover {
  background: var(--bg);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 64px 20px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--purple);
}

.hero p {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--purple);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

/* HERO CARDS */
.hero-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px 22px;

  border: 1.5px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-cards .mini-card:nth-child(1) {
  transform: translateX(12px) rotate(-2deg);
}

.hero-cards .mini-card:nth-child(2) {
  transform: translateX(0) rotate(0deg);
  z-index: 2;
}

.hero-cards .mini-card:nth-child(3) {
  transform: translateX(12px) rotate(2deg);
}

.hero-cards:hover .mini-card {
  transform: translateX(0) rotate(0deg);
}

.mini-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.18);
  z-index: 5;
}

.mini-card h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

/* HOME SERVICES SECTION */
.home-services {
  padding-top: 40px;
}

/* Grid */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* Card */
.service-card {
  background: var(--card);
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
}

.service-card:hover {
  border-color: var(--purple);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

/* Icon (same as services page) */
.service-card .service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  color: var(--purple);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  margin-bottom: 16px;
}

/* Title */
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.service-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* SERVICES */
.section-title h2 {
  font-size: 36px; /* was ~32 */
  font-weight: 800;
  margin-top: 8px;
}

.badge {
  display: inline-block;
  background: #ede9fe;
  color: var(--purple);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.service-content {
  position: relative;
}

.service-content::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--purple),
    transparent
  );
  opacity: 0.4;
}

.service-card {
  background: var(--card);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--purple);
}

/* WHY CHOOSE VYXXEL */
.why-vyxxel {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT COLUMN */
.why-features {
  position: relative;
  padding-left: 28px;
}

/* Vertical purple line */
.why-features::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--purple);
  border-radius: 999px;
}

/* Individual item */
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* RIGHT COLUMN */
.why-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.why-text h2 span {
  color: var(--purple);
}

.why-text p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}


/* CTA + FOOTER WRAPPER */
.cta-footer {
  background: linear-gradient(135deg, #6d28ff, #8b5cf6);
  color: white;
}

/* CTA */
.cta {
  background: transparent;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 20px 56px;
  text-align: center;
}

.cta h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-btn {
  background: var(--card);
  color: var(--purple);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* FOOTER */

/* CONTENT SECTION */
.content-section {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.content-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.content-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.content-subtext {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* CONTENT CARDS */
.content-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.content-card {
  background: var(--card);
  color: var(--text);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  position: relative;
}

.content-card:hover {
  transform: translateY(-6px);
}

.content-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.content-body {
  padding: 20px;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;

  background: var(--purple);
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  z-index: 2;
}

.content-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.content-body p {
  font-size: 14px;
  color: var(--muted);
}

/* VIEW ALL LINK */
.content-link {
  display: inline-block;
  margin-top: 50px;
  font-weight: 600;
  color: white;
  font-size: 16px;
}

/* SHOP PREVIEW */
.shop-preview {
  background: var(--card);
  padding: 120px 20px;
  border-top: 6px solid var(--purple);
  border-bottom: 6px solid var(--purple);
}

.shop-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.shop-badge {
  display: inline-block;
  border: 1.5px solid var(--purple);
  color: var(--purple);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.shop-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.shop-text p {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 22px;
}

.shop-link {
  font-weight: 600;
  color: var(--purple);
  font-size: 15px;
}

/* RIGHT VISUAL */
.shop-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-visual span {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 10px;
  color: rgba(124, 58, 237, 0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .shop-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shop-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .shop-visual span {
    font-size: 90px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-cards {
    grid-template-columns: 1fr;
  }

  .content-section h2 {
    font-size: 34px;
  }
}


.footer {
  background: #2e0f4f;
  color: white;
  padding: 80px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .why,
  .services {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }
}

/* SERVICES PAGE DESKTOP LAYOUT */
.services-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* Right-side service details container */
.service-details {
  position: relative;
}

/* Visual anchor line */
.service-details::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--purple),
    transparent
  );
  opacity: 0.35;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

.services-hero {
  padding: 72px 20px 56px; /* ⬅ tighter */
  background: var(--card);
  text-align: center;
}

.services-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 14px; /* ⬅ was too big */
}

.hero-subtext {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--purple);
  font-size: 14px;
}


/* CATEGORIES */
.service-categories button {
  width: 100%;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,.35);
  background: rgba(124,58,237,.12);
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.service-categories button svg,
.service-categories button i {
  color: var(--text);
}

.service-categories button:hover {
  background: rgba(124, 58, 237, 0.18);
}

/* SERVICE CARD */
.service-box {
  background: var(--card);
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid var(--border);
  margin-bottom: 32px;
  transition: .25s ease;
}

.service-box:hover {
  border-color: var(--purple);
  box-shadow: 0 12px 28px rgba(124,58,237,.15);
}

/* CLEAN BULLET LIST FOR SERVICE CARDS */
.service-box ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.service-box ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: var(--text);
}

/* Purple check bullet */
.service-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple);
  font-size: 13px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(124,58,237,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-desc {
  color: var(--muted);
  margin: 14px 0 20px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  margin-bottom: 5px;
}

.service-link {
  color: var(--purple);
  font-weight: 600;
}

/* HOW IT WORKS */
.steps .step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing {
  padding: 72px 20px;
  padding-bottom: 48px;
  background: var(--bg);
  text-align: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-sub {
  color: var(--muted);
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}

@media (max-width: 768px) {

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    transform: none !important;
    max-width: 100%;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none !important;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25);
  }
}

@media (max-width: 768px) {
  .pricing-card.featured {
    border-radius: 24px;
  }
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.35);
  border: none;
}

.pricing-card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1.5px solid var(--border);
}

.pricing-card h3 {
  font-size: 42px;
  color: var(--purple);
}

.pricing-card span {
  font-size: 14px;
  color: var(--muted);
}

.pricing-card.featured {
  background: var(--purple);
  color: white;
}

.pricing-card.featured h3,
.pricing-card.featured span {
  color: white;
}

/* CTA + FOOTER WRAPPER */
.cta-footer {
  background: linear-gradient(135deg, #6d28ff, #8b5cf6);
  color: white;
}

/* CTA (NO BACKGROUND ANYMORE) */
.cta {
  background: transparent;
  padding: 96px 20px 56px;
  text-align: center;
}

.cta h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-btn {
  background: var(--card);
  color: var(--purple);
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}


/* HOW IT WORKS – UPGRADED */
.how-it-works {
  margin-top: 32px;
  padding-top: 0;
}

.how-it-works h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 48px;
  margin-top: 0;
}

.how-it-works .step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.how-it-works .step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  color: var(--purple);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.how-it-works .step h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.how-it-works .step p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}

.how-it-works h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--purple);
  border-radius: 999px;
  margin-top: 14px;
}

.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

/* Optional vertical guide line */
.steps-vertical::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(124, 58, 237, 0.15);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: var(--card);
  border: 2px solid var(--purple);
  color: var(--purple);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 2;
}

.step-text strong {
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}

.step-text p {
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
}

/* CONTENT HERO */
.content-hero {
  padding: 80px 20px 64px;
  text-align: center;
}

.content-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* FEATURED GRID */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* CONTENT CARDS */
.content-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
}

.content-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

.content-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.content-card h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 16px;
}

.meta {
  font-size: 13px;
  color: var(--muted);
  padding: 0 16px 16px;
}

/* TAG */
.tag {
  position: absolute;
  margin: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  background: var(--purple);
  color: white;
  border-radius: 999px;
}

/* FILTER PILLS */
.filter-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 48px 0;
}

.filter-pills button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  font-size: 13px;
  cursor: pointer;
}

.filter-pills .active {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* ARTICLES GRID */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .featured-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .filter-pills {
    flex-wrap: wrap;
  }
}

/* SEARCH BAR */
.search-bar {
  margin-top: 28px;
  max-width: 520px;
  margin-inline: auto;
  display: flex;
  background: #f4f4f7;
  border-radius: 999px;
  padding: 6px;
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}

.search-bar button {
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

/* ---------- SHOP HERO ---------- */
.shop-hero {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  padding: 96px 20px;
  text-align: center;
}

.shop-hero-inner {
  max-width: 900px;
  margin: auto;
}

.shop-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.shop-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.shop-hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* ---------- SHOP FILTERS ---------- */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 48px 0;
}

.shop-filters button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;

  transition: background-color 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease;
}

.shop-filters button:hover {
  background: color-mix(in srgb, var(--purple) 18%, var(--card));
}

.shop-filters .active {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* ---------- SHOP GRID ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 96px;
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  position: relative;

  transition: transform 0.25s ease,
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.18);
}

.product-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
}

.product-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 4px;
}

.product-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- PRODUCT FOOTER ---------- */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
}

/* ---------- BADGES ---------- */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--purple);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.product-badge.dark {
  background: #111827;
}

/* ---------- BUTTON STATES ---------- */
.btn-disabled {
  background: #e5e7eb;
  color: #6b7280;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: not-allowed;
}

:root[data-theme="dark"] .btn-disabled {
  background: #1f2937;
  color: #9ca3af;
}

/* ---------- GET NOTIFIED ---------- */
.shop-notify {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border-radius: 28px;
  padding: 72px 32px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(124,58,237,0.35);
}

.shop-notify input {
  background: rgba(255,255,255,0.15);
  color: white;
}

.shop-notify input::placeholder {
  color: rgba(255,255,255,0.7);
}

.shop-notify h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.shop-notify p {
  opacity: 0.95;
  margin-bottom: 24px;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.notify-form input {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  width: 260px;
  font-size: 14px;
}

.notify-form input:focus {
  outline: none;
}

.product-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.notify-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9500;
}

.notify-modal.open {
  display: flex;
}

.notify-box {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  padding: 40px;
  border-radius: 28px;
  width: 90%;
  max-width: 420px;
  position: relative;
  text-align: center;
  box-shadow: 0 40px 80px rgba(124,58,237,0.45);
}

.notify-box input {
  width: 100%;
  margin: 20px 0 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
}

.notify-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Generic placeholder */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* Category styles */
.placeholder.services {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.placeholder.accessories {
  background: linear-gradient(135deg, #1f2937, #374151);
}

/*CART*/

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.cart-drawer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  max-height: 70vh;

  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;

  box-shadow: 0 30px 60px rgba(0,0,0,0.35);

  display: flex;
  flex-direction: column;
  gap: 16px;

  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;

  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 9000;
}

.cart-drawer.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Dark mode polish */
:root[data-theme="dark"] .cart-drawer {
  background: linear-gradient(180deg, #0f1426, #0b0d12);
  border-color: rgba(124,58,237,0.35);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 800;
}

#cartItems li {
  font-size: 14px;
  color: #e6e8ef;
  margin-bottom: 8px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

/* Items */
.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex: 1;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item span {
  font-size: 14px;
  color: var(--text);
}

.remove-item {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}

.remove-item:hover {
  color: #ef4444;
}

/* Action button */
.cart-action {
  width: 100%;
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;

  box-shadow: 0 20px 40px rgba(124,58,237,0.4);
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  z-index: 10000;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- SMOOTH THEME TRANSITION ---------- */
html, body {
  transition: background-color 0.35s ease, color 0.35s ease;
}

* {
  transition: background-color 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease;
}

/* ===============================
   ABOUT PAGE – VYXXEL
   =============================== */

/* HERO */
.about-hero {
  padding: 96px 0 64px;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.breadcrumb {
  color: var(--purple);
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

/* SECTIONS */
.about-section {
  padding: 80px 0;
}

.about-section.soft-bg {
  background: color-mix(in srgb, var(--card) 92%, transparent);
}

/* STORY CARD */
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* SECTION HEADERS */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--muted);
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* INFO CARDS */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(124,58,237,0.15);
}

.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.info-card .icon {
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 10px;
}

/* CTA */
.about-cta {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  text-align: center;
  padding: 96px 20px;
}

.about-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-cta p {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.about-cta .btn-primary {
  padding: 14px 28px;
  font-size: 16px;
}

/* ICON STYLING – ABOUT PAGE */

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
}

.icon-svg {
  width: 22px;
  height: 22px;
  color: var(--purple);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dark mode polish */
:root[data-theme="dark"] .icon-wrapper {
  background: rgba(124, 58, 237, 0.18);
}

.contact-hero {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--muted);
  max-width: 420px;
}

.contact-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-form {
  background: var(--card);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.contact-options {
  padding: 64px 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FAQ BASE (DO NOT REMOVE)
========================= */

.faq-section {
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  margin-bottom: 6px;
}

.faq-subtitle {
  margin-bottom: 32px;
}

/* =========================
   FAQ ITEM
========================= */

.faq-item {
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  isolation: isolate; /* VERY important */
}

/* =========================
   QUESTION
========================= */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* =========================
   ANSWER (LOCKED CLOSED)
========================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.95rem;
  margin: 0;
}

/* =========================
   OPEN STATE
========================= */

.faq-item.active .faq-answer {
  max-height: 300px; /* safe height */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =========================
   LIGHT MODE
========================= */

html[data-theme="light"] .faq-section {
  background: #ffffff;
}

html[data-theme="light"] .faq-item {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

html[data-theme="light"] .faq-question {
  color: #111827;
}

html[data-theme="light"] .faq-answer p {
  color: #4b5563;
}

/* =========================
   DARK MODE
========================= */

html[data-theme="dark"] .faq-section {
  background: #070b16;
}

html[data-theme="dark"] .faq-item {
  background: #0b1020;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

html[data-theme="dark"] .faq-question {
  color: #ffffff;
}

html[data-theme="dark"] .faq-answer p {
  color: #d1d5db;
}

/* =========================
   ICON
========================= */

.faq-icon {
  color: #8b5cf6;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.helper-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #cfc9ff;
  background: rgba(140, 82, 255, 0.12);
  border: 1px solid rgba(140, 82, 255, 0.25);
  width: fit-content;
}

.helper-chip span {
  opacity: 0.9;
}

/* ===== MOBILE HARD OVERRIDES ===== */
@media (max-width: 768px) {

  /* Switch navbar from grid to flex */
  .nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* Hide desktop nav links */
  .nav-links a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex;
  }

  /* Show hamburger */
  .nav-hamburger {
    display: block !important;
    font-size: 24px;
  }

  /* Reduce actions so hamburger fits */
  .nav-actions {
    gap: 10px;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(12px);

    padding: 1rem 1.25rem;
    display: none;
    flex-direction: column;
    gap: 0.75rem;

    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
}

@media (max-width: 768px) {

  .service-card-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    max-width: 340px;
    margin-inline: auto;
  }
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}
