/* =====================================================
   GLOBAL DESIGN SYSTEM (SCRATCH BUILD)
   ===================================================== */

/* ---------------- TOKENS ---------------- */
:root {
  /* Brand */
  --brand-primary: #2563eb; /* calm blue */
  --brand-hover: #1d4ed8;
  --brand-soft: #eff6ff;

  /* Backgrounds */
  --bg-page: #f9fafb;
  --bg-surface: #ffffff;
  --bg-muted: #f1f5f9;
  --bg-dark: #0f172a;

  /* Text */
  --text-main: #0f172a;
  --text-soft: #334155;
  --text-muted: #64748b;
  --text-invert: #ffffff;

  /* Borders */
  --border-subtle: #e5e7eb;

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 40px 80px rgba(15, 23, 42, 0.18);

  /* Layout */
  --container-max: 1280px;
  --container-pad: 20px;

  /* Status */
  --success: #16a34a;
  --warning: #ca8a04;
  --danger: #dc2626;
  --info: #0284c7;
}

/* ---------------- RESET ---------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- MEDIA ---------------- */
img,
svg,
video {
  max-width: 100%;
  display: block;
}

/* ---------------- LINKS ---------------- */
a {
  color: var(--brand-primary);
  text-decoration: none;
}

a:hover {
  color: var(--brand-hover);
}

/* ---------------- TYPOGRAPHY ---------------- */
h1 {
  font-size: 44px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-main);
}

p {
  margin: 0 0 1em;
  color: var(--text-soft);
}

small {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------------- CONTAINER ---------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ---------------- SECTIONS ---------------- */
.section {
  padding: 110px 0;
}

.section.light {
  background: var(--bg-muted);
}

.section.dark {
  background: var(--bg-dark);
  color: var(--text-invert);
}

.section.dark p,
.section.dark h1,
.section.dark h2,
.section.dark h3 {
  color: var(--text-invert);
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--text-invert);
}

.btn-primary:hover {
  background: var(--brand-hover);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-muted);
}

.btn-soft {
  background: var(--brand-soft);
  color: var(--brand-primary);
}

.btn-soft:hover {
  background: #dbeafe;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

/* ---------------- FORMS ---------------- */
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ---------------- CARDS ---------------- */
.card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

/* ---------------- BADGES ---------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge.success {
  background: #dcfce7;
  color: var(--success);
}

.badge.warning {
  background: #fef3c7;
  color: var(--warning);
}

.badge.danger {
  background: #fee2e2;
  color: var(--danger);
}

/* ---------------- UTILITIES ---------------- */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.w-100 {
  width: 100%;
}

.hidden {
  display: none !important;
}

.text-white {
  color: white !important;
}

.margin-top-10 {
  margin-top: 50px !important;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  body {
    line-height: 1.65;
  }
}

/* =====================================================
   HEADER — MODERN / SOFT
===================================================== */

.site-header {
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr 320px auto;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
}

/* BRAND */
.site-brand img {
  height: 44px;
}

/* NAV */
.site-nav {
  display: flex;
  gap: 26px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.25s ease;
}

.site-nav a:hover {
  color: var(--brand-primary);
}

.site-nav a:hover::after {
  width: 100%;
}

/* SEARCH */
.site-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-muted);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
}

.site-search i {
  color: var(--text-muted);
  font-size: 14px;
}

.site-search input {
  border: none;
  background: transparent;
  font-size: 14px;
  width: 100%;
}

.site-search input:focus {
  outline: none;
}

/* ACTIONS */
.site-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-action {
  font-size: 18px;
  color: var(--text-soft);
  position: relative;
}

.site-action:hover {
  color: var(--brand-primary);
}

/* CART BADGE */
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--brand-primary);
  color: var(--text-invert);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .site-search {
    display: none;
  }

  .site-header-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
  }
}

/* =====================================================
   HERO — EDITORIAL SPLIT (NEW CONCEPT)
===================================================== */

.hero-editorial {
  background: #d6e2fd;
  padding: 120px 0 140px;
}

.hero-editorial-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

/* ================= LEFT ================= */

