/*
Theme Name:  Prime Printing USA
Theme URI:   https://primeprintingusa.com
Author:      Prime Printing USA
Description: Custom WooCommerce theme for Prime Printing USA – Stafford TX
Version:     1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GPL-2.0-or-later
Text Domain: prime-printing
*/

/* ═══════════════════════════════════════════════════════
   TABLE OF CONTENTS
   1.  CSS Custom Properties
   2.  Reset & Base
   3.  Container
   4.  Reveal Animations
   5.  Topbar
   6.  Site Header
   7.  Search Bar & Category Dropdown
   8.  Header Icons
   9.  Sticky Navbar
   10. Mobile Drawer
   11. Hero Section
   12. Marquee
   13. Section Headers & Utilities
   14. Category Banners
   15. Product Grid & Cards
   16. Apparel / Sale Section
   17. Process Section
   18. Experts / Accordion
   19. Testimonials
   20. Newsletter Bar
   21. Footer
   22. Inner Page Hero
   23. WooCommerce — Global
   24. WooCommerce — Shop Archive
   25. WooCommerce — Single Product
   26. Custom Order Inquiry Form
   27. Contact Page
   28. About Page
   29. Blog
   30. FAQ Page
   31. Careers Page
   32. Utility Buttons & Misc
   33. Responsive — 1100px
   34. Responsive — 900px
   35. Responsive — 768px
   36. Responsive — 540px
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
───────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --cyan:      #00ADEF;
  --cyan-d:    #0090CC;
  --cyan-lt:   #D6F1FF;
  --cyan-pl:   #EDF9FF;
  --pink:      #E91E8C;
  --pink-d:    #C0186F;
  --pink-lt:   #FFE0F2;
  --yellow:    #FFD700;
  --navy:      #071520;
  --ink:       #122032;
  --body:      #3D5568;
  --muted:     #6B8899;
  --pale:      #9BB5C4;
  --bg:        #EBF6FE;
  --bg2:       #F3FAFF;
  --line:      rgba(0,173,239,.10);
  --line-md:   rgba(0,173,239,.16);

  /* Border-radius tokens */
  --r6:     6px;
  --r10:    10px;
  --r-pill: 100px;
  --r32:    32px;
  --r24:    24px;
  --r20:    20px;
  --r18:    18px;
  --r14:    14px;

  /* Spacing */
  --gutter: clamp(16px, 4vw, 56px);
  --mxw:    1240px;
  --sec:    clamp(56px, 8vw, 96px);
  --gap:    12px;

  /* Misc */
  --t:      .25s cubic-bezier(.25,.46,.45,.94);
  --t-slow: .45s cubic-bezier(.25,.46,.45,.94);
  --sh-sm:  0 2px 8px  rgba(0,0,0,.06);
  --sh-md:  0 4px 20px rgba(0,0,0,.08);
  --sh-c:   0 8px 32px rgba(0,173,239,.18);
  --sh-pk:  0 8px 32px rgba(233,30,140,.18);
  --sh-lift:0 16px 48px rgba(0,0,0,.12);

  /* Typography */
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
  --ff: 'Inter', -apple-system, sans-serif; /* alias for approved-design compat */
}

/* ─────────────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 18px;
}
body {
  font-family: var(--fb);
  font-size: 1rem;
  color: var(--body);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
address { font-style: normal; }

/* ─────────────────────────────────────────────────────
   3. CONTAINER
───────────────────────────────────────────────────── */
.cw {
  max-width: var(--mxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────────────────────────────────
   4. REVEAL ANIMATIONS
───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .20s; }
.reveal-d3 { transition-delay: .30s; }

/* ─────────────────────────────────────────────────────
   5. TOPBAR
───────────────────────────────────────────────────── */
.topbar {
  background: var(--cyan);
  padding: 7px 0;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { color: rgba(255,255,255,.85); transition: color .18s; }
.topbar-links a:hover { color: #fff; }
.topbar-center { font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.topbar-center a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────────────────────────────────────
   6. SITE HEADER
───────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

/* Logo */
.site-logo, .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img, .logo img, .logo-img { height: 52px; width: auto; object-fit: contain; display: block; }
.site-logo a    { display: flex; align-items: center; }

/* ─────────────────────────────────────────────────────
   7. SEARCH BAR & CATEGORY DROPDOWN
───────────────────────────────────────────────────── */
.search-bar {
  flex: 1;
  max-width: 560px;
  display: flex;
  align-items: stretch;
  height: 46px;
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-pill);
  overflow: visible;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
  position: relative;
}
.search-bar:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,173,239,.10);
}

/* Category button */
.search-cat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--bg);
  border-right: 1px solid var(--line-md);
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  min-width: 148px;
  flex-shrink: 0;
  user-select: none;
  transition: background .18s;
  height: 100%;
}
.search-cat:hover { background: var(--cyan-lt); }
.search-cat[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--cyan); }
.search-cat svg {
  width: 12px; height: 12px;
  color: var(--pale);
  flex-shrink: 0;
  transition: transform .18s;
}
.search-cat-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 108px;
}

/* Category dropdown */
.search-cat-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1.5px solid var(--line-md);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.14);
  z-index: 9999;
  overflow: hidden;
  display: none;
}
.search-cat-dropdown.open {
  display: block;
  animation: scDropIn .15s ease;
}
@keyframes scDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-cat-dropdown-inner {
  max-height: 320px;
  overflow-y: auto;
  padding: 6px 0;
}
.sc-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .14s, color .14s;
  white-space: nowrap;
}
.sc-opt:hover  { background: var(--cyan-lt); color: var(--cyan-d); }
.sc-opt.active { background: rgba(0,173,239,.12); color: var(--cyan-d); font-weight: 700; }
.sc-opt-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  opacity: 0;
}
.sc-opt.active .sc-opt-dot { opacity: 1; }
.sc-divider { height: 1px; background: var(--line); margin: 4px 12px; }

/* Search input */
.search-form-inner {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
}
.search-input {
  flex: 1;
  padding: 0 14px;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
  height: 100%;
}
.search-input::placeholder { color: var(--pale); }

