/* ==========================================================================
   Purva Bites — component stylesheet
   Design system ported from the Next.js app (globals.css + tailwind utilities).
   Loaded via functions.php as "purvabites-theme".
   ========================================================================== */

/* -------------------------------------------------------------------------
   Layout & utility helpers
   ------------------------------------------------------------------------- */
.pb-container-narrow {
  max-width: 820px;
}
.pb-container-process {
  max-width: 1024px;
}

.text-center {
  text-align: center;
}
.text-white {
  color: #ffffff;
}

.w-100 {
  width: 100%;
}

.pb-flex-wrap {
  flex-wrap: wrap;
}
.pb-items-start {
  align-items: flex-start;
}
.pb-flex-1 {
  flex: 1;
}
.pb-flex-2 {
  flex: 2;
}
.pb-flex-12 {
  flex: 1.2;
}
.pb-ml-auto {
  margin-left: auto;
}

.pb-gap-8 {
  gap: 2rem;
}
.pb-gap-10 {
  gap: 2.5rem;
}
.pb-space-y-2 > * + * {
  margin-top: 0.5rem;
}
.pb-space-y-4 > * + * {
  margin-top: 1rem;
}

.pb-mb-2 {
  margin-bottom: 0.5rem;
}
.pb-mb-3 {
  margin-bottom: 0.75rem;
}
.pb-mb-4 {
  margin-bottom: 1rem;
}
.pb-mb-5 {
  margin-bottom: 1.25rem;
}
.pb-mb-6 {
  margin-bottom: 1.5rem;
}
.pb-mb-8 {
  margin-bottom: 2rem;
}
.pb-mb-10 {
  margin-bottom: 2.5rem;
}
.pb-mt-5 {
  margin-top: 1.25rem;
}
.pb-pt-6 {
  padding-top: 1.5rem;
}
.pb-py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pb-py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pb-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.pb-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pb-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.pb-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1023px) {
  .md\:pb-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:pb-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pb-line-body{
    margin-top: -50px;
  }
  .pb-h3{
    font-size: 1.2rem !important; 
  }
  p.pb-muted{
   margin:5px;   
   
  }
  /*.pb-container p.pb-muted{*/
  /*    color:#d3d3d3;*/
  /*}*/
  /*.pb-product-body p.pb-muted{ color:black;}*/
  
  /*.pb-container .pb-dist-section-card > p.pb-muted{*/
  /*    color: black;*/
  /*}*/
  /*.bg-section  p.pb-muted{ color:black;}*/
  /*.pb-banner-card p.pb-muted{ color:black;}*/
  /*.pb-address-card  p.pb-muted{ color:black;}*/
}

@media (max-width: 767px) {
  .pb-cols-3,
  .pb-cols-4,
  .pb-cols-5,
  .md\:pb-cols-2,
  .md\:pb-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .pb-cols-2,
  .pb-cols-3,
  .pb-cols-4,
  .pb-cols-5,
  .md\:pb-cols-2,
  .md\:pb-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pb-trust-bar .pb-container .pb-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}


.border-y {
  border-top: 1px solid var(--pb-border);
  border-bottom: 1px solid var(--pb-border);
}

/* -------------------------------------------------------------------------
   Section typography
   ------------------------------------------------------------------------- */
.pb-section {
  padding: 4rem 0;
}
.pb-section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--pb-brand-primary);
  margin-bottom: 0.75rem;
}
.pb-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--pb-brand-primary);
  margin-bottom: 0.5rem;
}
.pb-section-title {
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.pb-section-desc {
  color: var(--pb-muted-foreground);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.pb-desc-narrow {
  max-width: 560px;
}
.pb-section-cta {
  margin-top: 2rem;
  text-align: center;
}

.pb-h2 {
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
@media (max-width: 1023px) {
 .pb-h2 {
     font-size: 23px;
 }
}
.pb-h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.pb-h4 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.pb-muted {
  color: var(--pb-muted-foreground);
}
.pb-preline {
  white-space: pre-line;
}
.pb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--pb-brand-primary);
}
.pb-link:hover {
  color: var(--pb-brand-primary-hover);
}
.pb-link svg {
  width: 1.1em;
  height: 1.1em;
}

.pb-divider {
  border: 0;
  border-top: 1px solid var(--pb-border);
  margin: 0;
}

/* Icons */
.pb-icon {
  width: 1.25em;
  height: 1.25em;
}
.pb-btn-icon {
  width: 1em;
  height: 1em;
  margin-left: 0.35rem;
}
.pb-sm-icon {
  width: 1.1em;
  height: 1.1em;
}

svg.pb-icon,
svg.pb-btn-icon,
svg.pb-sm-icon,
svg.pb-loc-icon,
svg.pb-pl-icon,
svg.pb-mvv-icon,
svg.pb-qstep-icon,
svg.pb-stat-icon {
  flex: 0 0 auto;
}

/* -------------------------------------------------------------------------
   Breadcrumbs
   ------------------------------------------------------------------------- */
.pb-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 13px;
  color: var(--pb-muted-foreground);
  margin-bottom: 1.25rem;
}
.pb-crumb {
  color: var(--pb-muted-foreground);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.pb-crumb-link {
  text-decoration: none;
  color: var(--pb-muted-foreground);
  transition: color 0.2s;
}
.pb-crumb-link:hover {
  color: var(--pb-brand-primary);
}
.pb-crumb svg {
  width: 14px;
  height: 14px;
}
.pb-crumb-sep {
  width: 14px;
  height: 14px;
  color: var(--pb-border);
}
.pb-crumb-current {
  color: var(--pb-foreground);
  font-weight: 500;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.pb-hero,
.pb-page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
}
.pb-hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pb-hero-media {
  position: absolute;
  inset: 0;
}
.pb-hero-media img,
.pb-hero-img,
picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pb-hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #016129 0%, #001524 70%, #0d5318 100%);
}
.pb-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 1;
}
.pb-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 3rem;
  color: #ffffff;
}
.pb-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: #ffffff;
  max-width: 20ch;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.pb-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 46ch;
  margin-bottom: 1.25rem;
}
/* ponytail: btn was sibling outside flex content -> clipped by .pb-slides overflow. Moved inside content and centered bottom */
.pb-hero-btn {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.pb-hero .pb-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 520px;
}

.homepageBannerBtn {
  position: relative;
  z-index: 3;
}
/* -------------------------------------------------------------------------
   Store hero banner (about / manufacturing / contact)
   ------------------------------------------------------------------------- */
.pb-store-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  padding: 4rem 0;
}
.pb-store-hero > img.pb-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pb-hero-inner {
  position: relative;
  z-index: 2;
}
.pb-hero-toplabel {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}
.pb-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 11px;
  padding: 0.35rem 1rem;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pb-hero-title-large {
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.pb-hero-subtitle-large {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
  margin: 0 auto 1.5rem;
}
.pb-hero-btn-white,
.pb-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.pb-hero-btn-white {
  background: #ffffff;
  color: var(--pb-brand-green-dark);
}
.pb-hero-btn-white:hover {
  background: var(--pb-brand-secondary);
  color: #ffffff;
}
.pb-hero-btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
}
.pb-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}
.pb-requirement-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 11px;
  padding: 0.35rem 1rem;
  font-size: 13px;
  font-weight: 500;
}

