/* ================================================================
   Pixel2Print — Master Stylesheet
   Brand: Yellow #F5C518 | Black #111111
   ================================================================ */

:root {
  --yellow:      #F5C518;
  --yellow-dark: #d4a90e;
  --yellow-dim:  rgba(245,197,24,0.12);
  --black:       #111111;
  --dark:        #1a1a1a;
  --gray:        #666;
  --light-gray:  #f4f4f4;
  --border:      #e8e8e8;
  --white:       #ffffff;
  --font:        'Poppins', sans-serif;
  --script:      'Dancing Script', cursive;
  --nav-h:       70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

/* ================================================================
   LOGO
   ================================================================ */
/* ── PNG Logo ── */
.nav-logo-img    { height: 44px; width: auto; display: block; transition: filter .3s; filter: brightness(0) invert(1); }
.main-navbar.scrolled .nav-logo-img { filter: none; }
.footer-logo-img { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); }

/* keep old classes for any remaining usages */
.logo-icon { display: none; }
.logo-icon-sm { display: none; }
.logo-name { font-weight: 900; font-size: 1.1rem; line-height: 1; color: var(--black); letter-spacing: -0.5px; }
.logo-name span { color: var(--yellow); }
.logo-name-white { color: var(--white) !important; }
.logo-tagline { font-size: 0.6rem; letter-spacing: 1.5px; color: #888; text-transform: uppercase; margin-top: 2px; }

/* ================================================================
   NAVBAR
   ================================================================ */
.main-navbar {
  background: transparent;
  height: var(--nav-h);
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.main-navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Logo name/tagline inherit from navbar state */
.main-navbar .logo-name { color: var(--white); transition: color 0.3s; }
.main-navbar .logo-name span { color: var(--yellow); }
.main-navbar.scrolled .logo-name { color: var(--black); }
.main-navbar .logo-tagline { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.main-navbar.scrolled .logo-tagline { color: #888; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.main-navbar.scrolled .nav-links a { color: var(--black); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 190px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  padding: 9px 18px;
  font-size: 0.83rem;
  color: var(--black);
  display: block;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--light-gray); color: var(--yellow); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Nav search form */
.nav-search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.main-navbar.scrolled .nav-search-form {
  background: var(--light-gray);
  border-color: var(--border);
}
.nav-search-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font);
  width: 180px;
}
.main-navbar.scrolled .nav-search-input { color: var(--black); }
.nav-search-input::placeholder { color: rgba(255,255,255,0.45); }
.main-navbar.scrolled .nav-search-input::placeholder { color: #aaa; }
.nav-search-btn {
  background: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.main-navbar.scrolled .nav-search-btn { color: #888; }
.nav-search-btn:hover { color: var(--yellow); }
.nav-icon-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s, color 0.3s;
  position: relative;
  text-decoration: none;
}
.main-navbar.scrolled .nav-icon-btn { color: var(--black); }
.nav-icon-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.main-navbar.scrolled .nav-icon-btn:hover { background: var(--light-gray); color: var(--black); }
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 17px;
  height: 17px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cta-btn {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-btn:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.main-navbar.scrolled .hamburger span { background: var(--black); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 11px 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.active { color: var(--yellow); }
.mobile-menu .mobile-cta {
  margin-top: 12px;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  border-radius: 6px;
  padding: 12px;
  border-bottom: none;
  font-weight: 700;
}
.mobile-menu.open { display: flex; }

/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  background: linear-gradient(135deg, var(--black) 0%, #1e1e00 100%);
  padding: calc(var(--nav-h) + 40px) 0 40px;
  color: var(--white);
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-header .breadcrumb { background: transparent; padding: 0; margin: 8px 0 0; }
.page-header .breadcrumb-item a { color: var(--yellow); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ================================================================
   SHARED SECTION UTILITIES
   ================================================================ */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.section-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

/* ================================================================
   BUTTONS (shared)
   ================================================================ */
.hbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.hbtn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.hbtn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--black); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,197,24,0.35); }
.hbtn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.hbtn-outline:hover { background: var(--white); color: var(--black); }
.hbtn-dark-outline { background: transparent; color: var(--black); border-color: var(--black); }
.hbtn-dark-outline:hover { background: var(--black); color: var(--white); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--black);
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 32px) 0 48px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse at top right, rgba(245,197,24,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
/* Left copy */
.hero-copy {}
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-yellow { color: var(--yellow); display: block; }
.hero-script {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  margin: 8px 0 20px;
  line-height: 1;
}
.hero-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-dots-row { display: flex; gap: 8px; }
.hdot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.2); cursor: pointer; }
.hdot.active { background: var(--yellow); }

/* Right showcase */
.hero-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mockup-img {
  width: 100%;
  max-width: 480px;
  max-height: 420px;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
}

/* ================================================================
   WHAT WE DO
   ================================================================ */
.wwd-section {
  padding: 64px 0;
  background: var(--white);
  text-align: center;
}
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.wwd-card {
  padding: 36px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
  cursor: pointer;
  color: var(--black);
}
.wwd-card:last-child { border-right: none; }
.wwd-card:hover { background: var(--light-gray); }
.wwd-icon {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  transition: all 0.25s;
}
.wwd-card:hover .wwd-icon { border-color: var(--yellow); color: var(--yellow); }
.wwd-card h5 { font-size: 0.9rem; font-weight: 700; margin: 0; }
.wwd-card p { font-size: 0.78rem; color: var(--gray); margin: 0; line-height: 1.5; text-align: center; }

/* ================================================================
   FEATURED PRODUCTS
   ================================================================ */
.products-section { padding: 64px 0; background: var(--white); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-view-all {
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-view-all:hover { border-color: var(--yellow); background: var(--yellow); color: var(--black); }

/* Carousel */
.products-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.products-track-outer {
  overflow: hidden;
  flex: 1;
}
.products-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--black);
  transition: all 0.2s;
  flex-shrink: 0;
  z-index: 2;
}
.carousel-arrow:hover { background: var(--yellow); border-color: var(--yellow); }
.carousel-prev { margin-right: 12px; }
.carousel-next { margin-left: 12px; }

/* Product card */
.pcard {
  min-width: 178px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: all 0.25s;
}
.pcard:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: #ccc; transform: translateY(-3px); }
.pcard-img-wrap {
  height: 165px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcard-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.pcard:hover .pcard-img-wrap img { transform: scale(1.04); }
.pcard-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #111;
  font-size: 2rem; color: var(--yellow);
}
.pcard-body { padding: 14px 14px 16px; }
.pcard-body h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.pcard-price { font-size: 0.8rem; color: var(--gray); margin-bottom: 12px; }
.pcard-btn {
  display: block;
  text-align: center;
  border: 1.5px solid var(--black);
  padding: 8px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  transition: all 0.2s;
}
.pcard-btn:hover { background: var(--black); color: var(--white); }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section {
  background: var(--black);
  padding: 48px 0;
}
.why-eyebrow { color: rgba(255,255,255,0.9); letter-spacing: 3px; font-size: 0.7rem; text-align: center; margin-bottom: 32px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.why-item {
  padding: 20px 24px;
  text-align: center;
  position: relative;
}
.why-divider::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.why-icon-wrap {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(245,197,24,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.25rem;
  color: var(--yellow);
  transition: all 0.25s;
}
.why-item:hover .why-icon-wrap { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.why-item h6 { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-item p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.5; }

/* ================================================================
   CTA SECTION
   ================================================================ */
/* ================================================================
   HERO TRUST BADGES
   ================================================================ */
.hero-trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.hero-trust-badges span i { color: #F5C518; font-size: 0.82rem; }

/* ================================================================
   HOME STATS BAR
   ================================================================ */
.home-stats-bar { background: var(--black); padding: 44px 0; border-top: 1px solid rgba(255,255,255,0.06); }

/* ================================================================
   TRUSTED BY
   ================================================================ */
.trusted-section { background: #f9f9f9; padding: 36px 0; border-bottom: 1px solid #eee; }
.trusted-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trusted-logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 50px;
  padding: 8px 18px 8px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow .2s;
}
.trusted-logo-pill:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.tl-abbr {
  background: var(--black);
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.tl-name { font-size: 0.82rem; font-weight: 600; color: #333; }

/* ================================================================
   TECHNOLOGY CALLOUT
   ================================================================ */
.tech-section { padding: 80px 0; background: var(--black); }
.tech-inner { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.tech-copy .section-eyebrow { color: var(--yellow); }
.tech-copy .section-h2 { color: #fff; }
.tech-desc { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.75; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tech-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 18px;
  transition: border-color .2s, background .2s;
}
.tech-card:hover { border-color: rgba(245,197,24,0.3); background: rgba(245,197,24,0.04); }
.tech-card-icon {
  width: 40px; height: 40px;
  background: rgba(245,197,24,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--yellow);
  margin-bottom: 12px;
}
.tech-card h6 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.tech-card p  { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { padding: 80px 0; background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tcard {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s;
}
.tcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.tcard-stars { color: #F5C518; font-size: 13px; display: flex; gap: 3px; }
.tcard-text { font-size: 0.88rem; color: #444; line-height: 1.7; flex: 1; font-style: italic; margin: 0; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 40px; height: 40px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
  flex-shrink: 0;
}
.tcard-name { font-size: 0.88rem; font-weight: 700; color: #111; line-height: 1.2; }
.tcard-role { font-size: 0.75rem; color: #888; }
.tcard-google {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: #999; font-weight: 600;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.cta-section {
  background: #f5f3ef;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  min-height: 280px;
  position: relative;
}
.cta-mockup {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
.cta-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}
.cta-mockup-left  { justify-content: flex-end;  }
.cta-mockup-right { justify-content: flex-start; }
.cta-content {
  flex: 1;
  text-align: center;
  padding: 56px 40px;
  align-self: center;
}
.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-content p { color: var(--gray); font-size: 0.95rem; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.75); }
.footer-top { padding: 56px 0 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--yellow); color: var(--black); }
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-list li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-list li a::before { content: '›'; color: var(--yellow); font-size: 1rem; line-height: 1; }
.footer-list li a:hover { color: var(--yellow); }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  align-items: flex-start;
}
.footer-contact-list li i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-contact-list li a { color: rgba(255,255,255,0.55); }
.footer-contact-list li a:hover { color: var(--yellow); }
.newsletter-form { display: flex; gap: 0; border-radius: 6px; overflow: hidden; }
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.82rem;
  font-family: var(--font);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--yellow-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.payment-badges { display: flex; gap: 8px; align-items: center; }
.pay-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.pay-badge.mpesa  { background: #4CAF50; color: #fff; }
.pay-badge.visa   { background: #1a1f71; color: #fff; }
.pay-badge.mc     { background: #eb001b; color: #fff; }
.pay-badge.verve  { background: #00425f; color: #fff; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* Hero split */
.about-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/about-banner.webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.45;
}
.about-hero-left {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}
.about-hero-inner {
  padding: calc(var(--nav-h) + 40px) 0 56px;
  max-width: 600px;
}
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow-dash { display: inline-block; width: 28px; height: 2px; background: var(--yellow); flex-shrink: 0; }
.about-hero-h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.about-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 24px; }
.about-breadcrumb { background: transparent; padding: 0; margin: 0; }
.about-breadcrumb .breadcrumb-item a { color: var(--yellow); font-size: 0.85rem; }
.about-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.about-hero-right { display: none; }

/* Who We Are */
.about-wwa { padding: 80px 0; background: var(--white); }
.wwa-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 10px; }
.wwa-heading { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 14px; }
.wwa-rule { width: 40px; height: 3px; background: var(--yellow); border-radius: 2px; margin-bottom: 22px; }
.wwa-text { color: #555; line-height: 1.8; font-size: 0.9rem; margin-bottom: 14px; }
.wwa-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 6px;
  margin-top: 10px;
  transition: background 0.2s, transform 0.15s;
}
.wwa-btn:hover { background: var(--yellow-dark); color: var(--black); transform: translateY(-1px); }
.about-merch-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.about-merch-img { display: block; width: 100%; height: auto; border-radius: 14px; }

/* Values */
.about-values { padding: 64px 0; background: var(--white); border-top: 1px solid var(--border); }
.values-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 40px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.value-cell {
  padding: 40px 20px 32px;
  text-align: center;
  position: relative;
  background: var(--white);
  transition: background 0.2s;
}
.value-cell:hover { background: #fafafa; }
.value-cell-sep { border-right: 1px solid var(--border); }
.value-icon-ring {
  width: 68px;
  height: 68px;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--yellow);
  transition: all 0.25s;
}
.value-cell:hover .value-icon-ring { background: var(--yellow); color: var(--black); }
.value-name { font-size: 0.92rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.value-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin: 0; }

/* Stats bar */
.about-stats-bar { background: var(--black); padding: 44px 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-col {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 28px;
  position: relative;
}
.stat-col-sep { border-right: 1px solid rgba(255,255,255,0.1); }
.stat-icon-ring {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(245,197,24,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.stat-number { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

/* Mission & Vision */
.about-mv { background: var(--white); }
.mv-cards-wrap {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  border-right: 1px solid var(--border);
}
.mv-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 44px 48px;
  border-bottom: 1px solid var(--border);
}
.mv-card:last-child { border-bottom: none; }
.mv-icon-ring {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 4px;
}
.mv-title { font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; color: var(--black); text-transform: uppercase; margin-bottom: 10px; }
.mv-text { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin: 0; }
.mv-team-wrap { height: 100%; overflow: hidden; background: #0f0f0f; min-height: 300px; display:flex; align-items:stretch; }
.mv-real-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Bottom CTA */
.about-cta { background: #0d0d0d; padding: 44px 0; }
.about-cta-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.acta-icon {
  width: 70px;
  height: 70px;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.acta-text { flex: 1; min-width: 240px; }
.acta-heading { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 6px; }
.acta-heading span { color: var(--yellow); }
.acta-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }
.acta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.acta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.acta-btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.acta-btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--black); }
.acta-btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.acta-btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* Legacy helpers still used by other pages */
.yellow-badge {
  display: inline-block;
  background: rgba(245,197,24,0.12);
  color: #9a7a00;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-subtitle { color: var(--gray); font-size: 1rem; max-width: 560px; line-height: 1.7; }

/* ================================================================
   SERVICES PAGE
   ================================================================ */

/* Hero */
.srv-hero {
  display: flex;
  min-height: 340px;
  background: var(--black);
}
.srv-hero-left {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
}
.srv-hero-inner {
  padding: calc(var(--nav-h) + 40px) 48px 56px 0;
  max-width: 520px;
  margin-left: auto;
}
.srv-hero-h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.15; }
.srv-hero-rule { width: 44px; height: 3px; background: var(--yellow); border-radius: 2px; margin-bottom: 18px; }
.srv-hero-desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 400px; margin: 0; }
.srv-hero-right {
  flex: 0 0 55%;
  overflow: hidden;
  background: #0d0d0d;
}
.srv-hero-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Section intro */
.srv-grid-section { padding: 64px 0 72px; background: var(--white); }
.srv-intro { margin-bottom: 48px; }
.srv-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 10px; }
.srv-heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--black); margin-bottom: 12px; }
.srv-rule { width: 44px; height: 3px; background: var(--yellow); border-radius: 2px; margin: 0 auto; }

/* Service card */
.scard {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.scard:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); }
.scard-img {
  height: 175px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.scard-svg { display: block; width: 100%; height: 100%; }
.scard-real-img { display: block; width: 100%; height: 100%; object-fit: cover; }
.scard-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--black);
  z-index: 2;
  flex-shrink: 0;
}
.scard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.scard-title { font-size: 1rem; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.scard-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.scard-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
  margin-bottom: 16px;
  flex: 1;
}
.scard-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.4;
}
.scard-list li i { color: var(--yellow); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
.scard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 0.82rem;
  transition: gap 0.2s;
  margin-top: auto;
}
.scard-link:hover { gap: 10px; color: var(--yellow-dark); }

/* Process */
.srv-process { background: var(--black); padding: 56px 0 60px; }
.proc-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.proc-step { text-align: center; padding: 0 12px; }
.proc-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}
.proc-icon {
  width: 68px;
  height: 68px;
  border: 1.5px solid rgba(245,197,24,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--yellow);
  background: rgba(245,197,24,0.06);
  flex-shrink: 0;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}
.proc-step:hover .proc-icon { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.proc-line {
  flex: 1;
  height: 1px;
  border-top: 2px dashed rgba(245,197,24,0.2);
  position: absolute;
  left: calc(50% + 34px);
  right: calc(-50% + 34px);
  top: 50%;
}
.proc-label { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.proc-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.55; margin: 0; }

/* Services CTA */
.srv-cta { background: var(--white); padding: 56px 0; border-top: 1px solid var(--border); }
.srv-cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.srv-cta-icon { width: 130px; flex-shrink: 0; }
.srv-cta-icon svg { width: 100%; height: auto; }
.srv-cta-text { flex: 1; min-width: 220px; }
.srv-cta-heading { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 8px; }
.srv-cta-heading span { color: var(--yellow); }
.srv-cta-sub { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.65; }
.srv-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.scta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.scta-btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.scta-btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--black); }
.scta-btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.scta-btn-outline:hover { background: var(--black); color: var(--white); }

/* Legacy service-card — still used by service detail show page */
.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  background: var(--white);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: var(--yellow); }
.service-card .service-img {
  height: 190px;
  background: linear-gradient(135deg, var(--black), #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--yellow);
}
.service-card .card-body { padding: 22px; }
.service-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.83rem; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.service-card ul { list-style: none; padding: 0; }
.service-card ul li { font-size: 0.82rem; padding: 4px 0; display: flex; align-items: center; gap: 7px; }
.service-card ul li::before { content: '✓'; color: var(--yellow); font-weight: 800; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 14px;
  transition: gap 0.2s;
}
.service-card .learn-more:hover { gap: 10px; }

/* ================================================================
   SHOP PAGE
   ================================================================ */

/* Hero */
.shop-hero { display: flex; min-height: 300px; background: var(--black); }
.shop-hero-left { flex: 0 0 45%; display: flex; align-items: center; }
.shop-hero-inner { padding: calc(var(--nav-h) + 36px) 48px 50px 0; max-width: 520px; margin-left: auto; }
.shop-hero-h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.15; }
.shop-hero-rule { width: 44px; height: 3px; background: var(--yellow); border-radius: 2px; margin-bottom: 16px; }
.shop-hero-desc { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }
.shop-hero-right { flex: 0 0 55%; overflow: hidden; background: #0d0d0d; }
.shop-hero-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Main area */
.shop-main { background: #f9f9f9; padding: 0; }
.shop-main .container { max-width: 1320px; }

/* Sidebar */
.shop-sidebar { padding: 32px 24px 32px 0; position: sticky; top: calc(var(--nav-h) + 16px); }
.sidebar-title { font-size: 1.05rem; font-weight: 800; color: var(--black); margin-bottom: 18px; }
.cat-list { list-style: none; padding: 0; margin: 0 0 28px; }
.cat-list li { margin-bottom: 2px; }
.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #555;
  transition: all 0.2s;
  text-decoration: none;
}
.cat-item:hover { background: #f0f0f0; color: var(--black); }
.cat-active { background: rgba(245,197,24,0.12) !important; color: var(--yellow-dark) !important; }
.cat-left { display: flex; align-items: center; gap: 9px; }
.cat-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: #888; }
.cat-active .cat-icon { color: var(--yellow-dark); }
.cat-count { font-size: 0.75rem; color: #999; font-weight: 600; }
.cat-active .cat-count { color: var(--yellow-dark); }
.sidebar-cta {
  background: var(--black);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
}
.sidebar-cta-icon { font-size: 1.6rem; color: var(--yellow); margin-bottom: 10px; }
.sidebar-cta-title { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.sidebar-cta-desc { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-bottom: 14px; line-height: 1.5; }
.sidebar-cta-btn {
  display: block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.2s;
  text-decoration: none;
}
.sidebar-cta-btn:hover { background: var(--yellow-dark); color: var(--black); }

/* Content area */
.shop-content { padding: 32px 0 32px 28px; }

/* Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-count { font-size: 0.83rem; color: var(--gray); margin: 0; }
.shop-toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  outline: none;
}
.sort-select:focus { border-color: var(--yellow); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: #888;
  transition: all 0.2s;
}
.view-btn.active, .view-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* Shop product grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

/* Shop product card */
.shpcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.shpcard:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.shpcard-img-wrap {
  position: relative;
  height: 150px;
  background: #f7f7f7;
  overflow: hidden;
}
.shpcard-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.shpcard:hover .shpcard-img-wrap img { transform: scale(1.04); }
.shpcard-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #111; font-size: 1.8rem; color: var(--yellow);
}
.shpcard-cart-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--black);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s;
  text-decoration: none;
  z-index: 2;
}
.shpcard:hover .shpcard-cart-btn { opacity: 1; transform: scale(1); }
.shpcard-body { padding: 12px 12px 14px; display: flex; flex-direction: column; flex: 1; }
.shpcard-name { font-size: 0.82rem; font-weight: 700; color: var(--black); margin-bottom: 3px; line-height: 1.3; }
.shpcard-price { font-size: 0.75rem; color: var(--gray); margin-bottom: 10px; flex: 1; }
.shpcard-btn {
  display: block;
  text-align: center;
  border: 1.5px solid #ddd;
  padding: 7px 8px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  transition: all 0.2s;
  text-decoration: none;
  background: var(--white);
}
.shpcard-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* List view override */
.shop-grid-list { grid-template-columns: 1fr; gap: 10px; }
.shop-grid-list .shpcard { flex-direction: row; }
.shop-grid-list .shpcard-img-wrap { width: 100px; height: 100px; flex-shrink: 0; }
.shop-grid-list .shpcard-body { padding: 14px 16px; flex-direction: row; align-items: center; gap: 16px; }
.shop-grid-list .shpcard-name { font-size: 0.9rem; flex: 1; }
.shop-grid-list .shpcard-price { font-size: 0.82rem; flex: 0 0 120px; }
.shop-grid-list .shpcard-btn { flex: 0 0 130px; }

/* Pagination */
.shop-pagination { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pg-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
  transition: all 0.2s;
  text-decoration: none;
}
.pg-btn:hover, .pg-active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.pg-dots { color: #888; font-size: 0.85rem; padding: 0 4px; }
.pg-next { font-size: 0.75rem; }

/* Shop empty */
.shop-empty { text-align: center; padding: 60px 20px; }
.shop-empty i { font-size: 3rem; color: #ddd; display: block; margin-bottom: 16px; }
.shop-empty p { color: #888; margin-bottom: 16px; }

/* Trust bar */
.shop-trust-bar { background: var(--black); }
.trust-inner { display: flex; align-items: stretch; }
.trust-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px 0 40px 40px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(245,197,24,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.trust-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.trust-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.5; }
.trust-cta {
  background: var(--yellow);
  width: 280px;
  flex-shrink: 0;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.trust-cta-q { font-size: 0.92rem; font-weight: 700; color: var(--black); line-height: 1.4; margin: 0; }
.trust-cta-btn {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.trust-cta-btn:hover { background: #333; color: var(--white); }
.trust-cta-emoji { position: absolute; bottom: 20px; right: 24px; font-size: 2rem; opacity: 0.4; }

/* Legacy product-card still used by product detail related section */
.product-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  transition: all 0.25s; background: var(--white); height: 100%;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: #ccc; }
.product-card .product-img { height: 190px; background: #f7f7f7; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card .card-body { padding: 16px; }
.product-card h5 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.product-price { color: var(--gray); font-size: 0.82rem; margin-bottom: 12px; }
.shop-btn { display: block; text-align: center; border: 1.5px solid var(--black); padding: 8px; border-radius: 5px; font-size: 0.78rem; font-weight: 700; color: var(--black); transition: all 0.2s; }
.shop-btn:hover { background: var(--black); color: var(--white); }
.category-filter .filter-btn { background: var(--white); border: 1px solid var(--border); color: var(--black); padding: 7px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.category-filter .filter-btn:hover, .category-filter .filter-btn.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* ================================================================
   PRODUCT DETAIL
   ================================================================ */
.product-detail-price { font-size: 1.5rem; font-weight: 800; color: var(--yellow-dark); }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--black);
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--black); color: var(--white); }
.qty-input { width: 52px; text-align: center; border: 1.5px solid var(--border); border-radius: 4px; padding: 6px; font-weight: 700; }
.features-list { list-style: none; padding: 0; }
.features-list li { padding: 9px 0; display: flex; align-items: center; gap: 10px; font-size: 0.875rem; border-bottom: 1px solid #f0f0f0; }
.features-list li:last-child { border-bottom: none; }
.features-list li i { color: var(--yellow); }
.size-btn {
  border: 1.5px solid var(--border);
  background: var(--white);
  padding: 7px 14px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.size-btn.selected,
.size-btn:hover { border-color: var(--yellow); background: var(--yellow); color: var(--black); }

/* ================================================================
   PORTFOLIO PAGE
   ================================================================ */

/* Hero */
.port-hero { display: flex; min-height: 300px; background: var(--black); }
.port-hero-left { flex: 0 0 44%; display: flex; align-items: center; }
.port-hero-inner { padding: calc(var(--nav-h) + 36px) 48px 52px 0; max-width: 520px; margin-left: auto; }
.port-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.port-hero-h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.port-hero-desc { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }
.port-hero-right { flex: 0 0 56%; overflow: hidden; background: #0d0d0d; }
.port-hero-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Filter bar */
.port-filter-wrap { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.port-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pf-btn i { font-size: 0.75rem; }
.pf-btn:hover { border-color: var(--black); color: var(--black); }
.pf-active { background: var(--yellow) !important; border-color: var(--yellow) !important; color: var(--black) !important; }

/* Grid */
.port-grid-section { background: var(--white); padding: 40px 0 56px; }
.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.port-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.port-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.12); transform: translateY(-4px); }
.port-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.port-svg { display: block; width: 100%; height: 100%; }
.port-card:hover .port-svg { transform: scale(1.03); transition: transform 0.4s ease; }
.port-real-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.4s ease; }
.port-card:hover .port-real-img { transform: scale(1.04); }
.port-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.port-card-title { font-size: 0.9rem; font-weight: 800; color: var(--black); margin-bottom: 2px; }
.port-card-sub { font-size: 0.75rem; color: var(--gray); margin: 0; }
.port-arrow-btn {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.port-arrow-btn:hover { background: var(--yellow-dark); color: var(--black); transform: scale(1.1); }

/* Bottom CTA strip */
.port-cta-strip { background: var(--black); padding: 36px 0; }
.port-cta-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.port-cta-pitch {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 260px;
  padding-right: 32px;
}
.port-cta-rocket {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  flex-shrink: 0;
}
.port-cta-heading { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.port-cta-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }
.port-cta-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; margin: 0 32px; flex-shrink: 0; }
.port-cta-trust {
  flex: 1;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.port-cta-pt { display: flex; align-items: flex-start; gap: 12px; min-width: 140px; }
.port-cta-pt-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(245,197,24,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.port-cta-pt-title { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.port-cta-pt-desc { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.4; }
.port-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 26px;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 28px;
}
.port-cta-btn:hover { background: var(--yellow-dark); color: var(--black); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: 10px; background: var(--white);
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.contact-info-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); }
.contact-info-card .icon-wrap {
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--yellow-dark); flex-shrink: 0;
}
.contact-info-card h6 { font-weight: 700; font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--black); margin: 0; font-weight: 600; }
.contact-info-card a:hover { color: var(--yellow-dark); }
.contact-form-wrap { background: var(--white); border-radius: 14px; padding: 36px 32px; box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.form-label { font-weight: 600; font-size: 0.82rem; margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 0.875rem;
  font-family: var(--font);
  transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,197,24,0.12); outline: none; }
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.alert-success-custom {
  background: #d4edda; border: 1px solid #c3e6cb; color: #155724;
  padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; font-size: 0.875rem;
}

/* ================================================================
   ERROR PAGES
   ================================================================ */
.w-100 { width: 100%; }

/* ================================================================
   BOOTSTRAP OVERRIDES
   ================================================================ */
.nav-tabs .nav-link { border: none; font-weight: 700; font-size: 0.875rem; color: #888; padding: 10px 22px; }
.nav-tabs .nav-link.active { color: var(--black); border-bottom: 2px solid var(--yellow); background: transparent; }
.nav-tabs { border-bottom: 2px solid var(--border); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .wwd-grid { grid-template-columns: repeat(3,1fr); }
  .wwd-card:nth-child(3) { border-right: none; }
  .why-grid { grid-template-columns: repeat(3,1fr); gap: 0; }
  .why-divider:nth-child(3)::after { display: none; }
}

@media (max-width: 991px) {
  .tech-inner { grid-template-columns: 1fr; gap: 32px; }
  .tech-grid  { grid-template-columns: repeat(3,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links, .nav-actions .nav-icon-btn, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 50px 0 40px; }
  .hero-showcase { justify-content: center; }
  .hero-mockup-img { max-width: 380px; }
  .cta-mockup { display: none; }
  .cta-content { padding: 56px 20px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .why-divider::after { display: none; }
  .why-item:nth-child(2)::after { display: none; }
  /* About */
  .about-hero { flex-direction: column; }
  .about-hero-left { width: 100%; }
  .about-hero-inner { padding: calc(var(--nav-h) + 24px) 0 40px; max-width: 100%; }
  .about-hero-right { display: none; }
  /* Services */
  .srv-hero { flex-direction: column; }
  .srv-hero-left { flex: none; width: 100%; }
  .srv-hero-inner { padding: calc(var(--nav-h) + 24px) 24px 40px; max-width: 100%; margin: 0; }
  .srv-hero-right { flex: none; width: 100%; min-height: 240px; }
  /* Shop */
  .shop-hero { flex-direction: column; }
  .shop-hero-left { flex: none; width: 100%; }
  .shop-hero-inner { padding: calc(var(--nav-h) + 24px) 24px 40px; max-width: 100%; margin: 0; }
  .shop-hero-right { flex: none; width: 100%; min-height: 220px; }
  .shop-grid { grid-template-columns: repeat(3,1fr); }
  .nav-search-form { display: none; }
  .trust-items { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .trust-item { border-right: none; padding: 0; }
  .trust-cta { width: 100%; }
  .trust-inner { flex-direction: column; }
  .trust-items { padding: 36px 24px; }
  .shop-content { padding: 24px 0; }
  /* Portfolio */
  .port-hero { flex-direction: column; }
  .port-hero-left { flex: none; width: 100%; }
  .port-hero-inner { padding: calc(var(--nav-h) + 24px) 24px 40px; max-width: 100%; margin: 0; }
  .port-hero-right { flex: none; width: 100%; min-height: 220px; }
  .port-grid { grid-template-columns: repeat(2, 1fr); }
  .port-cta-inner { flex-direction: column; gap: 24px; }
  .port-cta-divider { display: none; }
  .port-cta-pitch { flex: none; padding-right: 0; }
  .port-cta-btn { margin-left: 0; }
  .proc-steps { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .proc-line { display: none; }
  .srv-cta-inner { flex-direction: column; text-align: center; }
  .srv-cta-btns { justify-content: center; }
  .srv-cta-icon { margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .value-cell:nth-child(3) { border-right: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-col:nth-child(2) { border-right: none; }
  .stat-col:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-col:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .mv-card { padding: 32px 28px; }
  .about-cta-inner { flex-direction: column; text-align: center; }
  .acta-btns { justify-content: center; }
}

@media (max-width: 767px) {
  .tech-inner { grid-template-columns: 1fr; gap: 32px; }
  .tech-grid   { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-trust-badges { gap: 12px; }
  .wwd-grid { grid-template-columns: repeat(2,1fr); }
  .wwd-card { border-right: 1px solid var(--border); }
  .wwd-card:nth-child(even) { border-right: none; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-script { font-size: 1.7rem; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  /* About */
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .value-cell-sep:nth-child(2) { border-right: none; }
  .mv-cards-wrap { border-right: none; }
  /* Services */
  .proc-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  /* Shop */
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .shop-sidebar { position: static; }
  /* Portfolio */
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .port-cta-trust { gap: 16px; }
}

@media (max-width: 480px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-card { border-right: none; border-bottom: 1px solid var(--border); }
  .wwd-card:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-divider::after { display: none; }
  .hero-btns { flex-direction: column; }
  .hbtn { text-align: center; }
  /* About */
  .values-grid { grid-template-columns: 1fr; }
  .value-cell-sep { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-col-sep { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-col:nth-child(3) { border-right: none; }
}