.search-submit {
  padding: 0 18px;
  background: var(--cyan);
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 100%;
  transition: background .18s;
  cursor: pointer;
}
.search-submit:hover { background: var(--cyan-d); }
.search-submit svg { color: #fff; width: 18px; height: 18px; }

/* AJAX search results */
#searchResults {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--line-md);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  z-index: 9998;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
#searchResults::-webkit-scrollbar { width: 4px; }
#searchResults::-webkit-scrollbar-thumb { background: var(--line-md); border-radius: 4px; }

/* ─────────────────────────────────────────────────────
   8. HEADER ICONS
───────────────────────────────────────────────────── */
.hdr-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.hdr-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  transition: color .18s;
  position: relative;
  text-decoration: none;
}
.hdr-icon:hover { color: var(--cyan); }
.hdr-icon svg   { width: 22px; height: 22px; }
.hdr-icon-count, .icon-badge {
  position: absolute;
  top: -4px; right: -6px;
  min-width: 17px; height: 17px;
  background: var(--pink);
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}

/* ─────────────────────────────────────────────────────
   9. STICKY NAVBAR
───────────────────────────────────────────────────── */
.sticky-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow .3s;
}
.sticky-nav.is-sticky { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  position: relative;
}

/* Browse All button */
.browse-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  padding: 0 22px;
  height: 100%;
  font-size: 13.5px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: .01em;
  transition: filter .2s;
  cursor: pointer;
  border: none;
}
.browse-btn:hover { filter: brightness(1.07); }
.browse-btn svg  { width: 16px; height: 16px; }

/* Category dropdown in nav */
.cat-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 260px;
  background: #fff;
  border: 1px solid var(--line-md);
  border-radius: 0 0 var(--r14) var(--r14);
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
  z-index: 800;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.cat-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cat-dropdown-inner {
  padding: 6px 0;
  max-height: 400px;
  overflow-y: auto;
}
.cat-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s, padding-left .15s;
  text-decoration: none;
  border-left: 3px solid transparent;
}
.cat-dropdown-item:hover {
  background: var(--cyan-pl);
  color: var(--cyan);
  padding-left: 22px;
  border-left-color: var(--cyan);
}
.cat-dropdown-item svg   { width: 16px; height: 16px; color: var(--cyan); opacity: .65; flex-shrink: 0; transition: opacity .15s; }
.cat-dropdown-item:hover svg { opacity: 1; }

/* Main nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 0 14px;
  height: 52px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: color .18s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* Phone badge */
.navbar-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  text-decoration: none;
  transition: background .18s;
}
.navbar-phone:hover { background: var(--cyan-lt); }
.navbar-phone svg  { width: 15px; height: 15px; color: var(--cyan); }

/* ─────────────────────────────────────────────────────
   10. MOBILE DRAWER
───────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0; bottom: 0;
  right: 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 9998;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 20px 24px;
  box-shadow: -4px 0 40px rgba(0,0,0,.18);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.drawer-close button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.drawer-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.drawer-nav a:hover { color: var(--cyan); }

/* Overlay */
#drawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9997;
  display: none;
  opacity: 0;
  transition: opacity .3s;
}
#drawerOverlay.visible { display: block; opacity: 1; }

/* ─────────────────────────────────────────────────────
   11. HERO SECTION
───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 702px;
/*   display: flex;
  align-items: center; */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 126px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--fh);
  font-size: clamp(52px, 7.8vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .yl { color: var(--yellow); }
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--cyan);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(0,173,239,.40);
  transition: background .18s, transform .18s, box-shadow .18s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--cyan-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,173,239,.50);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: background .18s, border-color .18s;
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ─────────────────────────────────────────────────────
   11b. TRUST STRIP (after navbar, before categories)
───────────────────────────────────────────────────── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 5vw, 72px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 280px;
  min-width: 180px;
}
.trust-icon { width: 52px; height: 52px; flex-shrink: 0; }
.trust-name {
  font-family: var(--fh);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.2;
}
.trust-desc { font-size: 13px; color: var(--body); line-height: 1.55; }

/* ─────────────────────────────────────────────────────
   12. MARQUEE
───────────────────────────────────────────────────── */
.marquee-wrap {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d));
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mqrun 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.mq-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.93);
  white-space: nowrap;
}
.mq-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .5;
}
@keyframes mqrun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────
   13. SECTION HEADERS & UTILITIES
───────────────────────────────────────────────────── */
.sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(24px,3vw,36px);
  gap: 16px;
}
.sec-title {
  font-family: var(--fh);
  font-size: clamp(29px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.15;
}
.sec-title--lg { font-size: clamp(38px, 4.4vw, 47px); }
.accent-pk {
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-underline-offset: 5px;
  text-decoration-thickness: 2.5px;
}
.accent-c {
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 5px;
  text-decoration-thickness: 2.5px;
}
.view-all {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cyan);
  transition: gap .2s;
  text-decoration: none;
  white-space: nowrap;
}
.view-all:hover { gap: 9px; }
.view-all svg   { width: 16px; height: 16px; }

/* ─────────────────────────────────────────────────────
   14. CATEGORY BANNERS
───────────────────────────────────────────────────── */
/* ── Category grid rows — pixel-perfect match to approved design ── */
.cats-section { padding: clamp(28px, 4vw, 52px) 0; background: #fff; }

.cat-row-1 { display: grid; grid-template-columns: 1.18fr 1fr;      gap: var(--gap); margin-bottom: var(--gap); }
.cat-2x2   { display: grid; grid-template-columns: 1fr 1fr;          grid-template-rows: 1fr 1fr; gap: var(--gap); }
.cat-row-2 { display: grid; grid-template-columns: 1fr 1fr 1.5fr;    gap: var(--gap); margin-bottom: var(--gap); }
.cat-row-3 { display: grid; grid-template-columns: 1fr 1fr;          gap: var(--gap); }

/* Category tile */
.ct {
  position: relative;
  overflow: hidden;
  border-radius: var(--r18);
  cursor: pointer;
  transition: transform var(--t-slow, .45s cubic-bezier(.25,.46,.45,.94)), box-shadow var(--t-slow, .45s cubic-bezier(.25,.46,.45,.94));
  text-decoration: none;
  display: block;
  background: var(--navy);
}
.ct:hover { transform: scale(1.018); box-shadow: var(--sh-c); }

.ct img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow, .45s cubic-bezier(.25,.46,.45,.94));
  display: block;
}
.ct:hover img { transform: scale(1.06); }

/* Dark gradient overlay at bottom */
.ct::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.44) 0%, rgba(0,0,0,.08) 48%, transparent 100%);
  border-radius: inherit;
  z-index: 1;
  transition: opacity .25s;
}
.ct:hover::after { opacity: .85; }

/* Heights */
.ct-xl { min-height: 320px; }
.ct-md { min-height: 192px; }
.ct-sm { min-height: 152px; }