/* -------------------------------------------------------------------------
   Hero carousel
   ------------------------------------------------------------------------- */
.pb-hero-carousel {
  position: relative;
}
.pb-slides {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.pb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.pb-slide.active {
  opacity: 1;
  visibility: visible;
}
.pb-slide-img {
  position: absolute;
  inset: 0;
}
.pb-slide-img picture,
.pb-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pb-slide .pb-hero-content {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #ffffff;
}
.pb-hero-carousel .pb-slide .pb-hero-content {
  padding-bottom: 4rem;
}
.pb-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 5;
}
.pb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pb-dot.active {
  background: #ffffff;
}
.pb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pb-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.pb-arrow svg {
  width: 20px;
  height: 20px;
}
.pb-arrow-prev {
  left: 1rem;
}
.pb-arrow-next {
  right: 1rem;
}

/* -------------------------------------------------------------------------
   Trust bar / stats
   ------------------------------------------------------------------------- */
.pb-trust-bar {
  background: var(--pb-brand-bg-section);
  border-bottom: 1px solid var(--pb-border);
  padding: 1.5rem 0;
}
.pb-stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
}
.pb-stat-value {
  font-size: 21px;
  font-weight: 800;
  color: black;
  line-height: 1.1;
}
.pb-stat-label {
  font-size: 13px;
  color: var(--pb-muted-foreground);
  margin-top: 0.25rem;
}
.pb-stat-card {
  background: var(--pb-brand-bg);
  border: 1px solid var(--pb-border);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.pb-stat-value-static {
  font-size: 22px;
  font-weight: 800;
  color: black;
  line-height: 1.1;
}
.bg-primary-solid .pb-stat-value-static {
  color: #ffffff;
}
.pb-stat-label-light {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-top: 0.25rem;
}
.pb-stat-icon {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.35rem;
}
.pb-stat-icon svg {
  width: 28px;
  height: 28px;
}
.pb-stat-grid {
  gap: 1rem;
}

/* -------------------------------------------------------------------------
   Audience cards
   ------------------------------------------------------------------------- */
.pb-audience-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .pb-audience-grid {
    grid-template-columns: 1fr;
  }
}
.pb-audience-card {
  padding: 2rem 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pb-audience-title {
  font-size: 1.25rem;
  margin: 0;
  text-align: center;
}
.pb-audience-desc {
  color: var(--pb-muted-foreground);
  margin: 0;
  text-align: center;
}
.pb-btn-inline {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--pb-brand-primary);
  color: #ffffff;
  border-radius: 11px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  align-self: center;
  margin: auto;
}
.pb-btn-inline:hover {
  color: #ffffff;
  background: var(--pb-brand-primary-hover);
}

/* -------------------------------------------------------------------------
   Capabilities
   ------------------------------------------------------------------------- */
.pb-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .pb-cap-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.pb-cap-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.pb-cap-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pb-cap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--pb-brand-secondary) 18%, #ffffff);
  color: var(--pb-brand-primary);
  flex: 0 0 auto;
}
.pb-cap-icon svg {
  width: 20px;
  height: 20px;
}
.pb-cap-text {
  font-weight: 500;
}
.pb-cap-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 0.75rem;
}
.pb-cap-gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 140px;
}
.pb-cap-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-cap-gallery-empty {
  background: var(--pb-brand-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-muted-foreground);
}
.pb-cap-video,
.pb-cap-image {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-cap-video img,
.pb-cap-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-cap-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 13px;
  padding: 0.5rem 0.75rem;
  margin: 0;
}
.pb-video-play {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pb-brand-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 2;
}
.pb-video-play:hover {
  transform: scale(1.08);
  color: var(--pb-brand-green-dark);
}
.pb-video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}
.pb-reel-play {
  width: 84px;
  height: 84px;
}

/* -------------------------------------------------------------------------
   Certifications
   ------------------------------------------------------------------------- */
.pb-cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.pb-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.pb-cert-logo {
  width: 150px;
  height: auto;
  border: 1px solid var(--pb-border);
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pb-cert-logo img {
  max-height: 100%;
  width: auto;
}
.pb-cert-caption {
  font-size: 13px;
  color: var(--pb-muted-foreground);
}
.pb-cert-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.pb-cert-tag {
  border: 1px solid var(--pb-brand-secondary);
  color: var(--pb-brand-primary);
  background: color-mix(in srgb, var(--pb-brand-secondary) 15%, #ffffff);
  border-radius: 11px;
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
}
.pb-cert-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
  .pb-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pb-cert-logos{
      gap: 1rem;
  }
  .pb-section-title, .pb-lead-heading{
      font-size:21px;
  }
}
@media (max-width: 479px) {
  .pb-cert-grid {
    grid-template-columns: 1fr;
  }
}
.pb-cert-card {
  padding: 1.75rem;
  text-align: center;
}
.pb-cert-card .pb-h4 {
  margin-bottom: 0.35rem;
}
.pb-cert-card .pb-muted {
  font-size: 14px;
}
.pb-cert-initial {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--pb-brand-primary);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------------------
   Factory reel
   ------------------------------------------------------------------------- */
.pb-factory-reel .pb-reel-frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  border-radius: 1rem;
  overflow: hidden;
  margin: 1.5rem auto 0;
  max-width: 860px;
  aspect-ratio: 16 / 9;
}
.pb-reel-frame .pb-video-play {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.pb-reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pb-reel-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.pb-reel-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #001524, #016129);
}

/* ponytail: facade link fills frame; non-YouTube URLs keep native new-tab behavior. */
.pb-factory-reel a.pb-reel-frame { display: block; cursor: pointer; text-decoration: none; }
a.pb-cap-video { cursor: pointer; text-decoration: none; }
.pb-reel-frame iframe, .pb-cap-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }


/* -------------------------------------------------------------------------
   Leadership / directors
   ------------------------------------------------------------------------- */
.pb-leadership-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}
@media (max-width: 1023px) {
  .pb-leadership-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 479px) {
  .pb-leadership-grid {
    grid-template-columns: 1fr;
  }
}
.pb-leader-card {
  display: flex;
  flex-direction: column;
}
.pb-leader-photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.pb-leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-leader-photo-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pb-brand-bg-section);
  color: var(--pb-muted-foreground);
}
.pb-leader-photo-empty svg {
  width: 56px;
  height: 56px;
}
.pb-leader-body {
  padding: 1.25rem;
}
.pb-leader-name {
  font-size: 1.125rem;
  margin: 0 0 0.15rem;
}
.pb-leader-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--pb-brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}
.pb-leader-bio {
  font-size: 14px;
  color: var(--pb-muted-foreground);
  margin: 0;
}

/* -------------------------------------------------------------------------
   Partner logos / testimonials
   ------------------------------------------------------------------------- */