.hero-copy h1 {
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.hero-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-link:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.hero-points li::before {
  content: "–";
  position: absolute;
  left: 0;
}

/* ================= RIGHT ================= */

.hero-visual {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-image-card img {
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* Floating metrics */

.hero-metric {
  position: absolute;
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  border-radius: var(--radius-md);
}

.hero-metric strong {
  display: block;
  font-size: 18px;
}

.hero-metric span {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-metric.one {
  top: 40px;
  left: -40px;
}

.hero-metric.two {
  bottom: 40px;
  right: -30px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .hero-editorial-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-metric.one,
  .hero-metric.two {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-editorial {
    padding: 90px 0 110px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image-card img {
    height: 280px;
  }
}

/* =====================================================
   FEATURED PRODUCTS — EDITORIAL CAROUSEL (FINAL)
===================================================== */

.featured-carousel {
  background: var(--bg-surface);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* ================= HEADER ================= */

.featured-head {
  max-width: 520px;
  margin-bottom: 50px;
}

.featured-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.featured-head p {
  color: var(--text-muted);
}

/* =====================================================
   CAROUSEL TRACK
===================================================== */

.carousel-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 12px;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Edge */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

/* =====================================================
   CAROUSEL CARD
===================================================== */

.carousel-item {
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;

  background: var(--bg-page);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);

  display: flex;
  flex-direction: column;
}

/* =====================================================
   IMAGE
===================================================== */

.carousel-image {
  padding: 20px;
  background: var(--bg-muted);
  border-radius: 18px 18px 0 0;
}

.carousel-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* =====================================================
   CONTENT
===================================================== */

.carousel-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.carousel-content h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}

.carousel-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =====================================================
   META (PRICE + STOCK)
===================================================== */

.carousel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.carousel-meta .price {
  font-size: 16px;
  font-weight: 600;
}

.carousel-meta .stock {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.carousel-meta .stock.in {
  color: var(--success);
}

.carousel-meta .stock.out {
  color: var(--danger);
}

/* =====================================================
   ACTION BUTTONS — PERFECT ALIGNMENT
===================================================== */

.carousel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.carousel-actions form {
  margin: 0;
}

.carousel-actions button,
.carousel-actions a {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

/* Outline button */

.btn-outline {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
}

.btn-outline:hover {
  background: #f9fafb;
}

/* Primary button */

.btn-primary {
  background: #2563eb;
  border: none;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* Disabled */

.btn-disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

/* =====================================================
   EDGE FADE (PREMIUM TOUCH)
===================================================== */

.featured-carousel::before,
.featured-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.featured-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface), transparent);
}

.featured-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface), transparent);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .carousel-item {
    width: 260px;
    min-width: 260px;
  }
}

@media (max-width: 600px) {
  .featured-carousel {
    padding: 90px 0;
  }

  .featured-head h2 {
    font-size: 28px;
  }

  .carousel-item {
    width: 220px;
    min-width: 220px;
  }
}

@media (max-width: 420px) {
  .carousel-actions {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   WHY CHOOSE US — CONTENT CENTRIC
===================================================== */

.why-choose {
  background: #f4f6fb;
  padding: 120px 0;
}

/* HEADER */

.why-head {
  max-width: 620px;
  margin-bottom: 70px;
}

.why-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}

.why-head h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.why-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* GRID */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  margin-bottom: 80px;
}

/* ITEM */

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ICON */

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* CONTENT */

.why-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.why-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* TRUST STRIP */

.why-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.why-trust-strip div {
  text-align: center;
}

.why-trust-strip strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.why-trust-strip span {
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose {
    padding: 90px 0;
  }

  .why-head h2 {
    font-size: 30px;
  }

  .why-trust-strip {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT US — CONTENT RICH SECTION
===================================================== */

.about-us {
  background: #ffffff;
  padding: 120px 0;
}

/* HEADER */

.about-head {
  max-width: 720px;
  margin-bottom: 70px;
}

.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}

.about-head h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.about-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* GRID */

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

/* LEFT CONTENT */

.about-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 18px;
}

.about-content strong {
  color: #0f172a;
}

/* RIGHT HIGHLIGHTS */

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-highlight i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-highlight strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #0f172a;
}

.about-highlight span {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* FOOTER NOTE */

.about-footer {
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
  max-width: 900px;
}

.about-footer p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.about-footer a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.about-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-us {
    padding: 90px 0;
  }

  .about-head h2 {
    font-size: 30px;
  }
}

/* =====================================================
   PROCESS FLOW — HOW IT WORKS
===================================================== */

.process-flow {
  background: #2563eb; /* PRIMARY COLOR */
  padding: 130px 0;
  color: #ffffff;
}

/* HEADER */

.process-head {
  max-width: 720px;
  margin-bottom: 90px;
}

.process-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dbeafe;
  margin-bottom: 14px;
}