/* Cyan pill label — matches approved design */
.ct-lbl {
  position: absolute;
  bottom: 13px;
  left: 13px;
  z-index: 2;
  background: var(--cyan);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 2px 12px rgba(0,173,239,.35);
  transition: background var(--t), transform var(--t);
  line-height: 1;
}
.ct:hover .ct-lbl { background: var(--cyan-d); transform: translateY(-2px); }
.ct-lbl a { color: #fff; text-decoration: none; }

/* ─────────────────────────────────────────────────────
   15. PRODUCT GRID & CARDS
───────────────────────────────────────────────────── */
.products-section { padding: var(--sec) 0; background: var(--bg); }
.board-section    { padding: var(--sec) 0; background: #fff; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prod-card {
  background: #fff;
  border-radius: var(--r18);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-c);
  border-color: rgba(0,173,239,.20);
}
.prod-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}
.prod-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prod-card:hover .prod-thumb img { transform: scale(1.07); }

/* Hover overlay gradient */
.prod-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,60,.52) 0%, rgba(0,30,60,.08) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .28s;
  pointer-events: none;
  z-index: 1;
}
.prod-card:hover .prod-thumb::after { opacity: 1; }

.prod-meta { padding: 14px 16px 18px; flex: 1; }
.prod-name {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 5px;
}
.prod-name a { color: inherit; text-decoration: none; }
.prod-name a:hover { color: var(--cyan); }
.prod-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--cyan);
}

/* Custom Order hover button */
.co-btn-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  pointer-events: none;
  z-index: 2;
}
.co-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-d) 100%);
  color: #fff;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--r-pill);
  cursor: pointer;
  pointer-events: all;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,144,204,.45);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity .28s cubic-bezier(.4,0,.2,1), transform .28s cubic-bezier(.4,0,.2,1), box-shadow .18s;
  text-decoration: none;
}
.co-btn:hover { box-shadow: 0 8px 28px rgba(0,144,204,.55); }
.prod-card:hover .co-btn { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .co-btn { opacity: 1; transform: translateY(0); }
  .prod-thumb::after { opacity: 1; }
}

/* ─────────────────────────────────────────────────────
   16. APPAREL / SALE SECTION
───────────────────────────────────────────────────── */
.apparel-section { padding: var(--sec) 0; background: #fff; }

.apparel-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
}