.pb-partner-testimonials {
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
}
@media (max-width: 767px) {
  .pb-partner-testimonials {
    grid-template-columns: 1fr;
  }
}
.pb-partner-testimonial {
  padding: 1.5rem;
}
.pb-testimonial-quote {
  font-size: 1.05rem;
  color: var(--pb-brand-text-dark);
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.pb-testimonial-author {
  font-size: 13px;
  color: var(--pb-muted-foreground);
  margin: 0;
}
.pb-partner-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}
.pb-partner-logo {
  max-width: 140px;
  max-height: 64px;
  opacity: 0.75;
  filter: grayscale(1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-partner-logo:hover {
  opacity: 1;
  filter: none;
}
.pb-partner-logo img {
  max-height: 64px;
  width: auto;
}

/* -------------------------------------------------------------------------
   Product categories
   ------------------------------------------------------------------------- */
.pb-cat-grid {
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .pb-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pb-cat-card {
  display: block;
  background: var(--pb-brand-bg);
  border: 1px solid var(--pb-border);
  border-radius: 0.75rem;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}
.pb-cat-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.pb-cat-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pb-brand-bg-section);
}
.pb-cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-cat-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-muted-foreground);
  background: var(--pb-brand-bg-section);
}
.pb-cat-card-placeholder svg {
  width: 48px;
  height: 48px;
}
.pb-cat-card-name {
  font-size: 1.125rem;
  margin:0 1rem 0.1rem;
  color: var(--pb-brand-text-dark);
  text-align:center;
}
.pb-cat-card-count {
  font-size: 13px;
  color: var(--pb-muted-foreground);
  margin: 0 1rem 0.75rem;
  text-align:center;
}

/* -------------------------------------------------------------------------
   Product cards
   ------------------------------------------------------------------------- */
.pb-product-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
  .pb-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pb-cat-card-name {
  font-size: 15px;
}
}
@media (max-width: 479px) {
  .pb-product-grid {
    grid-template-columns: 1fr;
  }
}
.pb-product-card {
  display: flex;
  flex-direction: column;
}
.pb-product-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pb-brand-bg-section);
}
.pb-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1023px) {
  .pb-product-img{
          border: 1px solid black;
  }
}
.pb-product-img-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-muted-foreground);
}
.pb-product-img-empty svg {
  width: 48px;
  height: 48px;
}
.pb-product-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pb-product-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pb-brand-primary);
}
.pb-product-name {
  font-size: 1.125rem;
  margin: 0;
}
.pb-product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--pb-brand-primary);
  margin: 0;
}
.pb-product-short {
  font-size: 14px;
  margin: 0;
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 2;*/
  /*-webkit-box-orient: vertical;*/
  /*overflow: hidden;*/
}
.pb-product-body .btn {
  margin-top: auto;
}

/* -------------------------------------------------------------------------
   Sticky CTA
   ------------------------------------------------------------------------- */
.pb-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--pb-brand-green-dark);
  padding: 0.75rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.pb-sticky-text {
  color: #ffffff;
  font-weight: 600;
  margin-right: 0.5rem;
}
.pb-sticky-text:hover {
  color: var(--pb-brand-secondary);
}
.pb-wa-btn {
  border-color: #25d366 !important;
  color: #ffffff !important;
}
.pb-wa-btn:hover {
  background: #25d366 !important;
  color: #ffffff !important;
}

/* -------------------------------------------------------------------------
   Lead capture form
   ------------------------------------------------------------------------- */
.pb-lead-capture {
  color: #ffffff;
  padding: 4rem 0;
  scroll-margin-top: 76px;
}
.pb-lead-heading {
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 0.5rem;
}
.pb-lead-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.pb-lead-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pb-lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .pb-lead-grid {
    grid-template-columns: 1fr;
  }
}
.pb-lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 10px !important;
}
.pb-lead-field textarea {
    height: 70px;
    min-height: 70px;
    resize: vertical;
}
.pb-lead-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 0.25rem;
}
.pb-req {
  color: #ffb4b4;
}
.pb-lead-form input[type="text"],
.pb-lead-form input[type="email"],
.pb-lead-form input[type="tel"],
.pb-lead-form input[type="number"],
.pb-lead-form select,
.pb-lead-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.pb-lead-form input::placeholder,
.pb-lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.pb-lead-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.pb-lead-form select option {
  color: var(--pb-brand-text-dark);
}
.pb-lead-form input:focus,
.pb-lead-form select:focus,
.pb-lead-form textarea:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}
.pb-lead-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .pb-lead-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pb-captcha-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex: 1;
}
.pb-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.pb-captcha-q {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.pb-captcha-input {
  width: 90px !important;
  max-width: 120px;
  background: #ffffff !important;
  color: var(--pb-brand-text-dark) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
.pb-captcha-input::placeholder {
  color: rgba(0, 0, 0, 0.35) !important;
}
.pb-captcha-refresh {
  background: var(--pb-brand-secondary);
  color: #ffffff;
  border: none;
}
.pb-lead-submit {
  background: var(--pb-brand-primary);
  color: #ffffff;
  border: none;
}
.pb-lead-submit:hover {
  background: var(--pb-brand-primary-hover);
}
.pb-lead-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.25rem;
}
.pb-lead-status {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
}
.pb-lead-status.success {
  background: rgba(255, 255, 255, 0.15);
  color: #d7ffd0;
}
.pb-lead-status.error {
  background: rgba(255, 90, 90, 0.25);
  color: #ffd7d7;
}

/* CF7 forms inside lead capture */
.pb-lead-capture .wpcf7-form {
  max-width: 760px;
  margin: 0 auto;
}
.pb-lead-capture .wpcf7-form input:not([type="submit"]),
.pb-lead-capture .wpcf7-form select,
.pb-lead-capture .wpcf7-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
}
.pb-lead-capture .wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.pb-lead-capture .wpcf7 form.wpcf7-form p {
  margin: 0;
}
.pb-lead-capture .wpcf7-response-output {
  margin: 1em 0 0;
}

/* -------------------------------------------------------------------------
   Catalogue modal / download form
   ------------------------------------------------------------------------- */
