/* ============================================================
   AuraCrafts – Main Stylesheet
   Colors: #1E2A5E (indigo), #3B82F6 (blue), #F59E0B (gold)
   Fonts: Playfair Display (headings), Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --indigo:   #1E2A5E;
  --blue:     #3B82F6;
  --blue-dark:#1D4ED8;
  --gold:     #F59E0B;
  --gold-dark:#D97706;
  --text-dark:#1F2937;
  --text-mid: #374151;
  --text-light:#F9FAFB;
  --white:    #FFFFFF;
  --overlay:  rgba(15, 23, 60, 0.72);
  --card-bg:  rgba(255,255,255,0.96);
  --shadow:   0 4px 24px rgba(30,42,94,0.13);
  --shadow-lg:0 8px 48px rgba(30,42,94,0.22);
  --radius:   12px;
  --radius-lg:20px;
  --transition: 0.25s ease;
  --font-head:'Playfair Display', serif;
  --font-body:'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background: #0d1534;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Page Backgrounds ───────────────────────────────────── */
.page-bg {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.page-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 0;
  pointer-events: none;
}
.page-bg > * { position: relative; z-index: 1; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,158,11,0.55); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(59,130,246,0.55); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  background: rgba(15, 23, 60, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59,130,246,0.2);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(15,23,60,0.98); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(59,130,246,0.2); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-icon-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.badge.visible { display: flex; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero / Video Banner ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg-home.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,18,50,0.7) 0%, rgba(10,18,50,0.45) 50%, rgba(10,18,50,0.8) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 50px;
  padding: 0.35rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, rgba(30,42,94,0.95), rgba(29,78,216,0.9));
  border-top: 1px solid rgba(59,130,246,0.3);
  border-bottom: 1px solid rgba(59,130,246,0.3);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.9rem; opacity: 0.8; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 8px 32px rgba(59,130,246,0.2);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}
.service-card h3 { color: #fff; margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ── Product Cards ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-img-wrap {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 2;
  color: #9ca3af;
}
.wishlist-btn:hover, .wishlist-btn.active { color: #ef4444; background: #fff; }

.product-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.product-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-btn {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.product-btn:hover { background: linear-gradient(135deg, var(--gold-dark), #b45309); transform: translateY(-1px); }

/* ── Filters & Search ───────────────────────────────────── */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.filter-input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.filter-input::placeholder { color: rgba(255,255,255,0.5); }
.filter-input:focus { border-color: var(--blue); background: rgba(255,255,255,0.15); }
.filter-select {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(15,23,60,0.8);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}
.filter-select option { background: #1e2a5e; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover { background: rgba(59,130,246,0.3); border-color: var(--blue); color: #fff; }
.page-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 700; }
.page-btn:disabled { opacity: 0.3; cursor: default; }

/* ── Blog Cards ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.4); box-shadow: 0 8px 32px rgba(59,130,246,0.2); }
.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.blog-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; flex: 1; }
.blog-read-more { color: var(--blue); font-size: 0.85rem; font-weight: 600; margin-top: 1rem; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial p { color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 1.25rem; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.author-name { color: #fff; font-weight: 600; font-size: 0.9rem; }
.author-loc { color: rgba(255,255,255,0.55); font-size: 0.8rem; }

/* ── Printer Cards ──────────────────────────────────────── */
.printers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.printer-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.printer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.printer-card img { width: 100%; height: 220px; object-fit: cover; }
.printer-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.printer-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(59,130,246,0.1);
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}
.printer-card h3 { color: var(--indigo); margin-bottom: 0.5rem; font-size: 1rem; }
.printer-card p { color: var(--text-mid); font-size: 0.88rem; flex: 1; margin-bottom: 1rem; }
.printer-price { font-size: 1.2rem; font-weight: 700; color: var(--indigo); margin-bottom: 1rem; }

/* ── JLCPCB Page ────────────────────────────────────────── */
.jlcpcb-hero {
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}
.jlcpcb-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 3rem 0;
}
.jlcpcb-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.jlcpcb-feature .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.jlcpcb-feature h4 { color: #fff; margin-bottom: 0.5rem; }
.jlcpcb-feature p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); background: rgba(255,255,255,0.12); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { color: rgba(255,255,255,0.85); }
.contact-info h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item .c-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(59,130,246,0.2); display: flex; align-items: center;
  justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  transition: var(--transition); text-decoration: none;
}
.social-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── Legal Pages ────────────────────────────────────────── */
.legal-content {
  background: rgba(255,255,255,0.93);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--text-dark);
  max-width: 900px;
  margin: 0 auto;
}
.legal-content h1 { color: var(--indigo); margin-bottom: 0.5rem; }
.legal-content .last-updated { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 2rem; }
.legal-content h2 { color: var(--indigo); margin: 2rem 0 0.75rem; font-size: 1.25rem; }
.legal-content p { margin-bottom: 1rem; color: var(--text-mid); }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul li { margin-bottom: 0.35rem; }