.apparel-feature {
  border-radius: var(--r32);
  overflow: hidden;
  min-height: 622px;
  position: relative;
  background: #0d2137;
  display: flex;
  align-items: flex-end;
}
.apparel-feature-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.apparel-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.20) 50%, transparent 100%);
}
.apparel-badge {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.apparel-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.apparel-title {
  font-family: var(--fh);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: background .18s, transform .18s;
  text-decoration: none;
}
.btn-white:hover { background: var(--yellow); transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* Slider side */
.apparel-right { display: flex; flex-direction: column; }
.sale-headline {
  font-family: var(--fh);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pct {
  color: var(--pink);
  font-size: clamp(28px, 3.5vw, 38px);
}
.sale-subline {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 24px;
}
.apparel-slider-wrap { overflow: hidden; width: 100%; }
.apparel-products {
  display: flex;
  gap: 15px;
  will-change: transform;
}
.apparel-card {
  flex: 0 0 calc(50% - 7.5px);
  min-width: calc(50% - 7.5px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r18);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.apparel-card:hover { transform: translateY(-4px); box-shadow: var(--sh-c); }
.apparel-card-img {
  aspect-ratio: .88;
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}
.apparel-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.apparel-card:hover .apparel-card-img img { transform: scale(1.06); }
.apparel-card-info { padding: 14px 16px 16px; }
.apparel-card-name {
  font-family: var(--fh);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 5px;
}
.apparel-card-name a { color: inherit; text-decoration: none; }
.apparel-card-name a:hover { color: var(--cyan); }
.apparel-card-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.slider-nav-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.slider-nav-arrows { display: flex; gap: 8px; }
.arr {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, border-color .18s;
  cursor: pointer;
}
.arr:hover { background: var(--cyan-lt); border-color: var(--cyan); }
.arr svg    { width: 16px; height: 16px; color: var(--ink); }
.arr:disabled,
.arr.disabled { opacity: .35; cursor: not-allowed; }

/* ─────────────────────────────────────────────────────
   17. PROCESS SECTION
───────────────────────────────────────────────────── */
.process-section {
  padding: var(--sec) 0;
  background: linear-gradient(160deg, #0b1a27 0%, #0d2137 55%, #0b1a27 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,173,239,.18) 0%, transparent 70%);
  pointer-events: none;
}
.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: var(--r-pill);
  background: rgba(0,173,239,.15);
  border: 1px solid rgba(0,173,239,.35);
  color: var(--cyan);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.process-heading {
  font-family: var(--fh);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.process-subtext {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-bottom: clamp(44px,6vw,72px);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,173,239,.5) 20%, var(--cyan) 50%, rgba(0,173,239,.5) 80%, transparent);
  z-index: 0;
}
.proc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  backdrop-filter: blur(6px);
}
.proc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,173,239,.45);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(0,173,239,.2);
}
.proc-card.elevated {
  background: rgba(0,173,239,.10);
  border-color: rgba(0,173,239,.35);
  transform: translateY(-10px);
}
.proc-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 900;
  margin: 0 auto 22px;
}
.proc-num-1 { background: linear-gradient(135deg, var(--pink), var(--pink-d));   color: #fff; box-shadow: 0 8px 24px rgba(233,30,140,.35); }
.proc-num-2 { background: linear-gradient(135deg, var(--cyan), var(--cyan-d));   color: #fff; box-shadow: 0 8px 24px rgba(0,173,239,.40); }
.proc-num-3 { background: linear-gradient(135deg, #a855f7, #7c3aed);             color: #fff; box-shadow: 0 8px 24px rgba(168,85,247,.35); }
.proc-icon  { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.proc-icon-1 { background: rgba(233,30,140,.12); }
.proc-icon-2 { background: rgba(0,173,239,.12); }
.proc-icon-3 { background: rgba(168,85,247,.12); }
.proc-icon svg { width: 28px; height: 28px; }
.proc-title   { font-family: var(--fh); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.proc-desc    { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; }
.proc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .02em;
  transition: gap .2s;
  text-decoration: none;
}
.proc-cta:hover { gap: 10px; }

/* Stats bar */
.process-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(44px,6vw,64px);
  flex-wrap: wrap;
}
.process-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  min-width: 130px;
}
.process-stat-num {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.process-stat-num span { color: var(--cyan); }
.process-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.process-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.10);
}

/* ─────────────────────────────────────────────────────
   18. EXPERTS / ACCORDION
───────────────────────────────────────────────────── */
.experts-section { padding: var(--sec) 0; background: #fff; }
.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.experts-photo {
  border-radius: var(--r32);
  overflow: hidden;
}
.experts-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.experts-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.experts-desc {
  font-size: 15px;
  color: var(--body);
  line-height: 1.72;
  margin-bottom: 32px;
}

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-item {
  border: 1.5px solid var(--line-md);
  border-radius: var(--r14);
  overflow: hidden;
  transition: border-color var(--t);
}
.acc-item.open { border-color: var(--cyan); }
.acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  cursor: pointer;
  background: #fff;
  gap: 12px;
  transition: background var(--t);
}
.acc-trigger:hover { background: var(--cyan-lt); }
.acc-label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  line-height: 1.3;
  transition: color .18s;
}
.acc-item.open .acc-label { color: var(--cyan); }
.acc-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t);
}
.acc-item.open .acc-icon  { background: var(--cyan); border-color: var(--cyan); }
.acc-item.open .acc-icon svg { stroke: #fff; }
.acc-icon svg { width: 14px; height: 14px; stroke: var(--muted); transition: transform var(--t); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.acc-item.open .acc-panel { max-height: 300px; }
.acc-body-text {
  padding: 0 20px 16px;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.68;
}

/* ─────────────────────────────────────────────────────
   19. TESTIMONIALS
───────────────────────────────────────────────────── */
.testi-section { padding: var(--sec) 0; background: #fff; }
.testi-head    { text-align: center; margin-bottom: 44px; }
.testi-title {
  font-family: var(--fh);
  font-size: clamp(36px, 4.9vw, 55px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.testi-sub {
  font-size: 15px;
  color: var(--body);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.68;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  border: 1.5px solid var(--line);
  border-radius: var(--r18);
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: transform var(--t), box-shadow var(--t);
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-c); }
.testi-card:hover::before { transform: scaleX(1); }
.testi-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.av-1 { background: linear-gradient(135deg, var(--cyan), var(--cyan-d)); }
.av-2 { background: linear-gradient(135deg, #4848D8, #2828A8); }
.av-3 { background: linear-gradient(135deg, var(--pink), var(--pink-d)); }
.av-4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.av-init {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.testi-name {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.testi-stars {
  color: #FFB400;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 3px;
}
.testi-quote {
  font-size: 14px;
  color: var(--body);
  line-height: 1.72;
  margin-bottom: 14px;
  font-style: italic;
}
.testi-role {
  font-size: 12.5px;
  color: var(--muted);
}
.testi-role strong { color: var(--ink); }

/* ─────────────────────────────────────────────────────
   20. NEWSLETTER BAR
───────────────────────────────────────────────────── */
/* newsletter section - from approved design */
.newsletter-section,
.newsletter-bar {
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  padding: 52px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text h2 {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.newsletter-text p { font-size: 15px; color: rgba(255,255,255,.80); }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  width: 100%;
}
.newsletter-input,
#wpcf7-f544-o1 .wpcf7-form-control{
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  font-size: 14px;
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(4px);
}
.newsletter-input::placeholder,
#wpcf7-f544-o1 .wpcf7-form-control::placeholder{ color: rgba(255,255,255,.60); }
.newsletter-btn {
  padding: 14px 24px;
  background: #fff;
  color: var(--pink-d);
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .18s;
}
.newsletter-btn:hover { background: var(--yellow); color: var(--ink); }
/* CF7 inside newsletter */
.newsletter-bar .wpcf7-form p{ display: flex; gap: 0; max-width: 440px; width: 100%; }
.newsletter-bar .wpcf7-form input[type="email"] {
  flex: 1; padding: 14px 20px !important;
  border-radius: var(--r-pill) 0 0 var(--r-pill) !important;
  background: rgba(255,255,255,.15) !important;
  color: #fff !important; border: none !important;
  margin-bottom: 0 !important;
}
.newsletter-bar .wpcf7-form input[type="submit"] {
  padding: 14px 24px !important; background: #fff !important;
  color: var(--pink-d) !important;
  border-radius: 0 var(--r-pill) var(--r-pill) 0 !important;
  font-weight: 700 !important; font-size: 14px !important;
}
.newsletter-bar .wpcf7-spinner{ position:absolute; top:100%; }
.newsletter-bar .wpcf7-not-valid-tip{ position: absolute; top: -30px; color: #000; font-size: 14px; }
.wpcf7-response-output{ color:#fff; }

/* ─────────────────────────────────────────────────────
   21. FOOTER
───────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-main {
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr 1fr;
  gap: 38px;
}
.footer-tagline {
  font-family: var(--fh);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 13px;
}
.footer-about {
  font-size: 13px;
  color: rgba(255,255,255,.46);
  line-height: 1.72;
  max-width: 250px;
  margin-bottom: 20px;
}
.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,.50);
  line-height: 1.5;
}
.fc-item svg { width: 13px; height: 13px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.fc-item a   { color: rgba(255,255,255,.50); transition: color .18s; text-decoration: none; }
.fc-item a:hover { color: var(--cyan); }
.footer-socials { display: flex; gap: 8px; }
.soc {
  width: 33px; height: 33px;
  border-radius: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.48);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t), color var(--t), transform var(--t);
}
.soc:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; transform: translateY(-2px); }
.footer-col-title {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  line-height: 1;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.46);
  transition: color .18s, padding-left .18s;
  line-height: 1.3;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.30); }
.footer-payments { display: flex; gap: 7px; }
.pay-chip {
  padding: 4px 10px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
}

/* ─────────────────────────────────────────────────────
   22. INNER PAGE HERO
───────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #0d2137);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(0,173,239,.15), transparent);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: var(--fh);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.65;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.50);
  margin-top: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.50); transition: color .18s; text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* ─────────────────────────────────────────────────────
   23. WOOCOMMERCE — GLOBAL
───────────────────────────────────────────────────── */
/* Remove WC breadcrumbs (handled by theme) */
.woocommerce .woocommerce-breadcrumb { display: none; }

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--r14) !important;
  padding: 14px 20px !important;
  margin-bottom: 20px !important;
}
.woocommerce-message { background: #f0fdf4 !important; border-color: #22c55e !important; color: #166534 !important; }
.woocommerce-info    { background: var(--cyan-lt) !important; border-color: var(--cyan) !important; }
.woocommerce-error   { background: #fef2f2 !important; border-color: #ef4444 !important; }

/* Global WC buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--cyan) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 32px !important;
  transition: background .18s !important;
  border: none !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--cyan-d) !important; }
.woocommerce button.button.alt       { background: var(--pink) !important; }
.woocommerce button.button.alt:hover { background: var(--pink-d) !important; }

/* Hide default WC ATC in product loop */
.woocommerce ul.products li.product .button.add_to_cart_button { display: none; }

/* Custom Order loop link */
a.prime-co-link.button {
  background: var(--cyan) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 10px 20px !important;
  border: none !important;
  transition: background .18s !important;
  text-decoration: none !important;
}
a.prime-co-link.button:hover { background: var(--cyan-d) !important; }

/* ─────────────────────────────────────────────────────
   24. WOOCOMMERCE — SHOP ARCHIVE
───────────────────────────────────────────────────── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product {
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  background: #fff;
  border-radius: var(--r18);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t);
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-c);
}
.woocommerce ul.products li.product a img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--fh) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  padding: 14px 16px 5px !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 16px 14px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--cyan) !important;
}

/* Shop toolbar */
.wc-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.woocommerce .woocommerce-ordering select {
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  background: #fff;
  font-size: 14px;
}
.woocommerce .woocommerce-result-count { font-size: 14px; }

/* ─────────────────────────────────────────────────────
   25. WOOCOMMERCE — SINGLE PRODUCT
───────────────────────────────────────────────────── */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-main-img-wrap { position: relative; }
.product-gallery img { border-radius: var(--r20); width: 100%; display: block; }

/* Product summary WC overrides */
.woocommerce div.product .product_title {
  font-family: var(--fh) !important;
  font-size: clamp(24px, 3vw, 40px) !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  line-height: 1.15 !important;
  margin-bottom: 12px !important;
  letter-spacing: -.02em !important;
}
.woocommerce .woocommerce-product-rating { margin-bottom: 12px; }
.woocommerce .woocommerce-review-link { font-size: 13px; color: var(--muted); }
.woocommerce .star-rating { color: #FFB800; }

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.woocommerce div.product .woocommerce-tabs .tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.woocommerce div.product .woocommerce-tabs .tabs li {
  margin: 0;
}
.woocommerce div.product .woocommerce-tabs .tabs li a {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .18s, border-color .18s;
  text-decoration: none;
  display: block;
}
.woocommerce div.product .woocommerce-tabs .tabs li a:hover { color: var(--cyan); }
.woocommerce div.product .woocommerce-tabs .tabs li.active a {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
.woocommerce div.product .woocommerce-tabs .panel { padding: 0; border: none; }
.woocommerce div.product .woocommerce-tabs .panel h2 { display: none; }

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: var(--cyan) !important;
}
.woocommerce .quantity input {
  border: 1.5px solid var(--line-md) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-size: 16px !important;
  width: 80px !important;
  text-align: center !important;
}
.woocommerce div.product .product_title {
  font-family: var(--fh) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  margin-bottom: 12px !important;
}
.woocommerce div.product .woocommerce-tabs .tabs li.active a {
  color: var(--cyan);
  border-bottom: 2px solid var(--cyan);
}

/* ─────────────────────────────────────────────────────
   26. CUSTOM ORDER INQUIRY FORM
───────────────────────────────────────────────────── */
.prime-inquiry-wrap {
  background: #fff;
  border: 1.5px solid var(--line-md);
  border-radius: var(--r24);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.piq-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2e48 100%);
  padding: 24px 28px 20px;
  position: relative;
}
.piq-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(0,173,239,.12), transparent);
  pointer-events: none;
}
.piq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,173,239,.18);
  border: 1px solid rgba(0,173,239,.30);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.piq-title {
  font-family: var(--fh);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.2;
  position: relative; z-index: 1;
}
.piq-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,.60);
  margin: 0 0 14px;
  line-height: 1.55;
  position: relative; z-index: 1;
}
.piq-product-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,.80);
  position: relative; z-index: 1;
}
.piq-form {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.piq-row { display: grid; gap: 16px; }
.piq-row--2 { grid-template-columns: 1fr 1fr; }
.piq-field { display: flex; flex-direction: column; gap: 6px; }
.piq-label { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1; }
.piq-required { color: var(--pink); margin-left: 2px; }
.piq-input-wrap { position: relative; display: flex; align-items: center; }
.piq-icon {
  position: absolute; left: 13px;
  width: 15px; height: 15px;
  color: var(--pale); pointer-events: none; flex-shrink: 0;
}
.piq-input {
  width: 100%; height: 44px;
  padding: 0 14px 0 38px;
  border: 1.5px solid var(--line-md);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--fb);
  color: var(--ink);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  appearance: none;
}
.piq-input:hover  { border-color: rgba(0,173,239,.30); }
.piq-input:focus  { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,173,239,.10); }
.piq-input::placeholder { color: var(--pale); }
.piq-input--error { border-color: var(--pink) !important; box-shadow: 0 0 0 3px rgba(233,30,140,.08) !important; }
.piq-error {
  display: none; font-size: 12px; color: var(--pink);
  font-weight: 600; margin-top: -2px;
}
.piq-select-wrap { position: relative; }
.piq-select { cursor: pointer; padding-right: 36px; }
.piq-chevron {
  position: absolute; right: 12px;
  width: 14px; height: 14px;
  color: var(--muted); pointer-events: none;
}
select.piq-input option { background: #fff; color: var(--ink); }
.piq-textarea { height: auto; min-height: 120px; padding: 13px 14px; resize: vertical; line-height: 1.6; }
.piq-char-count { font-size: 11.5px; color: var(--muted); text-align: right; margin-top: -2px; }

/* Upload zone */
.piq-upload-zone {
  position: relative;
  border: 2px dashed var(--line-md);
  border-radius: 10px;
  min-height: 92px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  overflow: hidden;
  background: var(--bg2);
}
.piq-upload-zone:hover,
.piq-upload-zone--drag   { border-color: var(--cyan); background: var(--cyan-lt); }
.piq-upload-zone--has-file { border-style: solid; border-color: var(--cyan); background: #fff; min-height: auto; }
.piq-file-input {
  position: absolute; inset: 0;
  opacity: 0; width: 100%; height: 100%;
  cursor: pointer; z-index: 1;
}
.piq-upload-ui {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 16px 12px; gap: 5px;
  pointer-events: none;
}
.piq-upload-zone--has-file .piq-upload-ui { display: none; }
.piq-upload-icon  { color: var(--muted); width: 24px; height: 24px; margin-bottom: 2px; transition: color .2s; }
.piq-upload-zone:hover .piq-upload-icon,
.piq-upload-zone--drag .piq-upload-icon { color: var(--cyan); }
.piq-upload-label { font-size: 13px; font-weight: 700; color: var(--ink); }
.piq-upload-hint  { font-size: 11px; color: var(--muted); text-align: center; }

/* File preview */
.piq-upload-preview { padding: 12px; }
.piq-file-preview-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border-radius: 8px; padding: 10px 12px;
}
.piq-file-thumb {
  width: 48px; height: 48px; object-fit: cover;
  border-radius: 6px; border: 1px solid var(--line); flex-shrink: 0;
}
.piq-file-icon { font-size: 32px; line-height: 1; flex-shrink: 0; }
.piq-file-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.piq-file-name { font-size: 13px; font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.piq-file-size { font-size: 11px; color: var(--muted); }
.piq-file-remove {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(233,30,140,.10); color: var(--pink);
  font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; flex-shrink: 0;
  transition: background .15s; position: relative; z-index: 2;
}
.piq-file-remove:hover { background: var(--pink); color: #fff; }

/* Alerts */
.piq-alert {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 20px; border-radius: 12px;
  margin: 0 28px 0; border: 1px solid transparent;
  font-size: 13.5px; line-height: 1.5;
}
.piq-alert:first-of-type { margin-top: 20px; }
.piq-alert strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.piq-alert p      { margin: 0; opacity: .85; }
.piq-alert svg    { flex-shrink: 0; margin-top: 2px; }
.piq-alert--success { background: #f0fdf4; border-color: #22c55e; color: #166534; }
.piq-alert--success svg { stroke: #22c55e; }
.piq-alert--error   { background: #fef2f2; border-color: var(--pink); color: #991b1b; }
.piq-alert--error   svg { stroke: var(--pink); }
.piq-ajax-response  { display: none; margin: 16px 28px 0; }

/* Submit row */
.piq-submit-row {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-top: 4px;
}
.piq-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-d) 100%);
  color: #fff;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,173,239,.38);
  transition: transform .2s, box-shadow .2s, opacity .2s;
  position: relative;
  min-width: 168px;
  letter-spacing: .02em;
}
.piq-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,173,239,.48);
}
.piq-submit-btn:disabled { opacity: .7; cursor: wait; }
.piq-btn-text    { display: flex; align-items: center; gap: 8px; }
.piq-btn-loading { display: none; align-items: center; gap: 8px; }
.piq-btn--loading .piq-btn-text    { display: none; }
.piq-btn--loading .piq-btn-loading { display: flex; }
.piq-spinner {
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: piq-spin .65s linear infinite;
}
@keyframes piq-spin { to { transform: rotate(360deg); } }
.piq-privacy-note {
  display: flex; align-items: flex-start;
  gap: 6px; font-size: 12px; color: var(--muted);
  line-height: 1.5; margin: 0; flex: 1;
}
.piq-privacy-note svg { flex-shrink: 0; margin-top: 1px; }
.piq-success-state { padding: 48px 28px; text-align: center; }
.piq-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; font-size: 32px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(34,197,94,.30);
}
.piq-success-state h3 { font-family: var(--fh); font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.piq-success-state p  { font-size: 15px; color: var(--body); line-height: 1.65; }

/* ─────────────────────────────────────────────────────
   27. CONTACT PAGE
───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--r24);
  padding: 36px;
  color: #fff;
}
.contact-info-title { font-family: var(--fh); font-size: 24px; font-weight: 800; margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: flex-start;
  gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,173,239,.15);
  border: 1px solid rgba(0,173,239,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--cyan); }
.contact-detail-label  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.40); margin-bottom: 4px; }
.contact-detail-value  { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.45; }
.contact-detail-value a { color: var(--cyan); text-decoration: none; }
.contact-form-wrap  {
  background: #fff; border-radius: var(--r24); padding: 40px;
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
}
.contact-form-title { font-family: var(--fh); font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.contact-form-sub   { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* CF7 global styling */
.wpcf7 input:not([type=submit]),
.wpcf7 textarea,
.wpcf7 select {
  width: 100% !important;
  border: 1.5px solid var(--line-md) !important;
  border-radius: 10px !important;
  padding: 13px 16px !important;
  font-size: 14px !important;
  background: #fff !important;
  margin-bottom: 14px !important;
  transition: border-color .18s !important;
  font-family: var(--fb) !important;
  display: block !important;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--cyan) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0,173,239,.10) !important;
}
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 input[type=submit] {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d)) !important;
  color: #fff !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 36px !important;
  width: auto !important;
  cursor: pointer !important;
  border: none !important;
  transition: transform .18s, box-shadow .18s !important;
}
.wpcf7 input[type=submit]:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0,173,239,.35) !important;
}
.wpcf7-response-output {
  margin-top: 12px !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
}