.pb-catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.pb-catalog-modal[hidden] {
  display: none;
}
.pb-download-form {
  background: #ffffff;
  color: var(--pb-brand-text);
  border-radius: 1rem;
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.pb-download-form .pb-h3 {
  margin-bottom: 0.25rem;
}
.pb-download-form .pb-muted {
  margin-bottom: 1.25rem;
}
.pb-download-form .pb-lead-label {
  color: var(--pb-brand-text-dark);
}
.pb-download-form input[type="text"],
.pb-download-form input[type="email"],
.pb-download-form input[type="tel"] {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--pb-border);
  color: var(--pb-brand-text-dark);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
}
.pb-download-form input:focus {
  border-color: var(--pb-brand-primary);
}
.pb-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 479px) {
  .pb-download-grid {
    grid-template-columns: 1fr;
  }
}
.pb-download-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media (max-width: 479px) {
  .pb-download-actions {
    flex-direction: column-reverse;
  }
}
.pb-download-actions .btn {
  width: auto;
}
@media (max-width: 479px) {
  .pb-download-actions .btn {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------
   Production lines (manufacturing)
   ------------------------------------------------------------------------- */
.pb-line-tab {
  border: 1px solid var(--pb-border);
  background: var(--pb-brand-bg);
  color: var(--pb-muted-foreground);
  border-radius: 11px;
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pb-line-tab:hover {
  border-color: var(--pb-brand-primary);
  color: var(--pb-brand-primary);
}
.pb-line-tab.active {
  background: var(--pb-brand-primary);
  border-color: var(--pb-brand-primary);
  color: #ffffff;
}
.pb-line-panels {
  padding: 1.5rem;
}
.pb-line-panel {
  display: none;
}
.pb-line-panel.active {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .pb-line-panel.active {
    grid-template-columns: 1fr;
  }
}
.pb-line-media img {
  width: 70%;
  border-radius: 0.75rem;
  object-fit: cover;
  display: block;
}
.pb-line-field-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--pb-muted-foreground);
  margin-bottom: 0.15rem;
}
.pb-tag,
.pb-tag-primary,
.pb-tag-green {
  display: inline-block;
  border-radius: 11px;
  padding: 0.3rem 0.9rem;
  font-size: 12px;
  font-weight: 600;
}
.pb-tag {
  background: var(--pb-brand-bg-section);
  border: 1px solid var(--pb-border);
  color: var(--pb-muted-foreground);
}
.pb-tag-primary {
  background: var(--pb-brand-primary);
  color: #ffffff;
}
.pb-tag-green {
  background: color-mix(in srgb, var(--pb-brand-secondary) 18%, #ffffff);
  color: var(--pb-brand-primary);
  border: 1px solid var(--pb-brand-secondary);
}

/* Quality steps */
.pb-qstep {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0 0.5rem;
}
.pb-qstep-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--pb-brand-secondary) 18%, #ffffff);
  color: var(--pb-brand-primary);
}
.pb-qstep-badge svg {
  width: 24px;
  height: 24px;
}
.pb-qstep-title {
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.pb-qstep-desc {
  font-size: 13px;
  color: var(--pb-muted-foreground);
  margin: 0;
}
.pb-qstep-arrow {
  align-self: center;
  color: var(--pb-brand-primary);
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .pb-qstep-arrow {
    transform: rotate(90deg);
  }
}
.pb-quality-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: left;
  margin-top: 2rem;
  background: #80808029;
  padding: 10px;
}
.pb-check-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
}
.pb-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pb-brand-secondary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex: 0 0 auto;
}

/* Private label */
.pb-space-y-4 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pb-pl-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  align-items: flex-start;
}
.pb-pl-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--pb-brand-secondary) 18%, #ffffff);
  color: var(--pb-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.pb-pl-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.pb-pl-title {
  font-weight: 600;
  margin: 0 0 0.15rem;
}
.pb-pl-card {
  padding: 1.5rem;
}
.pb-pl-row {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--pb-border);
}
.pb-pl-row:last-child {
  border-bottom: 0;
}
.pb-pl-value {
  font-weight: 400;
  font-size: 14px;
  color: var(--pb-brand-text-dark);
}

/* -------------------------------------------------------------------------
   Contact page
   ------------------------------------------------------------------------- */
.pb-promise-card {
  background: var(--pb-brand-bg);
  border: 1px solid var(--pb-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  max-width: 480px;
}
.pb-promise-row {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--pb-border);
}
.pb-promise-row:last-child {
  border-bottom: 0;
}
.pb-promise-value {
  font-weight: 600;
  color: var(--pb-brand-primary);
}
.pb-promise-footer {
  font-size: 13px;
  color: var(--pb-muted-foreground);
  margin: 0.75rem 0 0;
}
.pb-address-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .pb-address-grid {
    grid-template-columns: 1fr;
  }
}
.pb-address-card {
  padding: 1.5rem;
}
.pb-addr-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pb-brand-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.pb-address-card .pb-h4 {
  margin: 0;
}
.pb-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--pb-border);
  border-radius: 11px;
  padding: 0.45rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--pb-brand-text-dark);
  background: var(--pb-brand-bg);
  transition: all 0.3s ease;
}
.pb-chip-btn:hover {
  border-color: var(--pb-brand-primary);
  color: var(--pb-brand-primary);
}

/* -------------------------------------------------------------------------
   Distribution page
   ------------------------------------------------------------------------- */
.pb-dist-section-card {
  padding: 5px;
  margin: 5px;
}
.pb-dist-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--pb-brand-secondary) 18%, #ffffff);
  color: var(--pb-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pb-dist-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.pb-banner-card {
  overflow: hidden;
}
.pb-banner-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.pb-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-banner-media-empty {
  aspect-ratio: 16 / 9;
  background: var(--pb-brand-bg-section);
  color: var(--pb-muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.pb-banner-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.pb-banner-body .pb-h3 {
  margin: 0;
}

/* -------------------------------------------------------------------------
   About page
   ------------------------------------------------------------------------- */
/* .pb-vertical-bar {
  width: 5px;
  align-self: stretch;
  min-height: 70px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--pb-brand-secondary), var(--pb-brand-primary));
} */
.pb-dir-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
@media (max-width: 767px) {
  .pb-dir-grid {
    grid-template-columns: 1fr;
  }
}
.pb-dir-card {
  overflow: hidden;
}
.pb-dir-photo-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.pb-dir-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-dir-photo-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pb-brand-bg-section);
  color: var(--pb-muted-foreground);
  font-weight: 500;
}
.pb-dir-body {
  padding: 1.25rem;
}
.pb-dir-name {
  font-size: 1.125rem;
  margin: 0 0 0.15rem;
}
.pb-dir-role {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pb-brand-primary);
  margin: 0 0 0.5rem;
}
.pb-dir-bio {
  font-size: 14px;
  color: var(--pb-muted-foreground);
  margin: 0;
}
.pb-dir-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pb-quote-card {
  background: var(--pb-brand-green-dark);
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.75rem;
}
.pb-quote-card svg {
  width: 28px;
  height: 28px;
  color: var(--pb-brand-secondary);
  margin-bottom: 0.75rem;
}
.pb-quote-text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.pb-quote-author {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}
.pb-cta-card {
  padding: 1.5rem;
}

/* Timeline */
.pb-tl-col {
  padding-top: 0.3rem;
}
.pb-tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--pb-brand-secondary);
  background: #ffffff;
  display: block;
}
.pb-tl-dot.current {
  background: var(--pb-brand-primary);
  border-color: var(--pb-brand-primary);
}
.pb-tl-year {
  font-weight: 700;
  color: var(--pb-brand-primary);
  margin: 0;
}
.pb-tl-title {
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.pb-tl-desc {
  font-size: 14px;
  color: var(--pb-muted-foreground);
  margin: 0 0 1.25rem;
}

/* MVV */
.pb-mvv-grid {
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .pb-mvv-grid {
    grid-template-columns: 1fr;
  }
}
.pb-mvv-card {
  padding: 1.75rem;
}
.pb-mvv-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--pb-brand-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pb-mvv-icon-wrap svg {
  width: 26px;
  height: 26px;
}
.pb-mvv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}
.pb-mvv-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--pb-muted-foreground);
}
.pb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pb-brand-secondary);
  margin-top: 0.5rem;
  flex: 0 0 auto;
}

