/* ════════════════════════════════════════════════════════════
   PrintFoX.in – Main Stylesheet
   Stack: Bootstrap 5 + Custom CSS Design System
   ════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --primary:       #2563EB;
  --primary-dark:  #1D4ED8;
  --primary-light: #DBEAFE;
  --accent:        #F97316;
  --accent-dark:   #EA580C;
  --success:       #10B981;
  --danger:        #EF4444;
  --warning:       #F59E0B;
  --dark:          #1E293B;
  --gray-100:      #F8FAFC;
  --gray-200:      #E2E8F0;
  --gray-300:      #CBD5E1;
  --gray-500:      #64748B;
  --gray-700:      #334155;
  --white:         #FFFFFF;

  --font-head:  'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.10), 0 10px 10px -5px rgba(0,0,0,.04);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: all .25s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family:  var(--font-body);
  font-size:    16px;
  line-height:  1.7;
  color:        var(--dark);
  background:   var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.3; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ── Utility Classes ──────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.text-accent    { color: var(--accent)   !important; }
.text-dark-custom { color: var(--dark)   !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-accent      { background: var(--accent)     !important; }
.bg-light-blue  { background: var(--primary-light) !important; }
.bg-gray-100    { background: var(--gray-100)    !important; }

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.section-subtitle { color: var(--gray-500); font-size: 1.05rem; margin-top: .5rem; }

/* Badge */
.badge-primary {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  letter-spacing: .04em; text-transform: uppercase;
}
.badge-accent {
  display: inline-block; background: #FEF3C7; color: var(--accent-dark);
  font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary-custom, .btn-primary {
  background: var(--primary); border: 2px solid var(--primary);
  color: var(--white); border-radius: var(--radius-md);
  padding: 12px 26px; font-weight: 600; font-family: var(--font-head);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-primary-custom:hover, .btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-accent {
  background: var(--accent); border: 2px solid var(--accent);
  color: var(--white); border-radius: var(--radius-md);
  padding: 12px 26px; font-weight: 600; font-family: var(--font-head);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.btn-outline-primary-custom {
  background: transparent; border: 2px solid var(--primary);
  color: var(--primary); border-radius: var(--radius-md);
  padding: 12px 26px; font-weight: 600;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-primary-custom:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-2px);
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-custom {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding: 14px 0; position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.navbar-brand {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  color: var(--primary) !important;
}
.navbar-brand span { color: var(--accent); }
.nav-link {
  font-weight: 500; color: var(--gray-700) !important;
  padding: 8px 14px !important; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important; background: var(--primary-light);
}
.navbar-custom .dropdown-menu {
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 8px;
  animation: fadeInDown .2s ease;
}
.navbar-custom .dropdown-item {
  border-radius: var(--radius-sm); padding: 8px 14px; font-size: .9rem;
  transition: var(--transition);
}
.navbar-custom .dropdown-item:hover {
  background: var(--primary-light); color: var(--primary);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 50%, #FFFBEB 100%);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.05) 0%, transparent 70%);
  bottom: -50px; left: 10%; pointer-events: none;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.15; color: var(--dark);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--gray-500); margin: 20px 0 36px;
  line-height: 1.8;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: 6px 16px; font-size: .85rem;
  color: var(--gray-700); font-weight: 500; box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-stats {
  display: flex; gap: 30px; margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat-value { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: .8rem; color: var(--gray-500); }
.hero-image-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
}
.hero-image-wrap .float-badge {
  position: absolute; background: var(--white);
  border-radius: var(--radius-md); padding: 10px 16px;
  box-shadow: var(--shadow-lg); font-size: .85rem; font-weight: 600;
}
.hero-image-wrap .float-badge.top-right { top: 20px; right: 20px; }
.hero-image-wrap .float-badge.bottom-left { bottom: 20px; left: 20px; }

/* ── Services / Icon Cards ────────────────────────────────── */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}
.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.6rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon .icon { filter: invert(1) brightness(10); }
.service-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.service-desc  { font-size: .85rem; color: var(--gray-500); }

/* ── Template Card ────────────────────────────────────────── */
.template-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition); box-shadow: var(--shadow-sm);
  position: relative;
}
.template-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--primary);
}
.template-card img {
  width: 100%; height: 200px; object-fit: cover;
  transition: var(--transition);
}
.template-card:hover img { transform: scale(1.04); }
.template-card-overlay {
  position: absolute; inset: 0; background: rgba(37,99,235,.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.template-card:hover .template-card-overlay { opacity: 1; }
.template-card-body { padding: 14px 16px; }
.template-card-title { font-weight: 600; font-size: .95rem; }
.template-card-cat   { font-size: .8rem; color: var(--gray-500); }

/* ── Steps / How It Works ─────────────────────────────────── */
.step-card {
  text-align: center; padding: 30px 20px;
  position: relative;
}
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-title { font-weight: 700; margin-bottom: 8px; }
.step-desc  { color: var(--gray-500); font-size: .9rem; }

/* ── Pricing Cards ────────────────────────────────────────── */
.pricing-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); padding: 36px 30px;
  transition: var(--transition); position: relative;
  box-shadow: var(--shadow-sm);
}
.pricing-card.popular {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  font-size: .75rem; font-weight: 700; padding: 4px 16px; border-radius: 100px;
}
.pricing-name  { font-size: 1rem; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--dark); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-500); }
.pricing-qty   { color: var(--gray-500); font-size: .88rem; margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; }
.pricing-features li {
  padding: 7px 0; font-size: .9rem; border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ── Reviews ──────────────────────────────────────────────── */
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 14px; }
.review-text  { color: var(--gray-700); font-size: .95rem; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--primary); font-size: 1.1rem;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: .95rem; }
.review-role { font-size: .8rem; color: var(--gray-500); }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
  padding: 18px 22px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); transition: var(--transition);
}
.faq-question:hover { background: var(--primary-light); color: var(--primary); }
.faq-question .icon { font-size: 1.2rem; transition: var(--transition); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--gray-700); font-size: .95rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 22px 18px; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl); padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -100px; right: -50px;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.4rem); }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 16px 0 32px; }
.btn-white {
  background: var(--white); color: var(--primary);
  border-radius: var(--radius-md); padding: 14px 30px;
  font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-white:hover {
  background: var(--primary-light); color: var(--primary);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

/* ── Product Hero ─────────────────────────────────────────── */
.product-hero {
  background: linear-gradient(135deg, #F0F9FF 0%, #EFF6FF 100%);
  padding: 60px 0;
}
.product-options .option-chip {
  display: inline-block; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 8px 16px; font-size: .88rem;
  font-weight: 500; cursor: pointer; transition: var(--transition); margin: 4px;
}
.product-options .option-chip:hover,
.product-options .option-chip.selected {
  border-color: var(--primary); color: var(--primary); background: var(--primary-light);
}
.qty-selector {
  border: 2px solid var(--gray-200); border-radius: var(--radius-md); padding: 10px 16px;
  width: 100%; font-family: var(--font-body); font-size: 1rem;
}
.price-display { font-size: 2rem; font-weight: 800; color: var(--primary); }

/* ── Card ─────────────────────────────────────────────────── */
.card-custom {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card-custom:hover { box-shadow: var(--shadow-lg); }

/* ── Blog Card ────────────────────────────────────────────── */
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: var(--transition); background: var(--white);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.blog-card-img { height: 200px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 20px; }
.blog-card-cat { font-size: .75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; margin: 8px 0; line-height: 1.4; }
.blog-card-excerpt { font-size: .88rem; color: var(--gray-500); }
.blog-card-meta { font-size: .8rem; color: var(--gray-500); margin-top: 16px; }

/* ── Forms ────────────────────────────────────────────────── */
.form-custom { background: var(--white); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.form-label { font-weight: 600; font-size: .9rem; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 12px 16px; font-family: var(--font-body); font-size: .95rem;
  transition: var(--transition); color: var(--dark);
}
.form-control:focus, .form-select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 20px;
}
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--white); }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: .9rem; margin: 12px 0 20px; line-height: 1.8; }
.footer h6 { color: var(--white); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px; padding-top: 20px;
  font-size: .82rem; text-align: center; color: rgba(255,255,255,.45);
}
.newsletter-input-group {
  display: flex; gap: 0;
}
.newsletter-input-group input {
  flex: 1; border-radius: var(--radius-md) 0 0 var(--radius-md);
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08);
  color: var(--white); padding: 10px 14px; font-size: .9rem;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-input-group button {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--accent); border: none; color: var(--white);
  padding: 10px 18px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.newsletter-input-group button:hover { background: var(--accent-dark); }

/* ── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 16px rgba(37,211,102,.5);
  transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 6px 24px rgba(37,211,102,.6); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.8); }
}

/* ── Cart & Checkout ──────────────────────────────────────── */
.cart-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 20px; margin-bottom: 16px; background: var(--white);
  display: flex; gap: 16px; align-items: start;
}
.cart-item-img { width: 90px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-qty-control { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn {
  width: 32px; height: 32px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); background: var(--white); cursor: pointer;
  font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.order-summary-box {
  background: var(--gray-100); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--gray-200);
}
.order-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--gray-200); font-size: .95rem;
}
.order-summary-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.05rem; color: var(--dark); }