/* ─────────────────────────────────────────────────────
   28. ABOUT PAGE
───────────────────────────────────────────────────── */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-mission-img { border-radius: var(--r32); overflow: hidden; }
.about-mission-img img { width: 100%; display: block; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-box { background: var(--bg); border-radius: var(--r18); padding: 20px; text-align: center; }
.stat-box-num   { font-family: var(--fh); font-size: 32px; font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 4px; }
.stat-box-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card { background: #fff; border-radius: var(--r20); padding: 28px; border: 1px solid var(--line); }
.value-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-title { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.value-desc  { font-size: 14px; color: var(--body); line-height: 1.65; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card   { text-align: center; }
.team-photo  { border-radius: var(--r20); overflow: hidden; aspect-ratio: 1; margin-bottom: 16px; background: var(--bg2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name   { font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role   { font-size: 13px; color: var(--muted); }

/* ─────────────────────────────────────────────────────
   29. BLOG
───────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: var(--r20);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-c); }
.blog-card-img  { aspect-ratio: 16/10; overflow: hidden; background: var(--bg2); display: block; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px; }
.blog-cat-tag {
  display: inline-flex; padding: 4px 12px;
  background: var(--cyan-lt); color: var(--cyan-d);
  border-radius: var(--r-pill); font-size: 11px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 10px;
  text-decoration: none;
}
.blog-title { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.blog-title a { color: inherit; text-decoration: none; }
.blog-title a:hover { color: var(--cyan); }
.blog-excerpt {
  font-size: 13.5px; color: var(--body); line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-meta  { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); }
.blog-meta svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────────────
   30. FAQ PAGE
───────────────────────────────────────────────────── */
.faq-section { padding: var(--sec) 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r18); overflow: hidden; }
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 22px; cursor: pointer; gap: 12px;
}
.faq-q-text  { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.faq-item.open .faq-q-text { color: var(--cyan); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg2); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .18s;
}
.faq-item.open .faq-icon          { background: var(--cyan); }
.faq-item.open .faq-icon svg      { stroke: #fff; transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--muted); transition: transform .3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-text { padding: 0 22px 18px; font-size: 14px; color: var(--body); line-height: 1.7; }

/* ─────────────────────────────────────────────────────
   31. CAREERS PAGE
───────────────────────────────────────────────────── */
.careers-section { padding: var(--sec) 0; }
.careers-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.careers-intro p { font-size: 16px; color: var(--body); line-height: 1.7; }
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r20);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--sh-c); border-color: rgba(0,173,239,.25); }
.job-dept { display: inline-flex; padding: 4px 12px; background: var(--cyan-lt); color: var(--cyan-d); border-radius: var(--r-pill); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.job-title { font-family: var(--fh); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.job-meta  { display: flex; gap: 16px; font-size: 13px; color: var(--muted); margin-bottom: 14px; flex-wrap: wrap; }
.job-meta span { display: flex; align-items: center; gap: 5px; }
.job-meta svg  { width: 13px; height: 13px; }
.job-desc  { font-size: 14px; color: var(--body); line-height: 1.65; margin-bottom: 20px; }
.btn-apply {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 24px; background: var(--cyan); color: #fff;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 700;
  transition: background .18s, transform .18s; text-decoration: none;
}
.btn-apply:hover { background: var(--cyan-d); transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────
   32. UTILITY BUTTONS, MISC
───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r-pill);
  padding: 12px 24px;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  letter-spacing: .01em;
}
.btn svg { transition: transform .2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d));
  color: #fff;
  box-shadow: 0 3px 14px rgba(0,173,239,.28);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: var(--sh-c); }

.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  box-shadow: 0 3px 14px rgba(233,30,140,.28);
}
.btn-pink:hover { transform: translateY(-2px); box-shadow: var(--sh-pk); }

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lift); }