/* Location cards */
.pb-loc-card {
  padding: 1.25rem 1.5rem;
}
.pb-loc-title {
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.pb-loc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--pb-brand-secondary) 18%, #ffffff);
  color: var(--pb-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.pb-loc-icon svg {
  width: 20px;
  height: 20px;
}
.pb-loc-row {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--pb-border);
}
.pb-loc-row:last-child {
  border-bottom: 0;
}
.pb-loc-value {
  font-weight: 500;
  color: var(--pb-brand-text-dark);
}
.pb-loc-map {
  flex: 1.1;
  min-height: 360px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--pb-border);
}
.pb-map-frame {
  border: 0;
  display: block;
  min-height: 360px;
}
.pb-map-placeholder {
  height: 100%;
  min-height: 360px;
  background: var(--pb-brand-bg-section);
  color: var(--pb-muted-foreground);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pb-map-placeholder svg {
  width: 40px;
  height: 40px;
}

/* -------------------------------------------------------------------------
   Text block
   ------------------------------------------------------------------------- */
.pb-text-block {
  padding: 3rem 0;
}
.pb-text-block h2,
.pb-text-block h3 {
  margin-top: 1.5em;
}
.pb-text-block ul,
.pb-text-block ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.pb-text-block ul {
  list-style: disc;
}
.pb-text-block ol {
  list-style: decimal;
}
.pb-text-block li {
  margin-bottom: 0.4rem;
}
.pb-text-block a {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Admin (enquiries list table)
   ------------------------------------------------------------------------- */
.pb-status-badge {
  display: inline-block;
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.pb-status-new {
  background: #e8f5e9;
  color: #2e7d32;
}
.pb-status-download {
  background: #e3f2fd;
  color: #1565c0;
}

/* -------------------------------------------------------------------------
   Responsive (global)
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .pb-hero,
  .pb-page-hero,
  .pb-slides,
  .pb-slide .pb-hero-content,
  .pb-hero .pb-hero-content {
    min-height: 700px;
  }
  .pb-section {
    padding: 3rem 0;
  }
  .pb-lead-capture {
    padding: 3rem 0;
  }
  .md\:flex-row {
    flex-direction: column;
  }
  .md\:pr-10 {
    padding-right: 0;
  }
  .md\:pl-10 {
    padding-left: 0;
  }
  .md\:border-r {
    border-right: 0;
  }
}

/* ==========================================================================
   Layout shell — announcement bar, header, nav, mobile sheet, footer
   ========================================================================== */

/* Announcement bar */
.pb-announcement {
  background: #3f6f03;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
  padding: 0.4rem 0;
}
.pb-announcement-inner {
  color: #ffffff;
}

/* Site header */
.pb-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pb-border);
}
.pb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
}
.pb-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pb-brand-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.pb-brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-brand-text-dark);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .pb-brand-name {
    display: none;
  }
}

/* Desktop nav */
.pb-nav-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .pb-nav-desktop {
    display: block;
  }
}
.pb-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.pb-nav-menu li {
  position: relative;
}
.pb-nav-menu > li > a {
  display: inline-block;
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--pb-brand-text);
  text-decoration: none;
}
.pb-nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pb-brand-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.pb-nav-menu > li.current-menu-item:not(.menu-item-has-children) > a::after,
.pb-nav-menu > li.current_page_item:not(.menu-item-has-children) > a::after {
  transform: scaleX(1);
}
.pb-nav-menu > li > a:hover {
  color: var(--pb-brand-primary);
}
.pb-nav-menu > li.current-menu-item:not(.menu-item-has-children) > a,
.pb-nav-menu > li.current_page_item:not(.menu-item-has-children) > a {
  color: var(--pb-brand-primary);
}

/* Dropdown (depth 2) */
.pb-nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid var(--pb-border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: 55;
}
.pb-nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pb-nav-menu .sub-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  color: var(--pb-brand-text);
  border-radius: 0.35rem;
  text-decoration: none;
}
.pb-nav-menu .sub-menu a:hover {
  background: var(--pb-brand-bg-section);
  color: var(--pb-brand-primary);
}
/* ponytail: dropdown chevron — replaces missing icon for menu-item-has-children */
.pb-nav-menu > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pb-nav-chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.pb-nav-menu li:hover > a .pb-nav-chevron {
  transform: rotate(180deg);
}

/* Header right */
.pb-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pb-header-cta {
  display: none;
}
@media (min-width: 768px) {
  .pb-header-cta {
    display: inline-flex;
  }
}
.pb-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--pb-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--pb-brand-text-dark);
}
.pb-nav-toggle svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1024px) {
  .pb-nav-toggle {
    display: none;
  }
}

/* Mobile sheet */
.pb-mobile-sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 288px;
  max-width: 85vw;
  z-index: 90;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pb-mobile-sheet.open {
  transform: translateX(0);
}
.pb-mobile-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--pb-border);
  padding: 0.9rem 1rem;
}
.pb-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--pb-brand-text-dark);
}
.pb-mobile-close svg {
  width: 20px;
  height: 20px;
}
.pb-mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
}
.pb-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pb-mobile-menu li {
  border-bottom: 1px solid var(--pb-border);
}
.pb-mobile-menu li:last-child {
  border-bottom: 0;
}
.pb-mobile-menu > li > a {
  display: block;
  padding: 0.7rem 0.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--pb-brand-text);
}
.pb-mobile-menu .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pb-mobile-menu > li.current-menu-item > a,
.pb-mobile-menu > li.current_page_item > a {
  color: var(--pb-brand-primary);
  font-weight: 600;
}
.pb-mobile-menu .sub-menu {
  list-style: none;
  padding: 0 0 0 1rem;
}
.pb-mobile-menu .sub-menu a {
  display: block;
  padding: 0.5rem 0.25rem;
  font-size: 14px;
  color: var(--pb-muted-foreground);
}
.pb-mobile-cta {
  padding: 1rem 0.25rem 0;
}
.pb-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.pb-sheet-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Main */
.pb-main {
  min-height: 60vh;
}

/* Footer */
.pb-site-footer {
  border-top: 1px solid var(--pb-border);
  background: color-mix(in srgb, var(--pb-brand-bg-section) 50%, #ffffff);
  margin-top: 0;
}
.pb-footer-inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.pb-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .pb-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .pb-footer-grid {
    grid-template-columns: 1fr;
  }
  .pb-line-media img{
      width:100%;
  }
}
.pb-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.pb-footer-brand .pb-brand-name {
  font-size: 1.05rem;
}
.pb-footer-desc {
  font-size: 14px;
  color: var(--pb-muted-foreground);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.pb-footer-socials {
  display: flex;
  gap: 0.6rem;
}
.pb-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--pb-border);
  background: #ffffff;
  color: var(--pb-muted-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.pb-social:hover {
  border-color: var(--pb-brand-primary);
  color: var(--pb-brand-primary);
}
.pb-social svg {
  width: 16px;
  height: 16px;
}
.pb-footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pb-brand-text-dark);
  margin: 0 0 0.9rem;
}
.pb-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pb-footer-menu li a {
  font-size: 14px;
  color: var(--pb-muted-foreground);
}
.pb-footer-menu li a:hover {
  color: var(--pb-brand-text-dark);
  text-decoration: underline;
}
.pb-footer-menu .sub-menu {
  list-style: none;
  padding-left: 0.9rem;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pb-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pb-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--pb-muted-foreground);
}
.pb-footer-contact a {
  color: var(--pb-muted-foreground);
}
.pb-footer-contact a:hover {
  color: var(--pb-brand-primary);
}
.pb-footer-icon {
  width: 16px;
  height: 16px;
  color: var(--pb-brand-primary);
  margin-top: 2px;
  flex: 0 0 auto;
}
.pb-footer-sep {
  border: 0;
  border-top: 1px solid var(--pb-border);
  margin: 2rem 0 1.25rem;
}
.pb-compliance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 12px;
  color: var(--pb-muted-foreground);
  margin-bottom: 1.25rem;
}
.pb-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .pb-footer-bottom {
    flex-direction: row;
  }
}
.pb-footer-bottom p {
  font-size: 12px;
  color: var(--pb-muted-foreground);
  margin: 0;
}
.pb-managed a {
  color: var(--pb-brand-primary);
  font-weight: 600;
}