/* ── User Dashboard ───────────────────────────────────────── */
.dash-stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 22px 24px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.dash-stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dash-stat-val { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.dash-stat-label { font-size: .85rem; color: var(--gray-500); margin-top: 4px; }
.dash-stat-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

/* ── Sidebar (user/admin) ─────────────────────────────────── */
.sidebar {
  background: var(--dark); min-height: 100vh; padding: 0; width: 260px;
}
.sidebar-logo { padding: 24px 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-menu { list-style: none; padding: 12px; }
.sidebar-menu li { margin-bottom: 2px; }
.sidebar-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 500;
  transition: var(--transition);
}
.sidebar-menu a:hover, .sidebar-menu a.active {
  background: var(--primary); color: var(--white);
}
.sidebar-section-title {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.3); padding: 12px 14px 4px; font-weight: 600;
}
.sidebar-badge {
  margin-left: auto; background: var(--accent); color: var(--white);
  font-size: .7rem; font-weight: 700; padding: 2px 7px; border-radius: 100px;
}

/* ── Delivery Timeline ────────────────────────────────────── */
.tracking-timeline { padding: 0; list-style: none; position: relative; }
.tracking-timeline::before {
  content: ''; position: absolute; left: 22px; top: 10px; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.tracking-step {
  display: flex; gap: 18px; margin-bottom: 24px; position: relative;
}
.tracking-step-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; z-index: 1; border: 3px solid var(--white);
}
.tracking-step.done .tracking-step-icon { background: var(--success); color: var(--white); }
.tracking-step.active .tracking-step-icon { background: var(--primary); color: var(--white); }

/* ── Status Badges ────────────────────────────────────────── */
.status-badge {
  display: inline-block; padding: 3px 12px; border-radius: 100px;
  font-size: .78rem; font-weight: 600;
}
.status-pending    { background: #FEF3C7; color: #92400E; }
.status-processing { background: var(--primary-light); color: var(--primary); }
.status-printing   { background: #F3E8FF; color: #7C3AED; }
.status-shipped    { background: #ECFDF5; color: #065F46; }
.status-delivered  { background: #DCFCE7; color: #166534; }
.status-cancelled  { background: #FEE2E2; color: #991B1B; }
.status-paid       { background: #DCFCE7; color: #166534; }
.status-failed     { background: #FEE2E2; color: #991B1B; }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section { padding: 60px 0 50px; }
  .sidebar { min-height: auto; width: 100%; }
}
@media (max-width: 767px) {
  .section { padding: 50px 0; }
  .hero-stats { gap: 16px; }
  .pricing-card { margin-bottom: 24px; }
  .cta-section { padding: 40px 20px; }
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