.btn-ghost {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.40);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cyan-d);
  border: 1.5px solid var(--cyan);
}
.btn-outline:hover { background: var(--cyan-pl, #EDF9FF); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* Pagination */
.pagination {
  display: flex; gap: 8px;
  justify-content: center; margin-top: 48px;
  flex-wrap: wrap;
}
.page-numbers {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--ink);
  border: 1.5px solid var(--line);
  transition: background .18s, color .18s, border-color .18s;
  text-decoration: none;
}
.page-numbers:hover,
.page-numbers.current { background: var(--cyan); color: #fff; border-color: var(--cyan); }

/* Alerts (non-form) */
.inquiry-success,
.inquiry-error {
  padding: 14px 20px;
  border-radius: var(--r14);
  font-size: 14px; font-weight: 600;
  margin-bottom: 20px;
}
.inquiry-success { background: #f0fdf4; border: 1px solid #22c55e; color: #166534; }
.inquiry-error   { background: #fef2f2; border: 1px solid #ef4444; color: #991b1b; }
.process-eyebrow svg { width: 14px; height: 14px; }


/* ═══════════════════════════════════════════
   WooCommerce Product Tabs — Prime Printing
═══════════════════════════════════════════ */

/* Tab Nav */
.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0 0 0 0;
    border-bottom: 2px solid #e0eef7;
    list-style: none;
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #5a7a8a;
    text-decoration: none;
    border: 2px solid transparent;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background: #f0f7fd;
    transition: all 0.2s ease;
}

.woocommerce-tabs ul.tabs li a:hover {
    color: #00ADEF;
    background: #e0f3fc;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #00ADEF;
    background: #fff;
    border-color: #e0eef7;
    border-bottom-color: #fff;
    margin-bottom: -2px;
}

/* Tab Panel */
.woocommerce-tabs .panel {
    background: #fff;
    border: 2px solid #e0eef7;
    border-top: none;
    border-radius: 0 8px 8px 8px;
    padding: 32px 36px;
    margin: 0;
}

/* Description heading */
.woocommerce-tabs .panel h2 {
    font-size: 20px;
    font-weight: 700;
    color: #122032;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0eef7;
}

/* Description Table */
.woocommerce-tabs .panel table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
}

.woocommerce-tabs .panel table thead tr th,
.woocommerce-tabs .panel table tr td:first-child {
    background: #f0f7fd;
    color: #122032;
    font-weight: 700;
    padding: 10px 16px;
    border: 1px solid #d0e8f5;
    text-align: left;
}

.woocommerce-tabs .panel table td {
    padding: 10px 16px;
    border: 1px solid #e8f2fa;
    color: #3D5568;
    vertical-align: top;
}

.woocommerce-tabs .panel table tr:nth-child(even) td {
    background: #f8fbfe;
}

/* Description list */
.woocommerce-tabs .panel ul {
    padding-left: 20px;
    margin: 16px 0;
}

.woocommerce-tabs .panel ul li {
    font-size: 14px;
    color: #3D5568;
    line-height: 1.8;
    margin-bottom: 4px;
}

.woocommerce-tabs .panel ul li::marker {
    color: #00ADEF;
}

/* Bold text in description */
.woocommerce-tabs .panel strong {
    color: #122032;
}

/* Italic note */
.woocommerce-tabs .panel em {
    font-size: 13px;
    color: #6b8fa3;
    display: block;
    margin-top: 12px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   Reviews Tab
═══════════════════════════════════════════ */
.woocommerce-tabs #tab-reviews .woocommerce-Reviews-title {
    font-size: 18px;
    font-weight: 700;
    color: #122032;
    margin-bottom: 20px;
}

/* Review form */
#review_form .comment-reply-title {
    font-size: 16px;
    font-weight: 700;
    color: #122032;
    margin-bottom: 16px;
}

#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d0e8f5;
    border-radius: 8px;
    font-size: 14px;
    color: #122032;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#review_form input[type="text"]:focus,
#review_form input[type="email"]:focus,
#review_form textarea:focus {
    outline: none;
    border-color: #00ADEF;
    box-shadow: 0 0 0 3px rgba(0,173,239,0.12);
}