/* Back to top */
.pb-back-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 45;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--pb-brand-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.pb-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pb-back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== Category page ===== */
.pb-cat-hero {
  position: relative;
  padding: 4rem 0;
  color: #fff;
  background: var(--pb-dark);
}
.pb-cat-hero.cat-hero-dark {
  background-color: #1c1917;
  opacity: 0.45;
}
.pb-cat-hero.cat-hero-light {
  background: var(--pb-section);
  color: var(--pb-foreground);
}
.pb-cat-hero.cat-hero-brand {
  background: var(--pb-brand-primary);
}
.pb-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pb-cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--pb-brand-green-dark);
}
.pb-cat-hero-inner {
  position: relative;
  z-index: 1;
}
.pb-cat-hero-sub {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem;
}
.pb-cat-hero-light .pb-cat-hero-sub {
  color: white;
}
.pb-cat-hero-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: white;
}
.pb-cat-hero-desc {
  max-width: 46rem;
  margin: 0 auto;
  opacity: 0.9;
  font-size: 1rem;
  color: white;
}

/* Category content split */
.pb-cat-split {
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .pb-cat-split {
    grid-template-columns: 1fr 1fr;
  }
}
.pb-cat-split-media img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}
.pb-cat-split-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pb-section);
  border-radius: 1rem;
  color: var(--pb-muted-foreground);
}
.pb-cat-split-placeholder svg {
  width: 56px;
  height: 56px;
}
.pb-cat-split-body h2 {
  margin-bottom: 1rem;
}
.pb-cat-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.pb-cat-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 15px;
}
.pb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pb-brand-primary);
  flex: none;
}

/* Product grids */
.pb-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.pb-product-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.pb-product-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Category chips */
.pb-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pb-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--pb-border);
  color: var(--pb-foreground);
  background: #fff;
  transition: all 0.2s;
}
.pb-chip:hover {
  border-color: var(--pb-brand-primary);
  color: var(--pb-brand-primary);
}
.pb-chip.active {
  background: var(--pb-brand-primary);
  border-color: var(--pb-brand-primary);
  color: #fff;
}

/* Catalogue category info strips */
.pb-cat-info-strip {
  background: var(--pb-section);
  border-radius: 1rem;
  padding: 1.75rem;
}
.pb-cat-info-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.pb-cat-info-body .pb-muted {
  font-size: 14px;
  line-height: 1.6;
}

/* Catalogue packaging options */
.pb-packaging-section {
  background: var(--pb-section);
}
.pb-packaging-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pb-packaging-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pb-packaging-card {
  position: relative;
  background: var(--pb-background);
  border: 1px solid var(--pb-border);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
}
.pb-packaging-card.highlighted {
  border: 2px solid var(--pb-brand-primary);
}
.pb-packaging-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pb-brand-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pb-packaging-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--pb-section);
  color: var(--pb-brand-primary);
}
.pb-packaging-icon svg {
  width: 26px;
  height: 26px;
}
.pb-packaging-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.pb-packaging-card .pb-muted {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.pb-packaging-card .pb-tag {
  display: inline-block;
}

/* Process steps — port of Next.js ProcessSection / ProductProcessBlock
   (grid-cols-2 md:grid-cols-3 lg:grid-cols-6, tinted number circles,
   desktop-only connector line) */
.pb-process-section .pb-container-process {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pb-process-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.pb-process-heading {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
}
@media (min-width: 640px) {
  .pb-process-heading {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) {
  .pb-process-heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.pb-process-subtitle {
  color: var(--pb-muted-foreground);
  font-size: 0.875rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
@media (min-width: 640px) {
  .pb-process-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .pb-process-subtitle {
    margin-bottom: 3rem;
  }
}
.pb-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .pb-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .pb-process-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.pb-process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pb-process-step:not(:last-child)::after {
  content: "";
  display: none;
  position: absolute;
  top: 20px;
  left: 60%;
  width: 80%;
  height: 1px;
  background: var(--pb-border);
}
@media (min-width: 1024px) {
  .pb-process-step:not(:last-child)::after {
    display: block;
  }
}
.pb-process-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(61, 111, 8, 0.1);
  color: var(--pb-brand-primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0.75rem;
}
.pb-process-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.pb-process-desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--pb-muted-foreground);
}

/* Infographic */
.pb-infographic {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.pb-infographic img,
.pb-infographic .pb-video-embed {
  width: 100%;
  display: block;
}
.pb-video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.pb-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gallery + lightbox */
.pb-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.pb-gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: zoom-in;
  background: none;
}
.pb-gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.pb-gallery-item:hover img {
  transform: scale(1.05);
}
.pb-gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s;
}
.pb-gallery-item:hover .pb-gallery-zoom {
  opacity: 1;
}
.pb-gallery-zoom svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.pb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pb-lightbox[hidden] {
  display: none;
}
.pb-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 0.5rem;
}
.pb-lightbox-close,
.pb-lightbox-prev,
.pb-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.pb-lightbox-close {
  top: 1rem;
  right: 1rem;
}
.pb-lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.pb-lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.pb-lightbox-close:hover,
.pb-lightbox-prev:hover,
.pb-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.pb-lightbox svg {
  width: 22px;
  height: 22px;
}
.pb-lightbox-count {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
}

/* FAQ accordion */
.pb-faq {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.pb-faq-item {
  border: 1px solid var(--pb-border);
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}
.pb-faq-item.open {
  border-color: var(--pb-brand-primary);
}
.pb-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--pb-foreground);
  font-family: inherit;
}
.pb-faq-chevron {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--pb-brand-primary);
  transition: transform 0.3s;
}
.pb-faq-item.open .pb-faq-chevron {
  transform: rotate(180deg);
}
.pb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
  font-size: 14px;
  color: var(--pb-muted-foreground);
  line-height: 1.6;
}
.pb-faq-item.open .pb-faq-a {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

/* ===== Product single ===== */
.pb-product-single .pb-product-hero {
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px) {
  .pb-product-single .pb-product-hero {
    grid-template-columns: 1fr 1.1fr;
  }
}
.pb-product-hero-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.pb-product-hero-empty {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 1rem;
}
.pb-product-cat-link {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pb-brand-primary);
}
.pb-product-hero-short {
  font-size: 1.1rem;
  font-weight: 500;
}
.pb-product-hero-desc {
  font-size: 15px;
  color: var(--pb-muted-foreground);
}
.pb-product-hero-desc p:first-child {
  margin-top: 0;
}