/* ── Page Header ────────────────────────────────────────── */
.page-header {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.page-header .breadcrumb a { color: var(--gold); text-decoration: none; }

/* ── Wishlist Sidebar ───────────────────────────────────── */
.wishlist-sidebar {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  height: 100vh;
  background: rgba(15,23,60,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(59,130,246,0.2);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.wishlist-sidebar.open { right: 0; }
.wishlist-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.wishlist-sidebar-header h3 { color: #fff; }
.wishlist-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.3rem; cursor: pointer; transition: var(--transition);
}
.wishlist-close:hover { color: #fff; }
.wishlist-items { flex: 1; overflow-y: auto; padding: 1rem; }
.wishlist-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.75rem;
  align-items: center;
}
.wishlist-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.wishlist-item-info { flex: 1; min-width: 0; }
.wishlist-item-title { color: #fff; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wishlist-item-btn { font-size: 0.75rem; color: var(--gold); }
.wishlist-item-remove { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1rem; flex-shrink: 0; transition: var(--transition); }
.wishlist-item-remove:hover { color: #ef4444; }
.wishlist-empty { text-align: center; color: rgba(255,255,255,0.5); padding: 3rem 1rem; }
.wishlist-empty .empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Overlay for sidebar */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  display: none;
}
.sidebar-overlay.active { display: block; }

/* ── Search Modal ───────────────────────────────────────── */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,18,50,0.95);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8rem;
}
.search-modal.open { display: flex; }
.search-modal-inner { width: 100%; max-width: 640px; padding: 0 1.5rem; }
.search-modal-input {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(59,130,246,0.5);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
.search-modal-input:focus { border-color: var(--blue); }
.search-modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.search-modal-close:hover { color: #fff; }
.search-results { margin-top: 1.5rem; max-height: 400px; overflow-y: auto; }
.search-result-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.search-result-item:hover { background: rgba(59,130,246,0.2); color: #fff; }
.search-result-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.search-result-title { font-size: 0.9rem; font-weight: 500; }

/* ── Toast ──────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(30,42,94,0.95);
  border: 1px solid rgba(59,130,246,0.3);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 260px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.toast.toast-success { border-color: rgba(16,185,129,0.5); }
.toast.toast-error   { border-color: rgba(239,68,68,0.5); }
.toast-icon { font-size: 1.1rem; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: rgba(10,18,50,0.98);
  border-top: 1px solid rgba(59,130,246,0.15);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img { width: 38px; height: 38px; border-radius: 8px; }
.footer-brand-name { font-family: var(--font-head); color: #fff; font-size: 1.3rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 1.25rem; letter-spacing: 0.05em; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-disclosure {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.5;
}
.footer-disclosure a { color: var(--gold); }

/* ── About Page ─────────────────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { color: #fff; margin-bottom: 1.25rem; }
.about-text p { color: rgba(255,255,255,0.78); margin-bottom: 1rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.team-card h4 { color: #fff; margin-bottom: 0.25rem; }
.team-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ── Utilities ──────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.loading {
  text-align: center;
  padding: 3rem;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,18,50,0.98); border-bottom: 1px solid rgba(59,130,246,0.2); padding: 1rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius: 8px; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-desc { max-width: 100%; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .printers-grid { grid-template-columns: 1fr; }
  .wishlist-sidebar { width: 100%; right: -100%; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .filters-bar { flex-direction: column; }
  .filter-input, .filter-select { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .legal-content { padding: 1.5rem; }
}