#review_form .form-submit input[type="submit"] {
    background: linear-gradient(135deg, #00ADEF, #0090CC);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

#review_form .form-submit input[type="submit"]:hover {
    opacity: 0.88;
}

/* Star rating */
.woocommerce-product-rating .star-rating,
#review_form .stars a {
    color: #f59e0b;
}


.values-section{ padding-bottom:5rem; }
.hero-section .btn-primary{ background: linear-gradient(135deg, var(--pink), var(--pink-d)); }



.shop-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:40px;
    align-items:start;
}

.shop-sidebar{
    position:sticky;
    top:120px;
    border:1px solid var(--line);
    border-radius:20px;
    padding:24px;
    background:#fff;
}

.shop-sidebar-title{
    margin:0 0 18px;
    font-size:20px;
    color:var(--ink);
}

.shop-cats{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.shop-cat-item{
    padding:12px 16px;
    border:1.5px solid var(--line);
    border-radius:12px;
    color:var(--muted);
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.shop-cat-item:hover{
    border-color:var(--cyan);
    color:var(--cyan);
}

.shop-cat-item.active{
    border-color:var(--cyan);
    background:var(--cyan);
    color:#fff;
}

.shop-products-area{
    min-width:0;
}

.wc-shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.current-cat-name{
    font-size:14px;
    font-weight:700;
    color:var(--ink);
    margin-right:10px;
}

.no-products{
    text-align:center;
    font-size:16px;
    color:var(--muted);
    padding:60px 0;
}

@media(max-width:991px){

    .shop-layout{
        grid-template-columns:1fr;
    }

    .shop-sidebar{
        position:relative;
        top:0;
    }

}


/* =========================
   BLOG PAGE
========================= */

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

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #e7eef5;
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.blog-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.blog-card-img{
    display:block;
    aspect-ratio:16/10;
    overflow:hidden;
}

.blog-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.blog-card-body{
    padding:24px;
}

.blog-title{
    margin:14px 0 12px;
    font-size:26px;
    line-height:1.3;
}

.blog-title a{
    color:#0f172a;
    text-decoration:none;
}

.blog-excerpt{
    color:#64748b;
    line-height:1.7;
    margin:0;
}

.blog-meta{
    margin-top:20px;
    padding-top:16px;
    border-top:1px solid #edf2f7;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    font-size:13px;
    color:#64748b;
}

.blog-cat-tag{
    display:inline-block;
    padding:7px 14px;
    border-radius:100px;
    background:#e0f2fe;
    color:#0284c7;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    text-transform:uppercase;
}

@media(max-width:991px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .blog-grid{
        grid-template-columns:1fr;
    }

}



/* ═══════════════════════════════════════════
   Mobile
═══════════════════════════════════════════ */
@media (max-width: 640px) {
    .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;
    }
    .woocommerce-tabs .panel {
        padding: 20px 18px;
    }
    .woocommerce-tabs .panel table {
        font-size: 12px;
    }
    .woocommerce-tabs .panel table td,
    .woocommerce-tabs .panel table th {
        padding: 8px 10px;
    }
}


/* ─────────────────────────────────────────────────────
   33. RESPONSIVE — max-width: 1100px
───────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
  .prod-grid   { grid-template-columns: repeat(3, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ─────────────────────────────────────────────────────
   34. RESPONSIVE — max-width: 900px
───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .experts-grid      { grid-template-columns: 1fr; gap: 36px; }
  .experts-photo     { aspect-ratio: 1.4; min-height: 280px; }
  .about-mission-grid{ grid-template-columns: 1fr; }
  .single-product-layout { grid-template-columns: 1fr; }
  .process-grid      { grid-template-columns: 1fr; gap: 16px; }
  .process-grid::before { display: none; }
  .proc-card.elevated{ transform: none; }
  .testi-grid        { grid-template-columns: 1fr 1fr; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .blog-grid         { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .cat-row-1         { grid-template-columns: 1fr; }
  .apparel-grid      { grid-template-columns: 1fr; }
  .apparel-feature   { min-height: 420px; }
}

/* ─────────────────────────────────────────────────────
   34b. NAV BREAKPOINTS (matching approved design)
───────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .sticky-nav .main-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 760px) {
  .navbar-phone { display: none; }
}
@media (max-width: 640px) {
  .hdr-icon span { display: none; }
  .hdr-icons { gap: 14px; }
}
@media (max-width: 420px) {
  .topbar-center { display: none; }
}

/* ─────────────────────────────────────────────────────
   35. RESPONSIVE — max-width: 768px
───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  html { font-size: 16px; }

  /* Header layout: logo | icons+hamburger, search bar below */
  .hdr-inner {
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-logo     { flex: 1; min-width: 0; }
  .hdr-icons     { gap: 14px; flex-shrink: 0; }
  .hamburger     { display: flex; }
  .search-bar    { order: 3; flex: 0 0 100%; max-width: 100%; }

  /* Hide main nav on mobile */
  .sticky-nav .main-nav { display: none; }
  .navbar-phone { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .prod-grid              { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .testi-grid             { grid-template-columns: 1fr; }
  .faq-grid               { grid-template-columns: 1fr; }
  .job-grid               { grid-template-columns: 1fr; }
  .values-grid            { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr 1fr; }
  .newsletter-inner       { flex-direction: column; }
  .newsletter-form        { max-width: 100%; }
  .stat-row               { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────
   36. RESPONSIVE — max-width: 540px
───────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .prod-grid              { grid-template-columns: 1fr 1fr; gap: 12px; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; }
  .footer-grid            { grid-template-columns: 1fr; }
  .team-grid              { grid-template-columns: 1fr 1fr; }
  .blog-grid              { grid-template-columns: 1fr; }
  .cat-2x2                { grid-template-columns: 1fr 1fr; }
  .apparel-card           { flex: 0 0 calc(80% - 7.5px); min-width: calc(80% - 7.5px); }

  /* Inquiry form */
  .piq-row--2             { grid-template-columns: 1fr; }
  .piq-form               { padding: 18px 16px 22px; }
  .piq-header             { padding: 20px 16px 18px; }
  .piq-alert, .piq-ajax-response { margin-left: 16px; margin-right: 16px; }
  .piq-submit-row         { flex-direction: column; align-items: stretch; }
  .piq-submit-btn         { width: 100%; justify-content: center; }
}