/* ===== Blog archive ===== */
.pb-blog-search-wrap {
  position: relative;
  max-width: 28rem;
}
.pb-blog-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pb-muted-foreground);
  display: flex;
}
.pb-blog-search-icon svg {
  width: 16px;
  height: 16px;
}
.pb-blog-search input[type="search"] {
  width: 100%;
  padding: 0.7rem 0.9rem 0.7rem 2.5rem;
  border: 1px solid var(--pb-border);
  border-radius: 0.5rem;
  font-size: 14px;
  font-family: inherit;
}
.pb-blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.pb-blog-tags-icon {
  color: var(--pb-muted-foreground);
  display: flex;
  margin-right: 0.25rem;
}
.pb-blog-tags-icon svg {
  width: 16px;
  height: 16px;
}
.pb-blog-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pb-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .pb-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pb-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.pb-blog-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pb-section);
}
.pb-blog-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pb-blog-card:hover .pb-blog-cover {
  transform: scale(1.05);
}
.pb-blog-cover-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-muted-foreground);
}
.pb-blog-cover-empty svg {
  width: 44px;
  height: 44px;
}
.pb-blog-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pb-blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pb-blog-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--pb-brand-secondary);
  color: var(--pb-brand-primary);
  font-size: 11px;
  font-weight: 600;
}
.pb-blog-tag-outline {
  background: transparent;
  border: 1px solid var(--pb-border);
  color: var(--pb-brand-primary);
  text-decoration: none;
}
.pb-blog-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.pb-blog-card:hover .pb-blog-title {
  color: var(--pb-brand-primary);
}
.pb-blog-excerpt {
  font-size: 13px;
  margin: 0;
}
.pb-blog-meta {
  margin-top: auto;
}
.pb-blog-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  color: var(--pb-muted-foreground);
}
.pb-blog-date svg {
  width: 13px;
  height: 13px;
}
.pb-blog-empty {
  text-align: center;
  padding: 4rem 0;
}
.pb-blog-empty .btn {
  margin-top: 1rem;
}

/* ===== Blog single ===== */
.pb-blog-single-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pb-blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  color: var(--pb-muted-foreground);
}
.pb-blog-single-meta svg {
  width: 15px;
  height: 15px;
  color: var(--pb-brand-primary);
}
.pb-blog-meta-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--pb-foreground);
}
.pb-blog-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(61, 111, 8, 0.12);
  color: var(--pb-brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.pb-blog-meta-date,
.pb-blog-meta-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pb-blog-single-cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.pb-blog-single-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .pb-blog-single-grid {
    grid-template-columns: 220px 1fr;
  }
}
.pb-blog-toc {
  display: none;
}
@media (min-width: 1024px) {
  .pb-blog-toc {
    display: block;
  }
}
.pb-blog-toc {
  position: sticky;
  top: 6rem;
  align-self: start;
}
.pb-blog-toc-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pb-muted-foreground);
  margin-bottom: 0.75rem;
}
.pb-blog-toc nav {
  display: grid;
  gap: 0.4rem;
}
.pb-blog-toc-link {
  display: block;
  font-size: 13px;
  text-decoration: none;
  color: var(--pb-muted-foreground);
  transition: color 0.2s;
}
.pb-blog-toc-link:hover {
  color: var(--pb-brand-primary);
}
.pb-blog-toc-lv3 {
  padding-left: 1rem;
}
.pb-blog-toc-mobile {
  display: block;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--pb-border);
  border-radius: 0.5rem;
  background: var(--pb-section);
}
@media (min-width: 1024px) {
  .pb-blog-toc-mobile {
    display: none;
  }
}
.pb-blog-single-excerpt {
  border-top: 1px solid rgba(61, 111, 8, 0.15);
  border-bottom: 1px solid rgba(61, 111, 8, 0.15);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
.pb-blog-single-excerpt p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--pb-muted-foreground);
  font-weight: 500;
  margin: 0;
}

/* Prose */
.pb-prose {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pb-foreground);
}
.pb-prose h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  scroll-margin-top: 6rem;
}
.pb-prose h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  scroll-margin-top: 6rem;
}
.pb-prose p {
  margin: 0 0 1rem;
}
.pb-prose a {
  color: var(--pb-brand-primary);
}
.pb-prose img {
  max-width: 100%;
  border-radius: 0.5rem;
}
.pb-prose blockquote {
  border-left: 3px solid var(--pb-brand-primary);
  padding-left: 1rem;
  color: var(--pb-muted-foreground);
  margin: 1.5rem 0;
}
.pb-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.pb-prose th {
  border: 1px solid var(--pb-border);
  background: var(--pb-section);
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 14px;
}
.pb-prose td {
  border: 1px solid var(--pb-border);
  padding: 0.5rem 0.75rem;
  font-size: 14px;
}
.pb-prose iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--pb-border);
  border-radius: 0.5rem;
}
.pb-prose pre {
  background: var(--pb-section);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
}
.pb-prose code {
  background: var(--pb-section);
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 14px;
}
.pb-prose pre code {
  background: transparent;
  padding: 0;
}
.pb-prose ul,
.pb-prose ol {
  margin: 0 0 1rem 1.25rem;
}

/* Tags + share */
.pb-blog-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pb-border);
}
.pb-blog-single-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pb-border);
}
.pb-blog-share-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--pb-muted-foreground);
}
.pb-blog-share-label svg {
  width: 16px;
  height: 16px;
}
.pb-share-links {
  display: flex;
  gap: 0.5rem;
}
.pb-share-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--pb-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pb-muted-foreground);
  transition: all 0.2s;
}
.pb-share-link:hover {
  background: var(--pb-brand-primary);
  border-color: var(--pb-brand-primary);
  color: #fff;
}
.pb-share-icon {
  width: 16px;
  height: 16px;
}
.pb-blog-related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pb-border);
}
.pb-container-article {
  max-width: 74rem;
}

/* ===== CF7 (Contact Form 7) lead form styling ===== */
.pb-lead-capture .wpcf7 {
  max-width: 100%;
}
.pb-lead-capture .wpcf7-form p {
  margin: 0;
}
.pb-lead-capture .wpcf7-form .pb-lead-grid .pb-lead-field p {
  margin: 0;
}
.pb-lead-capture .wpcf7 input[type="text"],
.pb-lead-capture .wpcf7 input[type="email"],
.pb-lead-capture .wpcf7 input[type="tel"],
.pb-lead-capture .wpcf7 input[type="number"],
.pb-lead-capture .wpcf7 select,
.pb-lead-capture .wpcf7 textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  box-sizing: border-box;
}
.pb-lead-capture .wpcf7 input::placeholder,
.pb-lead-capture .wpcf7 textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.pb-lead-capture .wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.2rem;
  color: #ffffff;
}
.pb-lead-capture .wpcf7 select option {
  color: #001524;
  background: #ffffff;
}
.pb-lead-capture .wpcf7 input:focus,
.pb-lead-capture .wpcf7 select:focus,
.pb-lead-capture .wpcf7 textarea:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}
.pb-lead-capture .wpcf7 textarea {
  min-height: 20px;
  resize: vertical;
}
.pb-lead-capture .wpcf7 .pb-lead-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1.25rem;
}
.pb-lead-capture .wpcf7 .pb-lead-submit {
  background: var(--pb-brand-primary);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: background 0.3s ease;
}
.pb-lead-capture .wpcf7 .pb-lead-submit:hover {
  background: var(--pb-brand-primary-hover);
}
.pb-lead-capture .wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ffd7d7;
  margin-top: 0.25rem;
}
.pb-lead-capture .wpcf7 .wpcf7-response-output {
  margin-top: 1.25rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.pb-lead-capture .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #a7e0a7;
  color: #eaffea;
}
.pb-lead-capture .wpcf7 .wpcf7-response-output.wpcf7-validation-errors,
.pb-lead-capture .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  border-color: #ffd7d7;
  color: #fff0f0;
}
.pb-lead-capture .wpcf7 .screen-reader-response ul {
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 12px;
  color: #ffd7d7;
}