.process-head h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e7ff;
}

/* STEPS GRID */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

/* STEP */

.process-step {
  position: relative;
  padding-left: 64px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e7ff;
}

/* ICON */

.step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* FLOW LINE (SUBTLE) */

.process-step::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 54px;
  width: 2px;
  height: calc(100% - 54px);
  background: rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-flow {
    padding: 100px 0;
  }

  .process-head h2 {
    font-size: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step::after {
    display: none;
  }
}

/* =====================================================
   TESTIMONIALS — TRUST SECTION
===================================================== */

.testimonials {
  background: #f8fafc;
  padding: 120px 0;
}

/* HEADER */

.testimonials-head {
  max-width: 700px;
  margin-bottom: 70px;
}

.testimonials-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}

.testimonials-head h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

.testimonials-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* GRID */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* STARS */

.testimonial-stars {
  font-size: 18px;
  letter-spacing: 3px;
  color: #f59e0b;
  margin-bottom: 16px;
}

/* TEXT */

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* USER */

.testimonial-user strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-user span {
  font-size: 13px;
  color: #64748b;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 90px 0;
  }

  .testimonials-head h2 {
    font-size: 30px;
  }
}

/* =====================================================
   FOOTER — PROFESSIONAL BUSINESS FOOTER
===================================================== */

.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 90px 0 40px;
}

/* TOP GRID */

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* COLUMNS */

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 14px;
}

/* LINKS */

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* BUSINESS LINKS */

.footer-business a {
  color: #cbd5f5;
  font-weight: 600;
  text-decoration: none;
}

.footer-business a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #cbd5f5;
}

.footer-note {
  max-width: 520px;
  text-align: right;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 70px 0 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* ================= ABOUT PAGE ================= */

.about-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 140px 20px 120px;
  text-align: center;
}

.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
}

.about-hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.about-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #cbd5f5;
}

/* SECTIONS */

.about-section {
  padding: 110px 20px;
}

.alt-bg {
  background: #f8fafc;
}

.dark-bg {
  background: #0f172a;
  color: #ffffff;
}

.trust-strip {
  background: #f1f5f9;
  text-align: center;
}

/* SPLIT */

.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

/* HIGHLIGHT BOX */

.about-highlight-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* HEAD */

.about-head {
  max-width: 700px;
  margin-bottom: 70px;
}

.about-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* CARDS */

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.about-card i {
  font-size: 26px;
  color: #2563eb;
  margin-bottom: 18px;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.process-card .step {
  position: absolute;
  top: -12px;
  right: 22px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.15);
}

/* VALUES */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.value-card i {
  font-size: 28px;
  color: #93c5fd;
  margin-bottom: 14px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .about-split,
  .about-card-grid,
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 34px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 140px 20px 120px;
  text-align: center;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-size: 44px;
  margin-bottom: 14px;
}

.contact-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #cbd5f5;
}

/* MAIN SECTION */

.contact-section {
  padding: 110px 20px;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
}

/* LEFT INFO */

.contact-info h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.contact-intro {
  font-size: 15px;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-note {
  margin-top: 26px;
  font-size: 14px;
  color: #64748b;
  border-left: 4px solid #2563eb;
  padding-left: 14px;
}

/* FORM */

.contact-form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.contact-form-wrap h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.form-note {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 26px;
}

/* FORM FIELDS */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* ROW */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* BUTTON */

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #1d4ed8;
}

/* THANK YOU */

.contact-thankyou {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.contact-thankyou h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-thankyou p {
  font-size: 15px;
  color: #475569;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ PAGE ================= */

.faq-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 140px 20px 120px;
  text-align: center;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
}

.faq-hero h1 {
  font-size: 44px;
  margin-bottom: 14px;
}

.faq-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #cbd5f5;
}

/* MAIN SECTION */

.faq-section {
  padding: 110px 20px;
  background: #f8fafc;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

/* LEFT */

.faq-intro h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.faq-intro p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}

.faq-contact-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 30px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

.faq-contact-btn:hover {
  background: #1d4ed8;
}

/* FAQ LIST */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* QUESTION */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

/* ANSWER */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* ACTIVE */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-hero h1 {
    font-size: 34px;
  }
}

/* ================= LOGIN PAGE ================= */

.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.login-wrap {
  max-width: 980px;
  width: 100%;
  background: #ffffff;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.18);
}

/* LEFT PANEL */

