/* ==========================================================================
   NPS - Naveed Printing Solutions | Official Stylesheet
   DTFPrinter Matching Header Layout & NPS CMYK Branding
   Ultra-Clean Light Theme with Lime Green & Lime Blue Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-signature: 'Caveat', cursive;

  /* Brand CMYK & Theme Accents */
  --color-cyan: #00aeef;
  --color-magenta: #ec008c;
  --color-yellow: #ffdd00;
  --color-btn-amber: #f59e0b;
  --color-btn-amber-hover: #d97706;

  --color-lime-green: #65a30d;
  --color-lime-green-bright: #84cc16;
  --color-lime-green-light: #f7fee7;

  --color-lime-blue: #0284c7;
  --color-lime-blue-bright: #0ea5e9;
  --color-lime-blue-light: #f0f9ff;
  --color-lime-blue-border: #bae6fd;

  /* Light Theme Surfaces */
  --color-bg-body: #f8fafc;
  --color-bg-white: #ffffff;
  --color-bg-subtle: #f1f5f9;
  --color-bg-shipping: #e6f7f2;

  /* Text Colors */
  --color-text-main: #000000;
  --color-text-dark: #0f172a;
  --color-text-secondary: #334155;
  --color-text-muted: #64748b;

  --color-border: #e2e8f0;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -4px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 40px -6px rgba(15, 23, 42, 0.12);
  --shadow-amber: 0 6px 18px rgba(245, 158, 11, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1260px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  background-color: var(--color-bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   PRELOADER / OPENING INTRO
   ========================================================================== */
.nps-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.nps-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
  animation: preloaderPulse 1.8s infinite ease-in-out;
}

.preloader-progress-bar {
  width: 200px;
  height: 4px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00aeef, #ec008c, #ffdd00);
  border-radius: var(--radius-full);
  animation: progressFill 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   HEADER - EXACT MATCH TO DTFPRINTER & NPS LOGO
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 18px;
}

.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Rounded Pill Search Bar */
.nav__search {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 16px;
  transition: all var(--transition-fast);
}

.search-input-wrap:focus-within {
  background: #ffffff;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.search-icon {
  color: #64748b;
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.search-input-wrap input {
  flex: 1;
  background: transparent;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  padding: 4px 0;
}

.search-input-wrap input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.search-ai-btn {
  background: transparent;
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.search-ai-btn:hover {
  background: rgba(0, 174, 239, 0.1);
  color: var(--color-cyan);
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 12px;
  z-index: 100;
  display: none;
}

.search-results-dropdown.active {
  display: block;
}

.search-results-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--color-text-dark);
  font-size: 0.88rem;
}

.search-result-item:hover {
  background: var(--color-lime-blue-light);
  color: var(--color-cyan);
}

/* Nav Menu & Right Actions */
.nav__menu-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__links-group {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav__link-item {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.nav__link-item:hover {
  color: var(--color-cyan);
}

.nav__divider {
  width: 1px;
  height: 24px;
  background: #cbd5e1;
}

.nav__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  padding: 6px;
  border-radius: 50%;
  transition: color var(--transition-fast);
}

.nav__icon-btn:hover {
  color: var(--color-cyan);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--color-btn-amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Exact Amber Button for Build Gangsheet */
.btn-amber-gangsheet {
  background: var(--color-btn-amber);
  color: #000000;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-amber);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-amber-gangsheet:hover {
  background: var(--color-btn-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45);
}

/* Shipping Banner Right Below Header */
.shipping-banner {
  background: var(--color-bg-shipping);
  color: #0f172a;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.shipping-banner strong {
  font-weight: 800;
  color: #042f2e;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: var(--color-btn-amber);
  color: #000000;
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background: var(--color-btn-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.45);
}

.btn-cyan {
  background: var(--color-cyan);
  color: #ffffff;
}

.btn-cyan:hover {
  background: #0095cc;
  transform: translateY(-2px);
}

.btn-outline-cyan {
  background: #ffffff;
  color: var(--color-cyan);
  border: 2px solid var(--color-cyan);
}

.btn-outline-cyan:hover {
  background: var(--color-lime-blue-light);
  transform: translateY(-2px);
}

.btn-outline-lime-green {
  background: #ffffff;
  color: var(--color-lime-green);
  border: 2px solid var(--color-lime-green);
}

.btn-outline-lime-green:hover {
  background: var(--color-lime-green-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 40%, #f0f9ff 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-lime-green-light);
  border: 1px solid #d9f99d;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-lime-green);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: 3.3rem;
  font-weight: 900;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero__title .highlight {
  background: linear-gradient(135deg, #00aeef 0%, #ec008c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.12rem;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero__features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-dark);
  background: #ffffff;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.hero-feature-item svg {
  color: var(--color-cyan);
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Hero Clean Transparent Founder (No Boxes & Uncropped) */
.hero-founder-clean {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  overflow: visible;
}

.hero-founder-clean-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.16));
  transition: transform 0.4s ease;
  display: block;
}

.hero-founder-clean:hover .hero-founder-clean-img {
  transform: scale(1.02);
}

/* ==========================================================================
   FOUNDER SPOTLIGHT SECTION
   ========================================================================== */
.founder-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 50%, #f0f9ff 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.founder-media-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-cutout-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: auto;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.founder-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(236, 0, 140, 0.12) 100%);
  border: 2px dashed var(--color-lime-blue-border);
  z-index: 1;
}

.founder-photo {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.2));
  transition: transform 0.4s ease;
  display: block;
}

.founder-cutout-frame:hover .founder-photo {
  transform: scale(1.02);
}

.founder-badge-float {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: #ffffff;
  border: 1px solid #bae6fd;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.founder-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.founder-badge-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.founder-badge-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.founder-tag {
  color: var(--color-cyan);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
  background: #e0f2fe;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.founder-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.founder-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-secondary);
  border-left: 4px solid var(--color-cyan);
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.founder-desc {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.founder-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.founder-signature {
  font-family: var(--font-signature);
  font-size: 2.4rem;
  color: var(--color-cyan);
}

.founder-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

/* ==========================================================================
   SECTIONS & TILES
   ========================================================================== */
.section-title-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-tag {
  color: var(--color-cyan);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: inline-block;
  background: #e0f2fe;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Steps */
.steps-section {
  padding: 90px 0;
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-cyan);
}

.step-card__media {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  background: #e2e8f0;
}

.step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: var(--color-cyan);
  border: 2.5px solid var(--color-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.step-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.step-card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Why NPS */
.why-nps {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.why-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid #ffffff;
}

.why-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.why-content p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.guarantee-box {
  background: #ffffff;
  border: 1px solid var(--color-lime-blue-border);
  border-left: 6px solid var(--color-cyan);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.guarantee-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  color: var(--color-cyan);
}

.guarantee-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.guarantee-text {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Comparison Table */
.compare-section {
  padding: 90px 0;
  background: #ffffff;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
  background: #ffffff;
}

.compare-table th {
  padding: 22px 24px;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.compare-table th.brand-col {
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  width: 28%;
}

.compare-table th.other-col {
  background: #f1f5f9;
  color: var(--color-text-dark);
  text-align: center;
  width: 24%;
}

.compare-table td {
  padding: 18px 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.compare-table td.feature-name {
  font-weight: 700;
  color: var(--color-text-dark);
}

.compare-table td.brand-cell {
  background: #f0f9ff;
  text-align: center;
  border-left: 2px solid var(--color-cyan);
  border-right: 2px solid var(--color-cyan);
}

.compare-table td.other-cell {
  text-align: center;
  color: var(--color-text-muted);
}

.pill-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

.pill-check.pill-lime-blue {
  background: #e0f2fe;
  color: #0077a3;
  font-weight: 800;
  border: 1px solid #bae6fd;
}

.pill-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
}

/* 3 Core Services Grid (DTF, Screen Printing, Sublimation) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-cyan);
}

.service-card__media {
  height: 230px;
  width: 100%;
  position: relative;
  background: #f1f5f9;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.dtf-badge {
  background: var(--color-cyan);
  color: #ffffff;
}

.screen-badge {
  background: var(--color-lime-green);
  color: #ffffff;
}

.sub-badge {
  background: #ec008c;
  color: #ffffff;
}

.service-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card__title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-features-list {
  list-style: none;
  margin-bottom: 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-features-list li {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card__btn {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   ANIMATED INFINITE PRODUCT CAROUSEL (SPORTSWEAR & STREETWEAR)
   ========================================================================== */
.categories-section {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.carousel-block {
  margin-bottom: 20px;
}

.carousel-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.carousel-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.sport-pill {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.fashion-pill {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fde68a;
}

.carousel-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.track-sport {
  animation: marqueeScrollLeft 32s linear infinite;
}

.track-fashion {
  animation: marqueeScrollRight 34s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.product-slide-card {
  width: 270px;
  min-width: 270px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-slide-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.sport-theme:hover {
  border-color: var(--color-cyan);
}

.fashion-theme:hover {
  border-color: var(--color-btn-amber);
}

.product-card-img-wrap {
  position: relative;
  height: 200px;
  width: 100%;
  background: #f1f5f9;
  overflow: hidden;
}

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

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

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.product-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.product-card-btn:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

/* Calculator */
.calc-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #f0f9ff 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.calc-container {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
}

.calc-form-group {
  margin-bottom: 24px;
}

.calc-label {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.calc-toggle-row {
  display: flex;
  gap: 12px;
}

.calc-toggle-btn {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--color-bg-subtle);
  border: 2px solid var(--color-border);
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc-toggle-btn.active {
  background: #e0f2fe;
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.calc-sizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.size-option-card {
  background: var(--color-bg-subtle);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
}

.size-option-card.active {
  border-color: var(--color-btn-amber);
  background: #fef3c7;
}

.size-option-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.size-option-dim {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.calc-qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-qty-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.calc-qty-btn:hover {
  background: var(--color-cyan);
  color: #ffffff;
}

.calc-qty-input {
  width: 90px;
  height: 44px;
  background: #ffffff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.calc-summary-card {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.calc-row.highlight-row {
  color: var(--color-cyan);
  font-weight: 700;
}

.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px dashed var(--color-border);
}

.calc-total-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.calc-total-price {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0f172a;
}

.calc-saving-badge {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

/* USP Tiles */
.usp-section {
  padding: 90px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-tile {
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition-normal);
}

.feature-tile:hover {
  transform: translateY(-6px);
  border-color: var(--color-cyan);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.feature-tile__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #e0f2fe;
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-tile__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.feature-tile__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Bundles */
.bundles-section {
  padding: 90px 0;
  background: var(--color-bg-body);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bundle-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-cyan);
}

.bundle-card__media {
  height: 240px;
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.bundle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-btn-amber);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.bundle-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bundle-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.bundle-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  flex: 1;
}

.bundle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.bundle-card__price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-text-dark);
}

.bundle-card__price s {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
  margin-left: 6px;
}

/* Reviews */
.reviews-section {
  padding: 90px 0;
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-badge {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 700;
}

/* FAQ */
.faq-section {
  padding: 90px 0;
  background: var(--color-bg-body);
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--color-cyan);
  box-shadow: var(--shadow-md);
}

.faq-summary {
  padding: 20px 24px;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-cyan);
}

.faq-item[open] .faq-summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Guides */
.guides-section {
  padding: 90px 0;
  background: #ffffff;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.guide-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: block;
}

.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
  padding: 26px 20px 20px;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.guide-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.guide-arrow {
  color: var(--color-yellow);
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: #ffffff;
  color: var(--color-text-secondary);
  padding: 80px 0 30px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 18px 0 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.social-link:hover {
  background: var(--color-cyan);
  color: #ffffff;
}

.footer-col h4 {
  color: var(--color-text-dark);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-cyan);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  gap: 20px;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-badge {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

/* Modals & Drawers */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  padding: 34px;
  position: relative;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--color-text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.upload-dropzone {
  border: 2px dashed var(--color-cyan);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  background: #e0f2fe;
  cursor: pointer;
  margin-bottom: 20px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--color-border);
  z-index: 2500;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-text-dark);
}

.cart-drawer.active {
  right: 0;
}

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

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

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

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.cart-item-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-body);
}

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #ffffff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 1500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: waPulse 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #ffffff;
  color: var(--color-text-dark);
  border-left: 4px solid var(--color-cyan);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid, .why-wrap, .calc-grid, .founder-grid, .categories-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps-grid, .features-grid, .bundles-grid, .reviews-grid, .guides-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav__search {
    max-width: 280px;
  }
  .nav__links-group {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.1rem;
  }
  .steps-grid, .features-grid, .bundles-grid, .reviews-grid, .guides-grid, .services-grid, .categories-grid, .category-items-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav__search, .btn-amber-gangsheet, .nav__divider {
    display: none;
  }
  .nav__mobile-toggle {
    display: flex;
  }
  .calc-container {
    padding: 20px 16px;
  }
  .calc-sizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-toggle-row {
    flex-direction: column;
  }
  .hero__btns {
    flex-direction: column;
    width: 100%;
  }
  .hero__btns .btn {
    width: 100%;
  }
  .hero-founder-clean-img {
    max-height: 400px;
  }

  /* Compact Responsive Comparison Table for Mobile */
  .compare-section {
    padding: 50px 0;
  }
  .compare-table-wrap {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow-x: hidden;
  }
  .compare-table {
    min-width: 100% !important;
    width: 100% !important;
    table-layout: fixed;
  }
  .compare-table th {
    padding: 10px 4px !important;
    font-size: 0.72rem !important;
    line-height: 1.2;
    vertical-align: middle;
  }
  .compare-table th:first-child {
    width: 27% !important;
    padding-left: 6px !important;
    font-size: 0.70rem !important;
  }
  .compare-table th.brand-col {
    width: 29% !important;
    padding: 10px 3px !important;
  }
  .compare-table th.brand-col div:first-child {
    font-size: 0.76rem !important;
    font-weight: 900;
  }
  .compare-table th.brand-col div:last-child {
    font-size: 0.58rem !important;
  }
  .compare-table th.other-col {
    width: 22% !important;
    padding: 8px 3px !important;
  }
  .compare-table th.other-col div:first-child {
    font-size: 0.68rem !important;
    font-weight: 700;
  }
  .compare-table th.other-col div:last-child {
    font-size: 0.56rem !important;
  }
  .compare-table td {
    padding: 8px 3px !important;
    font-size: 0.68rem !important;
    vertical-align: middle;
  }
  .compare-table td.feature-name {
    font-size: 0.70rem !important;
    font-weight: 700;
    line-height: 1.2;
    padding-left: 6px !important;
    word-break: break-word;
  }
  .pill-check, .pill-cross, .pill-check.pill-lime-blue {
    padding: 4px 4px !important;
    font-size: 0.64rem !important;
    border-radius: 6px !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
    gap: 2px !important;
  }
}

@media (max-width: 480px) {
  .compare-table th, .compare-table td {
    padding: 6px 2px !important;
  }
  .compare-table td.feature-name {
    font-size: 0.65rem !important;
    padding-left: 4px !important;
  }
  .compare-table th.brand-col div:first-child {
    font-size: 0.70rem !important;
  }
  .compare-table th.other-col div:first-child {
    font-size: 0.62rem !important;
  }
  .pill-check, .pill-cross, .pill-check.pill-lime-blue {
    padding: 3px 2px !important;
    font-size: 0.58rem !important;
    border-radius: 5px !important;
    line-height: 1.1 !important;
  }
}

/* ==========================================================================
   INFINITE MOVING CAROUSEL & FULL-FRAME PHOTO CARDS
   ========================================================================== */
.categories-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.carousel-block {
  position: relative;
  width: 100%;
}

.carousel-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.carousel-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.carousel-badge-pill.sport-pill {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-badge-pill.fashion-pill {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-hint {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

/* Marquee Scroller Wrapper - Clean & Crisp (No Blurry Edge Mask) */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 16px;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.track-sport {
  animation: marqueeScrollLeft 32s linear infinite;
}

.track-fashion {
  animation: marqueeScrollRight 34s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Compact Full-Frame Photo Card Style */
.fullframe-card {
  position: relative;
  width: 230px;
  min-width: 230px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  background: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.fullframe-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18), 0 0 0 2px #25d366;
  border-color: #25d366;
}

/* 100% Edge-to-Edge Image */
.fullframe-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

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

/* Linear Dark Overlay for crisp readability */
.fullframe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.2) 40%, rgba(10, 15, 30, 0.92) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.fullframe-card:hover .fullframe-card-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.25) 35%, rgba(7, 11, 22, 0.95) 100%);
}

/* Floating Glass Category Tag */
.fullframe-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Card Content Floating Over Photo */
.fullframe-card-content {
  position: relative;
  z-index: 3;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fullframe-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.01em;
}

.fullframe-card-desc {
  font-size: 0.74rem;
  color: #cbd5e1;
  line-height: 1.35;
  margin: 0 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Vibrant WhatsApp 1-Click Order Pill */
.fullframe-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  width: 100%;
}

.fullframe-card:hover .fullframe-wa-btn {
  background: #1eb956;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.55);
  transform: scale(1.02);
}

.fullframe-wa-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Mobile Responsiveness for Full-Frame Carousel */
@media (max-width: 768px) {
  .categories-section {
    padding: 60px 0;
  }
  .fullframe-card {
    width: 195px;
    min-width: 195px;
    height: 280px;
    border-radius: 14px;
  }
  .fullframe-card-tag {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 0.68rem;
  }
  .fullframe-card-content {
    padding: 12px 10px;
    gap: 3px;
  }
  .fullframe-card-title {
    font-size: 0.95rem;
  }
  .fullframe-card-desc {
    font-size: 0.70rem;
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .fullframe-wa-btn {
    padding: 7px 10px;
    font-size: 0.74rem;
    border-radius: 8px;
  }
  .marquee-track {
    gap: 14px;
  }
  .carousel-badge-pill {
    font-size: 0.82rem;
    padding: 6px 14px;
  }
  .carousel-hint {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   DEDICATED SPORTSWEAR & FASHION STORE (store.html)
   ========================================================================== */
.store-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.store-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.store-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.store-hero__title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.store-hero__subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.store-controls-bar {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.store-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.store-tab-btn {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.store-tab-btn:hover {
  background: #e0f2fe;
  color: #0284c7;
  border-color: #38bdf8;
}

.store-tab-btn.active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.store-search-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-search-input {
  padding: 9px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.85rem;
  outline: none;
  min-width: 200px;
  background: #f8fafc;
}

.store-search-input:focus {
  border-color: #0284c7;
  background: #ffffff;
}

/* Store Product Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0 60px;
}

.store-product-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.store-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #38bdf8;
}

.store-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.store-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-product-card:hover .store-card-img {
  transform: scale(1.08);
}

.store-tag-floating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-tech-floating {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #0284c7;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.store-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.store-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.store-card-specs {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.store-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-border);
}

.store-price-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.store-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.store-moq-badge {
  font-size: 0.72rem;
  background: #f1f5f9;
  color: #475569;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* Size Selector Pills */
.store-size-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.store-size-btn {
  width: 32px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.store-size-btn:hover, .store-size-btn.active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* Actions Row: WhatsApp & Cart */
.store-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.store-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 8px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.store-wa-btn:hover {
  background: #1eb956;
  transform: translateY(-2px);
}

.store-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-cyan);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 8px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.store-cart-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

/* Bulk Custom Inquiry Banner */
.bulk-inquiry-box {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 60px 0 30px;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.25);
}

.bulk-inquiry-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.bulk-inquiry-content p {
  font-size: 0.95rem;
  color: #e0f2fe;
  max-width: 580px;
  line-height: 1.5;
}

.bulk-inquiry-btn {
  background: #ffffff;
  color: #0284c7;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.bulk-inquiry-btn:hover {
  background: #f8fafc;
  transform: scale(1.04);
}

/* ==========================================================================
   NATIVE MOBILE BOTTOM NAVIGATION BAR (APP-LIKE FEEL)
   ========================================================================== */
.native-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding: 8px 10px 10px;
  z-index: 990;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  justify-content: space-around;
  align-items: center;
}

.native-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 10px;
  position: relative;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.native-nav-item svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2px;
}

.native-nav-item.active, .native-nav-item:hover {
  color: var(--color-cyan);
}

.native-nav-item.highlight-wa {
  color: #15803d;
}

.native-nav-item.highlight-wa .nav-wa-pill {
  background: #25d366;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  margin-top: -14px;
  border: 3px solid #ffffff;
}

.native-nav-badge {
  position: absolute;
  top: 0px;
  right: 6px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.60rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 999px;
  min-width: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
  .native-mobile-nav {
    display: flex;
  }
  body {
    padding-bottom: 64px !important;
  }
  .floating-whatsapp {
    bottom: 74px !important;
    right: 16px !important;
    width: 48px !important;
    height: 48px !important;
  }
}