/* ===== Global enquiry modal ===== */
.pb-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pb-modal[hidden] {
  display: none;
}
.pb-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 21, 36, 0.6);
  backdrop-filter: blur(2px);
}
.pb-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.pb-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--pb-border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--pb-brand-text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pb-modal-close svg {
  width: 18px;
  height: 18px;
}
.pb-modal-title {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}
.pb-modal-sub {
  margin: 0 0 1.25rem;
  color: var(--pb-muted-foreground);
  font-size: 14px;
}
.pb-modal-body .pb-lead-form {
  max-width: 100%;
}
.pb-modal-body .pb-lead-form input[type="text"],
.pb-modal-body .pb-lead-form input[type="email"],
.pb-modal-body .pb-lead-form input[type="tel"],
.pb-modal-body .pb-lead-form input[type="number"],
.pb-modal-body .pb-lead-form select,
.pb-modal-body .pb-lead-form textarea {
  background: #ffffff;
  border-color: var(--pb-border);
  color: var(--pb-brand-text-dark);
}
.pb-modal-body .pb-lead-form input::placeholder,
.pb-modal-body .pb-lead-form textarea::placeholder {
  color: var(--pb-muted-foreground);
}
.pb-modal-body .pb-lead-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23001524' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.pb-modal-body .pb-lead-form select option {
  color: var(--pb-brand-text-dark);
}
.pb-modal-body .pb-lead-form input:focus,
.pb-modal-body .pb-lead-form select:focus,
.pb-modal-body .pb-lead-form textarea:focus {
  border-color: var(--pb-brand-primary);
  background: #ffffff;
}
.pb-modal-body .pb-lead-label {
  color: var(--pb-brand-text-dark);
}
.pb-modal-body .pb-captcha-q {
  color: var(--pb-brand-text-dark);
}
.pb-modal-body .wpcf7-form-control:not([type="submit"]):not([type="button"]),
.pb-modal-body .wpcf7 input[type="text"],
.pb-modal-body .wpcf7 input[type="email"],
.pb-modal-body .wpcf7 input[type="tel"],
.pb-modal-body .wpcf7 input[type="number"],
.pb-modal-body .wpcf7 select,
.pb-modal-body .wpcf7 textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--pb-border);
  color: var(--pb-brand-text-dark);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.pb-modal-body .wpcf7 input::placeholder,
.pb-modal-body .wpcf7 textarea::placeholder {
  color: var(--pb-muted-foreground);
}
.pb-modal-body .wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23001524' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.2rem;
}
.pb-modal-body .wpcf7 select option {
  color: var(--pb-brand-text-dark);
}
.pb-modal-body .wpcf7 input:focus,
.pb-modal-body .wpcf7 select:focus,
.pb-modal-body .wpcf7 textarea:focus {
  border-color: var(--pb-brand-primary);
}
.pb-modal-body .wpcf7 textarea {
  min-height: 80px;
  resize: vertical;
}
.pb-modal-body .wpcf7 .pb-lead-actions {
  margin-top: 1.25rem;
}

/* ===== Core WordPress content classes ===== */
.alignleft {
  float: left;
  margin: 0.5rem 1.25rem 1rem 0;
}
.alignright {
  float: right;
  margin: 0.5rem 0 1rem 1.25rem;
}
.aligncenter {
  display: block;
  margin: 1rem auto;
}
.alignnone {
  margin: 1rem 0;
}
.wp-caption {
  max-width: 100%;
  margin: 1rem 0;
}
.wp-caption-text {
  font-size: 13px;
  color: var(--pb-muted-foreground);
  text-align: center;
  padding: 0.4rem 0 0;
}
.gallery-caption {
  font-size: 13px;
  color: var(--pb-muted-foreground);
}
.sticky .pb-page-title::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.4em;
  border-radius: 50%;
  background: var(--pb-brand-accent);
}
.bypostauthor .comment-author {
  font-weight: 700;
}
.pb-page-links {
  clear: both;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pb-page-links .post-page-numbers {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--pb-border);
  border-radius: 6px;
  color: var(--pb-brand-text);
  text-decoration: none;
}
.pb-page-links .post-page-numbers.current {
  background: var(--pb-brand-primary);
  color: #ffffff;
  border-color: var(--pb-brand-primary);
}

/* ===== Cookie consent banner ===== */
.pb-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: var(--pb-brand-green-dark);
  color: #ffffff;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}
.pb-cookie-banner[hidden] {
  display: none;
}
.pb-cookie-inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.pb-cookie-text {
  font-size: 13px;
  line-height: 1.6;
  color: white;
  flex: 1;
  min-width: 220px;
}
.pb-cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex: none;
}
.pb-cookie-actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== Mobile bottom nav ===== */
.pb-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  background: #ffffff;
  border-top: 1px solid var(--pb-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.pb-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0.5rem 0;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--pb-muted-foreground);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pb-bottom-nav-item svg {
  width: 21px;
  height: 21px;
}
.pb-bottom-nav-item:active,
.pb-bottom-nav-item.current {
  color: var(--pb-brand-primary);
}
@media (max-width: 767px) {
  .pb-bottom-nav {
    display: grid;
  }
  body {
    padding-bottom: 64px;
  }
  /*.pb-sticky-cta {*/
  /*  bottom: 64px;*/
  /*}*/
  .pb-cookie-banner {
    bottom: 64px;
  }
  .pb-back-to-top {
    bottom: 4.5rem;
  }
  .pb-modal-dialog {
    padding: 1.5rem 1.25rem;
  }
}
.pb-product-cta {
  padding-left: 48px;
  padding-right: 48px;
  font-size: 1.135rem;
}
@media (max-width: 1023px) {
.pb-product-cta {
  padding-left: 0;
  padding-right: 0;
}
.pb-container-grid {
  grid-template-columns: 1fr !important;
}
}

.pb-container-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

p{
    font-size: 13px;
}

.pb-flex span.pb-muted, span.pb-loc-value {
    font-size: 13px;
}
/* ponytail: play icon was absolute with no position, so it fell below the image; center it. Button reset keeps the clickable frame looking identical. */
button.pb-reel-frame {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}
.pb-reel-frame .pb-video-play {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.pb-reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}