.login-brand {
  background: linear-gradient(135deg, #1e293b, #020617);
  color: #ffffff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-brand h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.login-brand p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.login-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.login-points li {
  font-size: 15px;
  margin-bottom: 12px;
}

/* RIGHT PANEL */

.login-form-box {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-box h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.login-subtext {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}

/* FORM */

.login-field {
  margin-bottom: 18px;
}

.login-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.login-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.login-field input:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

/* BUTTON */

.login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.login-btn:hover {
  background: #4f46e5;
}

/* FOOTER */

.login-footer {
  margin-top: 26px;
  font-size: 14px;
  text-align: center;
  color: #475569;
}

.login-footer a {
  margin-left: 6px;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .login-wrap {
    grid-template-columns: 1fr;
  }

  .login-brand {
    display: none;
  }

  .login-form-box {
    padding: 50px 30px;
  }
}

/* ================= REGISTER PAGE ================= */

.register-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.register-wrap {
  max-width: 1000px;
  width: 100%;
  background: #ffffff;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.18);
}

/* LEFT PANEL */

.register-brand {
  background: linear-gradient(135deg, #1e293b, #020617);
  color: #ffffff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-brand h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.register-brand p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.register-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.register-points li {
  font-size: 15px;
  margin-bottom: 12px;
}

/* RIGHT PANEL */

.register-form-box {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-form-box h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.register-subtext {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}

/* FORM */

.register-field {
  margin-bottom: 18px;
}

.register-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.register-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.register-field input:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

/* BUTTON */

.register-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.register-btn:hover {
  background: #4f46e5;
}

/* FOOTER */

.register-footer {
  margin-top: 26px;
  font-size: 14px;
  text-align: center;
  color: #475569;
}

.register-footer a {
  margin-left: 6px;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
}

.register-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .register-wrap {
    grid-template-columns: 1fr;
  }

  .register-brand {
    display: none;
  }

  .register-form-box {
    padding: 50px 30px;
  }
}

/* ================= ACCOUNT DASHBOARD ================= */

.account-page {
  background: #f8fafc;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
}

/* HEADER */

.account-header {
  background: #0f172a;
  padding: 90px 20px 70px;
}

.account-header-inner {
  max-width: 1100px;
  margin: auto;
}

.account-header h1 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 10px;
}

.account-header p {
  font-size: 15px;
  color: #d1d5db;
  max-width: 620px;
  line-height: 1.7;
}

/* BODY */

.account-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding: 80px 20px;
}

/* SIDEBAR */

.account-sidebar {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.account-identity {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}

.account-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6366f1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.account-identity-text strong {
  display: block;
  font-size: 14px;
}

.account-identity-text span {
  font-size: 13px;
  color: #6b7280;
}

/* NAV */

.account-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.account-links a.active,
.account-links a:hover {
  background: #eef2ff;
  color: #4338ca;
}

/* MAIN */

.account-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* SECTION */

.account-section h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

/* DATA */

.account-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.account-data span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #6b7280;
}

/* ACTIONS */

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.account-action {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.account-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
}

.account-action strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.account-action span {
  font-size: 14px;
  color: #475569;
}

/* SECURITY */

.account-security {
  background: #fef3c7;
  border-left: 6px solid #f59e0b;
  padding: 20px;
  border-radius: 14px;
}

.account-security strong {
  display: block;
  margin-bottom: 6px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .account-body {
    grid-template-columns: 1fr;
  }

  .account-actions,
  .account-data {
    grid-template-columns: 1fr;
  }
}

/* ================= TRACK ORDER ================= */

.track-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 140px 20px 120px;
  text-align: center;
}

.track-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
}

.track-hero h1 {
  font-size: 44px;
  margin-bottom: 14px;
}

.track-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #cbd5f5;
}

/* SECTION */

.track-section {
  padding: 110px 20px;
  background: #f8fafc;
}

.track-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

/* CARD */

.track-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.track-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.track-note {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 26px;
}

/* FORM */

.track-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.track-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.track-input-row input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.track-input-row input:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

.track-input-row button {
  padding: 14px 26px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.track-input-row button:hover {
  background: #4f46e5;
}

/* ERROR */

.track-error {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid #ef4444;
  background: #fef2f2;
  border-radius: 12px;
}

.track-error strong {
  display: block;
  margin-bottom: 6px;
}

/* RESULT */

.track-result {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.track-result h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* STEPS */

.track-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.track-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.track-step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.track-step p {
  font-size: 14px;
  color: #64748b;
}

.track-step.completed span {
  background: #22c55e;
  color: #ffffff;
}

.track-step.active span {
  background: #6366f1;
  color: #ffffff;
}

/* SUMMARY */

.track-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #f8fafc;
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.track-summary span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #6b7280;
}

/* MESSAGE */

.track-message {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .track-layout {
    grid-template-columns: 1fr;
  }

  .track-hero h1 {
    font-size: 34px;
  }

  .track-steps {
    flex-direction: column;
    gap: 18px;
  }
}

/* ================= RETURN ORDER ================= */

.return-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 140px 20px 120px;
  text-align: center;
}

.return-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
}

.return-hero h1 {
  font-size: 44px;
  margin-bottom: 14px;
}

.return-hero p {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #cbd5f5;
}

/* SECTION */

.return-section {
  padding: 110px 20px;
  background: #f8fafc;
}

.return-layout {
  max-width: 640px;
}

/* CARD */

.return-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.return-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.return-note {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 26px;
}

/* FORM */

.return-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.return-form input,
.return-form select,
.return-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  margin-bottom: 18px;
  font-family: inherit;
}

.return-form textarea {
  min-height: 120px;
  resize: vertical;
}

.return-form input:focus,
.return-form select:focus,
.return-form textarea:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

/* ERROR */

.return-error {
  margin-bottom: 18px;
  padding: 16px;
  border-left: 4px solid #ef4444;
  background: #fef2f2;
  border-radius: 12px;
}

.return-error strong {
  display: block;
  margin-bottom: 6px;
}

/* BUTTON */

.return-submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.return-submit:hover {
  background: #4f46e5;
}

/* POLICY */

.return-policy {
  font-size: 13px;
  color: #64748b;
  margin-top: 14px;
  text-align: center;
}

/* SUCCESS */

.return-success {
  background: #ffffff;
  border-radius: 22px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.return-success h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.return-success p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 30px;
}

.return-summary {
  background: #f8fafc;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.return-summary span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  color: #6b7280;
}

.return-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.return-btn:hover {
  background: #4f46e5;
}

/* RESPONSIVE */

@media (max-width: 600px) {
  .return-hero h1 {
    font-size: 34px;
  }

  .return-card,
  .return-success {
    padding: 32px;
  }
}

/* ================= CART ================= */

.cart-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 110px 20px 90px;
  text-align: center;
}

.cart-hero h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.cart-hero p {
  color: #cbd5f5;
}

/* SECTION */

.cart-section {
  padding: 90px 20px;
  background: #f8fafc;
}

/* EMPTY */

.cart-empty {
  text-align: center;
  background: #ffffff;
  padding: 60px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.cart-empty i {
  font-size: 36px;
  color: #6366f1;
  margin-bottom: 14px;
}

/* LAYOUT */

.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
}

/* ITEMS */

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* PRODUCT */

.cart-product {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.cart-product span {
  display: block;
  font-size: 14px;
  color: #64748b;
}

/* QTY */

.cart-qty form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty input {
  width: 60px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #eef2ff;
  color: #4338ca;
  cursor: pointer;
}

/* TOTAL */

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* REMOVE */

.remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 16px;
}

/* SUMMARY */

.cart-summary {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.summary-row.total {
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
}

/* BUTTON */

.cart-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 26px;
  padding: 14px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.cart-btn.primary:hover {
  background: #4f46e5;
}

.cart-trust {
  margin-top: 16px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-total {
    justify-content: center;
    gap: 16px;
  }
}

/* ================= CHECKOUT ================= */

.checkout-new {
  background: #f8fafc;
  padding: 100px 20px;
}

.checkout-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

/* LEFT */

.checkout-left h1 {
  font-size: 36px;
  margin-bottom: 6px;
}

.checkout-sub {
  color: #64748b;
  margin-bottom: 30px;
}

.checkout-left label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.checkout-left input,
.checkout-left textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  margin-bottom: 18px;
}

.checkout-left textarea {
  min-height: 120px;
}

/* GRID */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* PAYMENT */

.payment-section {
  margin: 30px 0;
}

.payment-section h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.25s ease;
  position: relative;
}

.payment-card input {
  position: absolute;
  opacity: 0;
}

.payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef2ff;
  color: #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.payment-icon.paypal {
  background: #e0f2fe;
  color: #0284c7;
}

.payment-info strong {
  display: block;
  font-size: 15px;
}

.payment-info span {
  font-size: 13px;
  color: #64748b;
}

.payment-card:has(input:checked) {
  border-color: #6366f1;
  background: #eef2ff;
}

.payment-card:has(input:checked) .payment-icon {
  background: #6366f1;
  color: #ffffff;
}

/* BUTTON */

.checkout-btn {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #6366f1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* RIGHT */

.checkout-right {
  background: #ffffff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.summary-total {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* ERROR */

.checkout-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* POPUP */

.order-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 420px;
}

.popup-icon {
  width: 64px;
  height: 64px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.order-number {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0;
}

.popup-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #6366f1;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= SHOP ================= */

.shop-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 120px 20px 90px;
  text-align: center;
}

.shop-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.shop-hero p {
  color: #cbd5f5;
  max-width: 700px;
  margin: auto;
}

.shop-query {
  margin-top: 14px;
  font-size: 14px;
  color: #e0e7ff;
}

/* SECTION */

.shop-section {
  padding: 90px 20px;
  background: #f8fafc;
}

/* GRID */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* CARD */

.shop-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
}

.shop-card-link {
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.shop-image {
  position: relative;
  background: #f1f5f9;
  padding: 28px;
  text-align: center;
}

.shop-image img {
  height: 200px;
  width: 100%;
  object-fit: contain;
}

/* STOCK */

.shop-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
}

.shop-stock.out {
  background: #fee2e2;
  color: #991b1b;
}

/* INFO */

.shop-info {
  padding: 22px;
}

.shop-info h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.shop-info p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* FOOTER */

.shop-footer {
  padding: 18px 22px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-price {
  font-size: 18px;
  font-weight: 700;
}

/* BUTTONS */

.shop-add {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #6366f1;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.shop-add:hover {
  background: #4f46e5;
}

.shop-disabled {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #e5e7eb;
  color: #6b7280;
  font-weight: 600;
}

/* EMPTY */

.shop-empty {
  max-width: 520px;
  margin: auto;
  text-align: center;
}

.shop-empty h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.shop-empty p {
  color: #64748b;
  margin-bottom: 20px;
}

.shop-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #6366f1;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero h1 {
    font-size: 34px;
  }
}

/* ================= PRODUCT PAGE ================= */

.pd-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 120px 20px 90px;
  text-align: center;
}

.pd-brand {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
}

.pd-hero h1 {
  font-size: 42px;
  margin: 12px 0;
}

.pd-rating {
  color: #fbbf24;
  font-size: 15px;
}

.pd-rating span {
  color: #cbd5f5;
  font-size: 13px;
}

.pd-price {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 700;
}

.pd-price span {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
}

.in {
  color: #22c55e;
}
.out {
  color: #ef4444;
}

/* IMAGE */

.pd-media {
  background: #f8fafc;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pd-media img {
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* SECTIONS */

.pd-section {
  padding: 90px 20px;
}

.pd-section.alt {
  background: #f8fafc;
}

.container.narrow {
  max-width: 760px;
}

.pd-section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

/* FEATURES */

.pd-features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feature-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

.feature-card i {
  font-size: 26px;
  color: #6366f1;
  margin-bottom: 12px;
}

/* SPECS */

.pd-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pd-specs div {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
}

/* COMPATIBILITY */

.pd-compat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.compat-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.compat-card i {
  font-size: 28px;
  color: #0f172a;
}

.compat-card span {
  font-size: 15px;
  font-weight: 600;
}

/* ACTION BAR */

.pd-action-bar {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 16px 0;
}

.action-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pd-action-bar button {
  padding: 12px 26px;
  border-radius: 999px;
  background: #6366f1;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .pd-features .container,
  .pd-specs,
  .pd-compat {
    grid-template-columns: 1fr;
  }

  .pd-hero h1 {
    font-size: 34px;
  }
}

.policy-page {
  padding: 90px 0;
  background: #ffffff;
}

/* HP Link */
.hp-partner {
  max-width: 150px;
  cursor: pointer;
  margin-bottom: 8px;
}

/* Popup styles */
.hp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hp-popup {
  background: #fff;
  padding: 25px;
  max-width: 420px;
  width: 90%;
  border-radius: 6px;
  text-align: center;
}

.hp-popup-actions {
  margin-top: 20px;
}

.hp-popup-actions button {
  padding: 8px 18px;
  margin: 0 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#hpProceed {
  background: #0076ce;
  color: #fff;
}

#hpCancel {
  background: #ccc;
}
