/* ============================================================
   Benstar Knits — Design System
   ============================================================ */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --bsk-navy: #1B2A5B;
  --bsk-blue: #3340D1;
  --bsk-green: #2ECC40;
  --bsk-green-hover: #27ae36;
  --bsk-white: #FFFFFF;
  --bsk-light-gray: #F5F7FA;
  --bsk-gray: #E8ECF1;
  --bsk-gold: #F5A623;
  --bsk-dark: #222222;
  --bsk-text: #555555;
  --bsk-text-light: #888888;
  --bsk-border: #E0E0E0;

  /* Typography */
  --bsk-font-heading: 'Poppins', sans-serif;
  --bsk-font-body: 'Inter', sans-serif;

  /* Spacing */
  --bsk-section-padding: 80px;
  --bsk-container-width: 1200px;
  --bsk-container-padding: 20px;

  /* Transitions */
  --bsk-transition: all 0.3s ease;

  /* Shadows */
  --bsk-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --bsk-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --bsk-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* --- Global Reset Overrides --- */
body {
  margin: 0;
  padding: 0;
  font-family: var(--bsk-font-body);
  color: var(--bsk-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bsk-font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--bsk-navy);
  margin-top: 0;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bsk-text);
  margin-top: 0;
}

a {
  color: var(--bsk-blue);
  text-decoration: none;
  transition: var(--bsk-transition);
}

a:hover {
  color: var(--bsk-navy);
}

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

/* --- Container --- */
.bsk-container {
  width: 100%;
  max-width: var(--bsk-container-width);
  margin: 0 auto;
  padding: 0 var(--bsk-container-padding);
}

/* --- Section --- */
.bsk-section {
  padding: var(--bsk-section-padding) 0;
}

.bsk-section--gray {
  background-color: var(--bsk-light-gray);
}

.bsk-section--navy {
  background-color: var(--bsk-navy);
  color: var(--bsk-white);
}

.bsk-section--navy h2,
.bsk-section--navy h3,
.bsk-section--navy h4,
.bsk-section--navy p {
  color: var(--bsk-white);
}

/* --- Section Label --- */
.bsk-section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bsk-blue);
  margin-bottom: 10px;
  display: block;
  font-family: var(--bsk-font-body);
}

.bsk-section--navy .bsk-section-label {
  color: var(--bsk-gold);
}

/* --- Section Heading --- */
.bsk-section-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--bsk-navy);
  margin-bottom: 20px;
  font-family: var(--bsk-font-heading);
}

.bsk-section--navy .bsk-section-heading {
  color: var(--bsk-white);
}

.bsk-section-heading span {
  color: var(--bsk-blue);
}

/* --- Buttons --- */
.bsk-btn {
  display: inline-block;
  font-family: var(--bsk-font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--bsk-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.bsk-btn--primary {
  background-color: var(--bsk-blue);
  color: var(--bsk-white);
}

.bsk-btn--primary:hover {
  background-color: var(--bsk-navy);
  color: var(--bsk-white);
}

.bsk-btn--green {
  background-color: var(--bsk-green);
  color: var(--bsk-white);
}

.bsk-btn--green:hover {
  background-color: var(--bsk-green-hover);
  color: var(--bsk-white);
}

.bsk-btn--outline {
  background-color: transparent;
  color: var(--bsk-white);
  border: 2px solid var(--bsk-white);
}

.bsk-btn--outline:hover {
  background-color: var(--bsk-white);
  color: var(--bsk-navy);
}

.bsk-btn--outline-dark {
  background-color: transparent;
  color: var(--bsk-navy);
  border: 2px solid var(--bsk-navy);
}

.bsk-btn--outline-dark:hover {
  background-color: var(--bsk-navy);
  color: var(--bsk-white);
}

.bsk-btn--link {
  background: none;
  padding: 0;
  color: var(--bsk-blue);
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bsk-btn--link:hover {
  color: var(--bsk-navy);
  gap: 10px;
}

.bsk-btn--link::after {
  content: '\2192';
  transition: var(--bsk-transition);
}

/* --- Grid System --- */
.bsk-grid {
  display: grid;
  gap: 30px;
}

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

.bsk-flex {
  display: flex;
  gap: 30px;
}

.bsk-flex--center {
  align-items: center;
}

.bsk-flex--between {
  justify-content: space-between;
}

.bsk-flex--wrap {
  flex-wrap: wrap;
}

/* --- Text Utilities --- */
.bsk-text-center { text-align: center; }
.bsk-text-left { text-align: left; }
.bsk-text-white { color: var(--bsk-white) !important; }
.bsk-text-navy { color: var(--bsk-navy); }
.bsk-text-blue { color: var(--bsk-blue); }

.bsk-mb-0 { margin-bottom: 0; }
.bsk-mb-10 { margin-bottom: 10px; }
.bsk-mb-20 { margin-bottom: 20px; }
.bsk-mb-30 { margin-bottom: 30px; }
.bsk-mb-40 { margin-bottom: 40px; }
.bsk-mb-60 { margin-bottom: 60px; }

/* ============================================================
   Header Styles
   ============================================================ */
.bsk-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 14px 0;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--bsk-transition);
}

body.admin-bar .bsk-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .bsk-header {
    top: 46px;
  }
}

.bsk-header__container {
  max-width: var(--bsk-container-width);
  margin: 0 auto;
  padding: 0 var(--bsk-container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bsk-header__logo {
  display: flex;
  align-items: center;
}

.bsk-header__logo img {
  height: 48px;
  width: auto;
  transition: var(--bsk-transition);
  display: block;
}

.bsk-header__nav {
  display: flex;
  align-items: center;
}

.bsk-header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.bsk-header__nav ul li {
  position: relative;
}

.bsk-header__nav ul li a {
  font-family: var(--bsk-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bsk-navy);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--bsk-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bsk-header__nav ul li a:hover,
.bsk-header__nav ul li.current-menu-item > a,
.bsk-header__nav ul li.current-menu-ancestor > a {
  color: var(--bsk-gold);
}

/* Dropdown indicator arrow */
.bsk-dropdown-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.bsk-header__nav ul li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  margin-left: 2px;
}

.bsk-header__nav ul li.menu-item-has-children > a:has(.bsk-dropdown-arrow)::after {
  display: none;
}

.bsk-header__nav ul li.menu-item-has-children:hover > a::after {
  transform: rotate(225deg) translateY(-2px);
}

.bsk-header__nav ul li.menu-item-has-children:hover .bsk-dropdown-arrow,
.bsk-header__nav ul li.menu-item-has-children:focus-within .bsk-dropdown-arrow {
  transform: rotate(180deg);
}

/* Sub-menu container */
.bsk-header__nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  pointer-events: none;
}

/* Hover bridge */
.bsk-header__nav .sub-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.bsk-header__nav ul li.menu-item-has-children:hover > .sub-menu,
.bsk-header__nav ul li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bsk-header__nav ul.sub-menu li {
  width: 100%;
}

.bsk-header__nav ul.sub-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  border-radius: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bsk-header__nav ul.sub-menu li a:hover {
  background: #f8fafc;
  color: var(--bsk-blue);
  padding-left: 24px;
}

.bsk-header__nav ul.sub-menu li a::after {
  display: none !important;
}

/* Mega-menu dropdown for Products */
.bsk-header__nav .bsk-mega-dropdown {
  left: 50%;
  transform: translateX(-35%) translateY(10px);
  width: 840px;
  max-width: 90vw;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.bsk-header__nav ul li.bsk-menu-item--mega:hover > .bsk-mega-dropdown,
.bsk-header__nav ul li.bsk-menu-item--mega:focus-within > .bsk-mega-dropdown {
  transform: translateX(-35%) translateY(0);
}

.bsk-mega-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 28px;
}

.bsk-mega-dropdown__col {
  display: flex;
  flex-direction: column;
}

.bsk-mega-dropdown__heading {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.bsk-mega-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bsk-mega-dropdown__list li {
  width: 100%;
}

.bsk-mega-dropdown__list li a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s ease;
  line-height: 1.4;
  white-space: normal;
}

.bsk-mega-dropdown__list li a:hover {
  color: var(--bsk-blue);
  transform: translateX(3px);
  background: transparent;
}

.bsk-mega-dropdown__list li a::after {
  display: none !important;
}

.bsk-mega-dropdown__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.bsk-mega-dropdown__note {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.bsk-mega-dropdown__view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--bsk-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.bsk-mega-dropdown__view-all:hover {
  color: #1B2A5B;
  text-decoration: underline;
}

.bsk-submenu-toggle {
  display: none;
}

.bsk-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bsk-header__cta .bsk-btn--green {
  font-size: 13px;
  padding: 12px 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: var(--bsk-green);
  color: #ffffff;
  border-radius: 6px;
}

.bsk-header__cta .bsk-btn--green:hover {
  background-color: var(--bsk-green-hover);
}

/* Mobile Menu Toggle */
.bsk-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 10001;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.bsk-header__toggle:hover {
  background-color: rgba(27, 42, 91, 0.06);
}

.bsk-header__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--bsk-navy) !important;
  border-radius: 3px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.bsk-header--scrolled .bsk-header__toggle span {
  background-color: var(--bsk-navy) !important;
}

/* Active / Open state: transforms into an X with crisp white bars for contrast against navy drawer */
.bsk-header__toggle.active {
  background-color: rgba(255, 255, 255, 0.12);
}

.bsk-header__toggle.active span {
  background-color: #ffffff !important;
}

.bsk-header__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.bsk-header__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.bsk-header__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.bsk-menu-open {
  overflow: hidden;
}

/* ============================================================
   Footer Styles
   ============================================================ */
.bsk-footer {
  background-color: var(--bsk-navy);
  color: var(--bsk-white);
}

.bsk-footer__main {
  padding: 60px 0 40px;
}

.bsk-footer__container {
  max-width: var(--bsk-container-width);
  margin: 0 auto;
  padding: 0 var(--bsk-container-padding);
}

.bsk-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.bsk-footer__brand-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.bsk-footer__brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 300px;
}

.bsk-footer__social {
  display: flex;
  gap: 12px;
}

.bsk-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bsk-white);
  font-size: 14px;
  transition: var(--bsk-transition);
  text-decoration: none;
}

.bsk-footer__social a:hover {
  background: var(--bsk-blue);
  color: var(--bsk-white);
}

.bsk-footer__col h4 {
  font-family: var(--bsk-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--bsk-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.bsk-footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--bsk-gold);
}

.bsk-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bsk-footer__col ul li {
  margin-bottom: 12px;
}

.bsk-footer__col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--bsk-transition);
  text-decoration: none;
}

.bsk-footer__col ul li a:hover {
  color: var(--bsk-white);
  padding-left: 5px;
}

.bsk-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.bsk-footer__contact-item i {
  color: var(--bsk-gold);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.bsk-footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.bsk-footer__contact-item a:hover {
  color: var(--bsk-white);
}

.bsk-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.bsk-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bsk-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ============================================================
   Elementor Section Width & Spacing Normalize
   ============================================================ */
.elementor-section {
  width: 100% !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.elementor-section .elementor-widget-wrap {
  padding: 0 !important;
}

.elementor-widget-container > .bsk-hero,
.elementor-widget-container > .bsk-about,
.elementor-widget-container > .bsk-clients,
.elementor-widget-container > .bsk-products,
.elementor-widget-container > .bsk-capabilities,
.elementor-widget-container > .bsk-trust,
.elementor-widget-container > .bsk-testimonials,
.elementor-widget-container > .bsk-blog,
.elementor-widget-container > .bsk-cta {
  width: 100%;
  margin: 0;
}

/* ============================================================
   Hero Section with Dynamic Background Slider
   ============================================================ */
.bsk-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 95px 0 85px;
  overflow: hidden;
  width: 100%;
  background-color: #0f172a;
}

.bsk-hero__slides {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bsk-hero__slide {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.5s ease-in-out, transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.bsk-hero__slide.active {
  opacity: 0.65;
  transform: scale(1);
  z-index: 1;
}

/* Dual Layer Overlay matching benstarknits.com */
.bsk-hero__overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1;
  pointer-events: none;
}

.bsk-hero__overlay-radial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 35%, rgba(15, 23, 42, 0.3) 60%, transparent 80%);
  z-index: 2;
  pointer-events: none;
}

.bsk-hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.bsk-hero__title {
  font-family: var(--bsk-font-heading);
  line-height: 1.15;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.bsk-hero__title .title-accent,
.bsk-hero__title-accent {
  display: block;
  color: var(--bsk-gold);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bsk-hero__title .title-white,
.bsk-hero__title-main {
  display: block;
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.bsk-hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 580px;
}

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

.bsk-hero__buttons .bsk-btn--outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
}

.bsk-hero__buttons .bsk-btn--outline:hover {
  background-color: #ffffff;
  color: var(--bsk-navy);
}

.bsk-hero__buttons .bsk-btn--blue {
  background-color: var(--bsk-blue);
  color: #ffffff;
}

.bsk-hero__buttons .bsk-btn--blue:hover {
  background-color: var(--bsk-navy);
}

/* ============================================================
   About / Intro Section
   ============================================================ */
.bsk-about {
  padding: 90px 0;
  background-color: #ffffff;
}

.bsk-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bsk-about__images {
  position: relative;
}

.bsk-about__images img {
  border-radius: 12px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.bsk-about__content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.bsk-about__content h2 span {
  color: var(--bsk-blue);
}

.bsk-about__text {
  font-size: 15px;
  color: var(--bsk-text);
  line-height: 1.8;
  margin-bottom: 30px;
}

.bsk-about__stats {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.bsk-about__stat {
  text-align: left;
  flex: 0 0 auto;
}

.bsk-about__stat-number {
  font-family: var(--bsk-font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--bsk-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.bsk-about__stat-number span {
  color: var(--bsk-blue);
}

.bsk-about__stat-divider {
  width: 40px;
  height: 3px;
  background-color: var(--bsk-gold);
  margin: 8px 0;
}

.bsk-about__stat-label {
  font-size: 14px;
  color: var(--bsk-text);
  font-weight: 500;
}

/* ============================================================
   Trusted By / Client Logos
   ============================================================ */
/* ============================================================
   SECTION 3: Trusted By / Client Logos Marquee
   ============================================================ */
.bsk-clients {
  padding: 40px 0 50px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.bsk-clients__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.bsk-clients__header {
  text-align: center;
  margin-bottom: 32px;
}

.bsk-clients__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #14b8a6;
  margin: 0;
}

/* Marquee Container */
.bsk-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Gradient edge masks */
.bsk-marquee__mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  pointer-events: none;
  z-index: 5;
}

.bsk-marquee__mask--left {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.bsk-marquee__mask--right {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

/* Moving Track */
.bsk-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: bskMarqueeScroll var(--bsk-marquee-speed, 30s) linear infinite;
}

.bsk-marquee--pause:hover .bsk-marquee__track {
  animation-play-state: paused;
}

/* Individual Content Loop Group */
.bsk-marquee__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 80px;
  padding-right: 80px;
}

/* Individual Item */
.bsk-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.bsk-marquee__item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.bsk-marquee__item img {
  height: 80px;
  max-height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.bsk-marquee__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Continuous Infinite Keyframes */
@keyframes bskMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ============================================================
   Product Range Section with Category Filter
   ============================================================ */
.bsk-products {
  padding: 90px 0;
  background-color: #ffffff;
}

.bsk-products__header {
  margin-bottom: 35px;
}

.bsk-product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.bsk-product-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--bsk-font-body);
}

.bsk-product-filter__btn:hover {
  border-color: var(--bsk-navy);
  color: var(--bsk-navy);
  background: #f8fafc;
}

.bsk-product-filter__btn.active {
  background: var(--bsk-navy);
  color: #ffffff;
  border-color: var(--bsk-navy);
  box-shadow: 0 4px 12px rgba(27, 42, 91, 0.2);
}

.bsk-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .bsk-products__grid {
    grid-template-columns: 1fr;
  }
}

.bsk-product-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.bsk-product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.bsk-product-card.bsk-fade-out {
  opacity: 0;
  transform: scale(0.96);
}

.bsk-product-card.bsk-hidden {
  display: none !important;
}

.bsk-product-card__content {
  flex: 0 0 55%;
  width: 55%;
  max-width: 55%;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.bsk-product-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0284c7;
  margin-bottom: 8px;
}

.bsk-product-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--bsk-navy);
  margin-bottom: 16px;
  font-family: var(--bsk-font-heading);
}

.bsk-product-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bsk-product-card__features li {
  font-size: 13.5px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.bsk-product-card__features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46, 204, 64, 0.15);
  color: #2ECC40;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

.bsk-product-card__image-wrap {
  flex: 0 0 45%;
  width: 45%;
  max-width: 45%;
  min-height: 240px;
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  order: 2;
}

.bsk-product-card__image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bsk-product-card:hover .bsk-product-card__image-wrap img {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .bsk-product-card {
    flex-direction: column;
  }
  .bsk-product-card__image-wrap {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    height: 220px;
    min-height: 220px;
    order: 1;
  }
  .bsk-product-card__content {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    order: 2;
    padding: 24px 20px;
  }
}

/* ============================================================
   Manufacturing Capabilities
   ============================================================ */
.bsk-capabilities {
  padding: 80px 0;
  background: var(--bsk-light-gray);
}

.bsk-capabilities__header {
  text-align: center;
  margin-bottom: 50px;
}

.bsk-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.bsk-capability-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--bsk-white);
  border-radius: 10px;
  transition: var(--bsk-transition);
}

.bsk-capability-box:hover {
  box-shadow: var(--bsk-shadow-md);
  transform: translateY(-4px);
}

.bsk-capability-box__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bsk-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--bsk-white);
  font-size: 24px;
}

.bsk-capability-box__title {
  font-family: var(--bsk-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--bsk-navy);
  margin-bottom: 8px;
}

.bsk-capability-box__desc {
  font-size: 14px;
  color: var(--bsk-text);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Trust & Craftsmanship Section
   ============================================================ */
.bsk-trust {
  padding: 80px 0;
}

.bsk-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bsk-trust__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--bsk-shadow-lg);
}

.bsk-trust__content h2 span {
  color: var(--bsk-blue);
}

.bsk-trust__list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.bsk-trust__list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--bsk-text);
}

.bsk-trust__list li i {
  color: var(--bsk-green);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.bsk-trust__list li strong {
  color: var(--bsk-navy);
  font-weight: 600;
}

/* ============================================================
   Testimonials Section
   ============================================================ */
.bsk-testimonials {
  padding: 80px 0;
  background: var(--bsk-light-gray);
}

.bsk-testimonials__header {
  margin-bottom: 50px;
}

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

.bsk-testimonial-card {
  background: #FFFDF5;
  border-radius: 10px;
  padding: 30px;
  border-left: 3px solid var(--bsk-gold);
  transition: var(--bsk-transition);
}

.bsk-testimonial-card:hover {
  box-shadow: var(--bsk-shadow-md);
}

.bsk-testimonial-card__stars {
  margin-bottom: 15px;
  color: var(--bsk-gold);
  font-size: 16px;
}

.bsk-testimonial-card__text {
  font-size: 15px;
  color: #333;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bsk-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bsk-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bsk-gray);
}

.bsk-testimonial-card__name {
  font-family: var(--bsk-font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--bsk-navy);
  margin: 0;
}

.bsk-testimonial-card__role {
  font-size: 13px;
  color: var(--bsk-text-light);
  margin: 0;
}

/* ============================================================
   Blog Section
   ============================================================ */
.bsk-blog {
  padding: 80px 0;
}

.bsk-blog__header {
  margin-bottom: 50px;
}

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

.bsk-blog-card {
  background: var(--bsk-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--bsk-shadow-sm);
  transition: var(--bsk-transition);
}

.bsk-blog-card:hover {
  box-shadow: var(--bsk-shadow-md);
  transform: translateY(-4px);
}

.bsk-blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.bsk-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--bsk-transition);
}

.bsk-blog-card:hover .bsk-blog-card__image img {
  transform: scale(1.05);
}

.bsk-blog-card__body {
  padding: 20px;
}

.bsk-blog-card__date {
  font-size: 12px;
  color: var(--bsk-text-light);
  margin-bottom: 10px;
  display: block;
}

.bsk-blog-card__title {
  font-family: var(--bsk-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--bsk-navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.bsk-blog-card__title a {
  color: var(--bsk-navy);
  text-decoration: none;
}

.bsk-blog-card__title a:hover {
  color: var(--bsk-blue);
}

.bsk-blog-card__excerpt {
  font-size: 14px;
  color: var(--bsk-text);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ============================================================
   CTA Section
   ============================================================ */
.bsk-cta {
  padding: 80px 0;
  background: var(--bsk-navy);
  text-align: center;
}

.bsk-cta__heading {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 5px;
}

.bsk-cta__subheading {
  font-size: 40px;
  font-weight: 800;
  color: var(--bsk-white);
  margin-bottom: 15px;
  font-family: var(--bsk-font-heading);
}

.bsk-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.bsk-cta__form {
  max-width: 500px;
  margin: 0 auto;
}

.bsk-cta__form .wpcf7-form {
  display: flex;
  gap: 0;
}

.bsk-cta__form .wpcf7-form input[type="email"],
.bsk-cta__form .wpcf7-form input[type="text"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  font-family: var(--bsk-font-body);
  outline: none;
}

.bsk-cta__form .wpcf7-form input[type="submit"] {
  padding: 14px 24px;
  background: var(--bsk-green);
  color: var(--bsk-white);
  border: none;
  border-radius: 0 6px 6px 0;
  font-family: var(--bsk-font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--bsk-transition);
  white-space: nowrap;
}

.bsk-cta__form .wpcf7-form input[type="submit"]:hover {
  background: var(--bsk-green-hover);
}

/* CTA inline form fallback */
.bsk-cta__inline-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.bsk-cta__inline-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  font-family: var(--bsk-font-body);
  outline: none;
}

.bsk-cta__inline-form button {
  padding: 14px 24px;
  background: var(--bsk-green);
  color: var(--bsk-white);
  border: none;
  border-radius: 0 6px 6px 0;
  font-family: var(--bsk-font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--bsk-transition);
  white-space: nowrap;
}

.bsk-cta__inline-form button:hover {
  background: var(--bsk-green-hover);
}

/* ============================================================
   Responsive Styles
   ============================================================ */
@media (max-width: 1024px) {
  .bsk-hero__title {
    font-size: 40px;
  }

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

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

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

  .bsk-trust__grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .bsk-header__cta {
    display: none !important;
  }

  .bsk-header__toggle {
    display: flex !important;
  }

  .bsk-header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bsk-navy);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 85px 20px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .bsk-header__nav.active {
    display: flex !important;
  }

  .bsk-header__nav ul {
    flex-direction: column;
    text-align: left;
    gap: 0;
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

  .bsk-header__nav ul li {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .bsk-header__nav ul li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .bsk-header__nav ul li a {
    font-size: 17px;
    padding: 14px 8px;
    color: var(--bsk-white) !important;
    flex: 1;
    display: flex;
    align-items: center;
  }

  .bsk-header__nav ul li.menu-item-has-children > a::after,
  .bsk-header__nav .bsk-dropdown-arrow {
    display: none !important;
  }

  .bsk-submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-right: 4px;
  }

  .bsk-submenu-toggle.active {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.18);
  }

  /* Standard Sub-menu on Mobile */
  .bsk-header__nav .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    padding: 6px 0 !important;
    margin: 4px 0 12px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    display: none;
    pointer-events: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    box-sizing: border-box !important;
  }

  .bsk-header__nav .sub-menu.sub-menu--open {
    display: flex !important;
    flex-direction: column !important;
  }

  .bsk-header__nav ul.sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .bsk-header__nav ul.sub-menu li:last-child {
    border-bottom: none;
  }

  .bsk-header__nav ul.sub-menu li a {
    font-size: 14.5px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .bsk-header__nav ul.sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bsk-gold) !important;
  }

  /* Mobile Products Mega-Dropdown (Fix horizontal clipping / negative offset bug) */
  .bsk-header__nav .bsk-mega-dropdown,
  .bsk-header__nav ul li.bsk-menu-item--mega > .bsk-mega-dropdown,
  .bsk-header__nav ul li.bsk-menu-item--mega:hover > .bsk-mega-dropdown,
  .bsk-header__nav ul li.bsk-menu-item--mega:focus-within > .bsk-mega-dropdown {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    margin: 6px 0 14px 0 !important;
    box-sizing: border-box !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
  }

  .bsk-header__nav .bsk-mega-dropdown.sub-menu--open {
    display: block !important;
    padding: 14px 14px 10px 14px !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__col {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__heading {
    color: var(--bsk-gold) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding-bottom: 5px !important;
    margin: 0 0 6px 0 !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__list {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__list li {
    width: 100% !important;
    border-bottom: none !important;
    box-sizing: border-box !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__list li a {
    color: rgba(255, 255, 255, 0.88) !important;
    padding: 6px 8px !important;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    display: block !important;
    white-space: normal !important;
    word-break: normal !important;
    box-sizing: border-box !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__list li a:hover,
  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__list li a:active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding-left: 12px !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    margin-top: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__note {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 11px !important;
    margin: 0 !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__view-all {
    color: var(--bsk-gold) !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .bsk-header__nav .bsk-mega-dropdown .bsk-mega-dropdown__view-all:hover {
    text-decoration: underline !important;
    color: #ffffff !important;
  }
}

@media (max-width: 768px) {
  :root {
    --bsk-section-padding: 50px;
  }

  h1, .bsk-hero__title {
    font-size: 32px;
  }

  h2, .bsk-section-heading {
    font-size: 28px;
  }

  .bsk-about__grid,
  .bsk-trust__grid {
    grid-template-columns: 1fr;
  }

  .bsk-about__images {
    order: -1;
  }

  .bsk-products__grid,
  .bsk-testimonials__grid,
  .bsk-blog__grid {
    grid-template-columns: 1fr;
  }

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

  .bsk-about__stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px !important;
    flex-wrap: wrap !important;
  }

  .bsk-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bsk-footer__bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .bsk-cta__subheading {
    font-size: 28px;
  }

  .bsk-cta__inline-form {
    flex-direction: column;
  }

  .bsk-cta__inline-form input[type="email"] {
    border-radius: 6px;
    margin-bottom: 10px;
  }

  .bsk-cta__inline-form button {
    border-radius: 6px;
  }

  .bsk-hero {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .bsk-hero__subtitle {
    font-size: 14px;
  }

  .bsk-hero__buttons {
    flex-direction: column;
  }

  .bsk-hero__buttons .bsk-btn {
    text-align: center;
  }

  .bsk-clients {
    padding: 28px 0 36px;
  }

  .bsk-clients__label {
    font-size: 11.5px;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
  }

  .bsk-marquee__mask {
    width: 50px;
  }

  .bsk-marquee__content {
    gap: 48px;
    padding-right: 48px;
  }

  .bsk-marquee__item img {
    height: 56px;
    max-height: 56px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .bsk-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .bsk-hero__title {
    font-size: 28px;
  }

  .bsk-section-heading {
    font-size: 24px;
  }

  .bsk-about__stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
  }

  .bsk-about__stat-number {
    font-size: 34px !important;
  }

  .bsk-about__stat-label {
    font-size: 13px !important;
  }
}

/* ============================================================
   WordPress / Elementor Compatibility
   ============================================================ */

/* Hide default WordPress site header when our header is active */
.bsk-theme-active .site-header {
  display: none;
}

/* Elementor overrides */
.elementor-page .site-main {
  padding: 0;
}

.elementor-page .entry-content {
  margin: 0;
}

/* Ensure Elementor sections can go full-width */
body.elementor-default .site-main,
body.elementor-template-canvas .site-main,
body.elementor-template-full-width .site-main {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Fix for Elementor editor */
.elementor-editor-active .bsk-header {
  position: relative;
}

/* ============================================================
   About Us Page Styles
   ============================================================ */

/* 1. About Hero */
.bsk-about-hero {
  position: relative;
  min-height: 480px;
  height: 75vh;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bsk-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 1;
}

.bsk-about-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.4) 50%, var(--bsk-navy) 100%);
  z-index: 2;
}

.bsk-about-hero__container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  text-align: center;
}

.bsk-about-hero__frame-wrap {
  position: relative;
  display: inline-block;
  padding: 24px 36px;
  margin-bottom: 24px;
}

/* Signature Brand Frame Decoration (Authentic L-bracket styling: |_ and ¯|) */
.bsk-about-hero__frame-wrap .bsk-corner-tl,
.bsk-about-hero__frame-wrap .bsk-line-l,
.bsk-contact-hero__title-box .bsk-corner-tl {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: #F5A623 !important;
  border: none !important;
  pointer-events: none;
}

.bsk-about-hero__frame-wrap .bsk-corner-bl,
.bsk-about-hero__frame-wrap .bsk-line-b,
.bsk-contact-hero__title-box .bsk-corner-bl {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 40px !important;
  height: 4px !important;
  background: #F5A623 !important;
  border: none !important;
  pointer-events: none;
}

.bsk-about-hero__frame-wrap .bsk-corner-br,
.bsk-about-hero__frame-wrap .bsk-line-r,
.bsk-contact-hero__title-box .bsk-corner-br {
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: #F5A623 !important;
  border: none !important;
  pointer-events: none;
}

.bsk-about-hero__frame-wrap .bsk-corner-tr,
.bsk-about-hero__frame-wrap .bsk-line-t,
.bsk-contact-hero__title-box .bsk-corner-tr {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 40px !important;
  height: 4px !important;
  background: #F5A623 !important;
  border: none !important;
  pointer-events: none;
}

.bsk-about-hero__badge {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 12px;
  font-family: var(--bsk-font-body);
}

.bsk-about-hero__title {
  font-size: 64px;
  line-height: 1.1;
  font-family: var(--bsk-font-heading);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.bsk-about-hero__subtitle {
  font-size: 26px;
  color: #cbd5e1;
  font-family: var(--bsk-font-heading);
  font-weight: 600;
  margin: 0 auto 32px;
}

.bsk-about-hero__scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: bsk-bounce 2s infinite ease-in-out;
}

.bsk-about-hero__scroll-down:hover {
  color: #ffffff;
  border-color: #F5A623;
  background: rgba(245, 166, 35, 0.1);
}

@keyframes bsk-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* 2. Story Blocks (Our Roots & Our Mission) */
.bsk-about-story {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.bsk-about-story--mission {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.bsk-about-story__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
}

.bsk-about-story__layout--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.bsk-about-story__image-col {
  position: relative;
  z-index: 1;
}

.bsk-about-story__image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  height: 480px;
  transition: transform 0.5s ease;
}

.bsk-tilt-left {
  transform: rotate(-2deg);
}

.bsk-tilt-right {
  transform: rotate(2deg);
}

.bsk-about-story__image-box:hover {
  transform: rotate(0deg) scale(1.02);
}

.bsk-about-story__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsk-about-story__image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bsk-overlay-teal {
  background: rgba(13, 148, 136, 0.15);
  mix-blend-mode: overlay;
}

.bsk-overlay-yellow {
  background: rgba(245, 166, 35, 0.15);
  mix-blend-mode: overlay;
}

.bsk-about-story__card-col {
  position: relative;
  z-index: 2;
}

.bsk-about-story--roots .bsk-about-story__card-col {
  margin-left: -60px;
}

.bsk-about-story--mission .bsk-about-story__layout--reverse .bsk-about-story__image-col {
  order: 2;
}

.bsk-about-story--mission .bsk-about-story__layout--reverse .bsk-about-story__card-col {
  order: 1;
  margin-right: -60px;
}

.bsk-about-story__card {
  background: #ffffff;
  padding: 48px 44px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
}

.bsk-about-story--mission .bsk-about-story__card {
  background: #f8fafc;
}

.bsk-about-story__pill-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.bsk-pill-bar {
  width: 32px;
  height: 4px;
  border-radius: 9999px;
  display: inline-block;
}

.bsk-pill-bar--teal {
  background: #0d9488;
}

.bsk-pill-bar--yellow {
  background: #f5a623;
}

.bsk-pill-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  font-family: var(--bsk-font-body);
}

.bsk-about-story__title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  font-family: var(--bsk-font-heading);
  line-height: 1.15;
}

.bsk-about-story__p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 18px;
  font-family: var(--bsk-font-body);
}

.bsk-about-story__p:last-of-type {
  margin-bottom: 0;
}

.bsk-about-story__checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bsk-about-story__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  font-family: var(--bsk-font-body);
}

.bsk-check-icon {
  color: #f5a623;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 3. Common Questions (FAQ Accordion) */
.bsk-about-faq {
  padding: 90px 0 110px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.bsk-container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.bsk-about-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.bsk-about-faq__title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  font-family: var(--bsk-font-heading);
}

.bsk-about-faq__subtitle {
  font-size: 18px;
  color: #64748b;
  margin: 0;
  font-family: var(--bsk-font-body);
}

.bsk-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bsk-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.bsk-faq-item:hover,
.bsk-faq-item.is-active {
  border-color: rgba(27, 42, 91, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bsk-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--bsk-font-heading);
  gap: 16px;
}

.bsk-faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #475569;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.bsk-faq-item.is-active .bsk-faq-icon {
  background: var(--bsk-navy);
  color: #ffffff;
}

.bsk-faq-icon__minus {
  display: none;
}

.bsk-faq-item.is-active .bsk-faq-icon__plus {
  display: none;
}

.bsk-faq-item.is-active .bsk-faq-icon__minus {
  display: inline-block;
}

.bsk-faq-answer {
  border-top: 1px solid #f1f5f9;
  padding: 0 28px 24px;
}

.bsk-faq-answer__inner p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 16px 0 0;
  font-family: var(--bsk-font-body);
}

/* Responsive Breakpoints for About Page */
@media (max-width: 991px) {
  .bsk-about-hero__title {
    font-size: 46px;
  }

  .bsk-about-hero__subtitle {
    font-size: 22px;
  }

  .bsk-about-story {
    padding: 70px 0;
  }

  .bsk-about-story__layout,
  .bsk-about-story__layout--reverse {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .bsk-tilt-left,
  .bsk-tilt-right {
    transform: none;
  }

  .bsk-about-story__image-box {
    height: 360px;
    width: 100%;
    border-radius: 12px;
  }

  .bsk-about-story--roots .bsk-about-story__card-col,
  .bsk-about-story--mission .bsk-about-story__layout--reverse .bsk-about-story__card-col {
    margin: -40px 16px 0 16px !important;
    order: 2 !important;
    width: auto;
  }

  .bsk-about-story--mission .bsk-about-story__layout--reverse .bsk-about-story__image-col {
    order: 1 !important;
  }

  .bsk-about-story__card {
    padding: 36px 28px;
  }

  .bsk-about-story__title {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .bsk-about-hero {
    height: auto;
    min-height: 420px;
    padding: 90px 0 60px;
  }

  .bsk-about-hero__frame-wrap {
    padding: 16px 20px;
  }

  .bsk-about-hero__title {
    font-size: 34px;
  }

  .bsk-about-hero__subtitle {
    font-size: 18px;
  }

  .bsk-about-story__image-box {
    height: 260px;
  }

  .bsk-about-story__card {
    padding: 28px 20px;
  }

  .bsk-about-faq {
    padding: 60px 0 80px;
  }

  .bsk-about-faq__title {
    font-size: 32px;
  }

  .bsk-faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .bsk-faq-answer {
    padding: 0 20px 20px;
  }
}

/* ============================================================
   Services Page Styles
   ============================================================ */

/* 1. Services Hero */
.bsk-services-hero-section {
  padding: 40px 0 60px;
  background: #f8fafc;
}

.bsk-container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.bsk-services-hero {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.bsk-services-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bsk-services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0f172a 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 1;
}

.bsk-services-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 60px;
  max-width: 750px;
}

.bsk-services-hero__badge-wrap {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  margin-bottom: 20px;
}

.bsk-services-hero__tag {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 12px;
  font-family: var(--bsk-font-body);
}

.bsk-services-hero__title {
  font-size: 56px;
  line-height: 1.1;
  font-family: var(--bsk-font-heading);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
}

.bsk-services-hero__title .bsk-text-muted {
  color: #cbd5e1;
}

.bsk-services-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(219, 234, 254, 0.85);
  margin: 0;
  font-family: var(--bsk-font-body);
  max-width: 580px;
}

/* 2. Services Grid */
.bsk-services-grid-section {
  padding: 20px 0 100px;
  background: #f8fafc;
}

.bsk-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bsk-service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bsk-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(27, 42, 91, 0.15);
}

.bsk-service-card__link-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  align-items: center;
  text-align: center;
  padding-bottom: 28px;
}

.bsk-service-card__image-container {
  width: 100%;
  padding: 10px 10px 0;
}

.bsk-service-card__image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0.875rem;
  overflow: hidden;
  background: #f1f5f9;
}

.bsk-service-card__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.bsk-service-card:hover .bsk-service-card__image-box img {
  transform: scale(1.08);
}

.bsk-service-card__icon-wrap {
  position: relative;
  margin-top: -32px;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 4px solid #ffffff;
  z-index: 2;
  transition: border-color 0.3s ease;
}

.bsk-service-card__icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: var(--bsk-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bsk-service-card:hover .bsk-service-card__icon {
  background: var(--bsk-navy);
  color: #ffffff;
}

.bsk-service-card__content {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.bsk-service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bsk-navy);
  margin: 0 0 10px;
  font-family: var(--bsk-font-heading);
}

.bsk-service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 16px;
  font-family: var(--bsk-font-body);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bsk-service-card__price {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 14px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
  margin-top: auto;
}

.bsk-service-card__action {
  margin-top: auto;
}

.bsk-service-card__action-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--bsk-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: color 0.2s ease;
}

.bsk-service-card:hover .bsk-service-card__action-text {
  color: var(--bsk-blue);
}

/* Responsive */
@media (max-width: 1024px) {
  .bsk-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bsk-services-hero__title {
    font-size: 44px;
  }

  .bsk-services-hero__content {
    padding: 60px 40px;
  }
}

@media (max-width: 640px) {
  .bsk-services-grid {
    grid-template-columns: 1fr;
  }

  .bsk-services-hero {
    border-radius: 1.5rem;
    min-height: auto;
  }

  .bsk-services-hero__content {
    padding: 48px 24px;
  }

  .bsk-services-hero__title {
    font-size: 32px;
  }

  .bsk-services-hero__desc {
    font-size: 15px;
  }
}

/* ==========================================================================
   Contact Page Showcase & Interactive Form
   ========================================================================== */
.bsk-contact-section {
  position: relative;
  background-color: #f8fafc;
  overflow: hidden;
}

/* Hero Banner */
.bsk-contact-hero {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  min-height: 400px;
  padding: 100px 20px 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bsk-contact-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: luminosity;
  transform: scale(1.04);
  transition: transform 10s ease;
}

.bsk-contact-hero:hover .bsk-contact-hero__bg {
  transform: scale(1.08);
}

.bsk-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.94) 100%);
}

.bsk-contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bsk-contact-hero__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  margin-bottom: 20px;
}

.bsk-contact-hero__title-box {
  position: relative;
  display: inline-block;
  padding: 24px 36px;
}

.bsk-corner-tl,
.bsk-corner-tr,
.bsk-corner-bl,
.bsk-corner-br {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--bsk-gold, #f5a623);
  border-width: 3px;
  background: transparent;
  pointer-events: none;
}

.bsk-corner-tl {
  top: 0;
  left: 0;
  border-style: solid none none solid;
}

.bsk-corner-tr {
  top: 0;
  right: 0;
  border-style: solid solid none none;
}

.bsk-corner-bl {
  bottom: 0;
  left: 0;
  border-style: none none solid solid;
}

.bsk-corner-br {
  bottom: 0;
  right: 0;
  border-style: none solid solid none;
}

.bsk-contact-hero__title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

/* Overlapping Card Container */
.bsk-contact-card-container {
  position: relative;
  z-index: 10;
  margin-top: -85px;
  padding-bottom: 100px;
}

.bsk-contact-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05);
  display: grid;
  grid-template-columns: 5fr 7fr;
  overflow: hidden;
}

/* Left Column: Aside */
.bsk-contact-aside {
  background: #f8fafc;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-right: 1px solid #e2e8f0;
}

.bsk-contact-block {
  display: flex;
  flex-direction: column;
}

.bsk-block-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #64748b;
  margin: 0 0 14px;
}

/* Status Box */
.bsk-status-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.bsk-status-box__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bsk-status-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  color: #059669;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bsk-status-icon-wrap.is-closed {
  background: #fef2f2;
  color: #dc2626;
}

.bsk-status-label {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
}

.bsk-status-sub {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  font-family: monospace;
}

.bsk-status-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.bsk-status-badge.is-closed {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.bsk-hours-sub {
  font-size: 13px;
  color: #64748b;
  margin: 10px 0 0;
  line-height: 1.5;
}

/* Locations */
.bsk-locations-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bsk-location-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.bsk-location-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.bsk-location-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.bsk-location-name--teal {
  color: #0d9488;
}

.bsk-location-name--yellow {
  color: #d97706;
}

.bsk-location-address {
  font-style: normal;
}

.bsk-location-address p {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 8px;
}

.bsk-location-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 !important;
}

.bsk-location-phone a {
  color: var(--bsk-blue, #3340D1);
  text-decoration: none;
}

.bsk-location-phone a:hover {
  text-decoration: underline;
}

/* Direct Connect Card */
.bsk-direct-connect-card {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
}

.bsk-direct-connect-glow {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bsk-direct-connect-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px;
}

.bsk-direct-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 18px;
  word-break: break-all;
  transition: color 0.2s ease;
}

.bsk-direct-email-link:hover {
  color: #7dd3fc;
}

.bsk-direct-socials {
  display: flex;
  gap: 10px;
}

.bsk-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.bsk-social-btn:hover {
  background: var(--bsk-blue, #3340D1);
  border-color: var(--bsk-blue, #3340D1);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Right Column: Form Col */
.bsk-contact-form-col {
  padding: 50px 48px;
  background: #ffffff;
}

.bsk-contact-form-title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.bsk-form-accent-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--bsk-blue, #3340D1), var(--bsk-gold, #f5a623));
  border-radius: 2px;
  margin-bottom: 14px;
}

.bsk-contact-form-sub {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 28px;
}

.bsk-interactive-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bsk-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bsk-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bsk-form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bsk-req {
  color: #ef4444;
}

.bsk-opt {
  font-weight: normal;
  color: #94a3b8;
  font-size: 12px;
}

.bsk-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bsk-input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
}

.bsk-input-icon-wrap:focus-within .bsk-input-icon {
  color: var(--bsk-blue, #3340D1);
}

.bsk-input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 44px;
  font-size: 14px;
  font-family: var(--bsk-font-body, 'Inter', sans-serif);
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.bsk-input:focus {
  background: #ffffff;
  border-color: var(--bsk-blue, #3340D1);
  box-shadow: 0 0 0 3px rgba(51, 64, 209, 0.12);
}

.bsk-form-hint {
  font-size: 12px;
  color: #94a3b8;
}

.bsk-select-wrap {
  position: relative;
}

.bsk-select {
  width: 100%;
  height: 46px;
  padding: 0 36px 0 16px;
  font-size: 14px;
  font-family: var(--bsk-font-body, 'Inter', sans-serif);
  color: #0f172a;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-sizing: border-box;
}

.bsk-select:focus {
  background-color: #ffffff;
  border-color: var(--bsk-blue, #3340D1);
  box-shadow: 0 0 0 3px rgba(51, 64, 209, 0.12);
}

.bsk-textarea-icon-wrap {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  transition: all 0.2s ease;
  overflow: hidden;
}

.bsk-textarea-icon-wrap:focus-within {
  border-color: var(--bsk-blue, #3340D1);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(51, 64, 209, 0.12);
}

.bsk-textarea-header {
  position: relative;
  display: flex;
}

.bsk-textarea-icon {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
}

.bsk-textarea-icon-wrap:focus-within .bsk-textarea-icon {
  color: var(--bsk-blue, #3340D1);
}

.bsk-textarea {
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 14px;
  font-family: var(--bsk-font-body, 'Inter', sans-serif);
  color: #0f172a;
  background: transparent;
  border: none;
  outline: none;
  resize: vertical;
  min-height: 110px;
  box-sizing: border-box;
}

.bsk-textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  color: #94a3b8;
  background: rgba(248, 250, 252, 0.6);
}

.bsk-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bsk-navy, #1B2A5B);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(27, 42, 91, 0.2);
}

.bsk-submit-btn:hover {
  background: var(--bsk-blue, #3340D1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(51, 64, 209, 0.3);
}

.bsk-form-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  margin: 4px 0 0;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
  .bsk-contact-card {
    grid-template-columns: 1fr;
  }

  .bsk-contact-aside {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 36px 28px;
  }

  .bsk-contact-form-col {
    padding: 36px 28px;
  }

  .bsk-contact-hero__title {
    font-size: 34px;
  }

  .bsk-contact-hero {
    min-height: 350px;
    padding: 80px 20px 120px;
  }
}

@media (max-width: 640px) {
  .bsk-contact-card-container {
    margin-top: -60px;
    padding-bottom: 60px;
  }

  .bsk-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bsk-contact-hero__title {
    font-size: 26px;
  }

  .bsk-contact-hero__title-box {
    padding: 16px 18px;
  }

  .bsk-contact-aside,
  .bsk-contact-form-col {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   Blog Journal & Archive Styling
   ========================================================================== */
.bsk-blog-section {
  position: relative;
  background-color: #f8fafc;
  overflow: hidden;
}

/* Hero Banner */
.bsk-blog-hero {
  position: relative;
  background-color: #0f172a;
  color: #ffffff;
  min-height: 380px;
  padding: 90px 20px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bsk-blog-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  mix-blend-mode: overlay;
  transform: scale(1.04);
  transition: transform 10s ease;
}

.bsk-blog-hero:hover .bsk-blog-hero__bg {
  transform: scale(1.08);
}

.bsk-blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.9) 100%);
}

.bsk-blog-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bsk-blog-hero__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--bsk-gold, #f5a623);
  margin-bottom: 16px;
}

.bsk-blog-hero__title-box {
  position: relative;
  display: inline-block;
  padding: 20px 36px;
}

.bsk-blog-hero__title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}

.bsk-text-teal {
  color: #14b8a6;
}

.bsk-archive-desc {
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 15px;
  max-width: 600px;
}

/* Layout Wrap */
.bsk-blog-layout-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.bsk-blog-layout {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 48px;
  align-items: start;
}

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

/* Left Column: Articles Main */
.bsk-blog-main {
  width: 100%;
}

.bsk-blog-main__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.bsk-header-accent-bar {
  width: 6px;
  height: 24px;
  background: var(--bsk-gold, #f5a623);
  border-radius: 3px;
  display: inline-block;
}

.bsk-blog-main__title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* Posts Grid */
.bsk-blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Blog Cards */
.bsk-blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.bsk-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -6px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

/* Featured Lead Card (Spans 2 cols) */
.bsk-blog-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.bsk-blog-card__media {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.bsk-blog-card--featured .bsk-blog-card__media {
  height: 100%;
  min-height: 350px;
}

.bsk-blog-card--standard .bsk-blog-card__media {
  height: 220px;
}

.bsk-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.bsk-blog-bookmark {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 8px;
  color: #334155;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bsk-blog-card:hover .bsk-blog-bookmark {
  opacity: 1;
}

.bsk-blog-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.bsk-blog-card--featured .bsk-blog-card__body {
  padding: 38px 40px;
}

.bsk-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bsk-cat-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(245, 166, 35, 0.12);
  color: #d97706;
  padding: 4px 12px;
  border-radius: 6px;
}

.bsk-post-date {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
}

.bsk-post-dot {
  color: #cbd5e1;
}

.bsk-post-read-time {
  font-size: 12.5px;
  color: #64748b;
}

.bsk-blog-card__title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 12px;
}

.bsk-blog-card--featured .bsk-blog-card__title {
  font-size: 26px;
}

.bsk-blog-card__title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bsk-blog-card__title a:hover {
  color: var(--bsk-blue, #3340D1);
}

.bsk-card-gradient-bar {
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, #64748b 0%, var(--bsk-blue, #3340D1) 50%, #0d9488 100%);
  border-radius: 9999px;
  margin-bottom: 16px;
}

.bsk-blog-card__excerpt {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 22px;
}

.bsk-blog-card--featured .bsk-blog-card__excerpt {
  font-size: 15.5px;
}

.bsk-blog-card__action {
  margin-top: auto;
}

.bsk-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bsk-navy, #1B2A5B);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bsk-blog-btn:hover {
  background: var(--bsk-blue, #3340D1);
  color: #ffffff;
  transform: translateX(3px);
}

.bsk-blog-btn--sm {
  padding: 8px 16px;
  font-size: 11px;
}

/* Pagination */
.bsk-blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.bsk-blog-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bsk-blog-pagination li a,
.bsk-blog-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bsk-blog-pagination li span.current {
  background: var(--bsk-navy, #1B2A5B);
  color: #ffffff;
  border-color: var(--bsk-navy, #1B2A5B);
}

.bsk-blog-pagination li a:hover {
  border-color: var(--bsk-blue, #3340D1);
  color: var(--bsk-blue, #3340D1);
}

/* Sidebar Styling */
.bsk-blog-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bsk-sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.bsk-sidebar-title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Search Form */
.bsk-search-form {
  display: flex;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.bsk-search-form:focus-within {
  border-color: var(--bsk-blue, #3340D1);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(51, 64, 209, 0.1);
}

.bsk-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  font-family: var(--bsk-font-body, 'Inter', sans-serif);
}

.bsk-search-btn {
  background: transparent;
  border: none;
  padding: 0 16px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.bsk-search-btn:hover {
  color: var(--bsk-blue, #3340D1);
}

/* Popular Posts */
.bsk-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bsk-popular-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bsk-popular-num {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.bsk-popular-item:hover .bsk-popular-num {
  color: var(--bsk-gold, #f5a623);
}

.bsk-popular-meta {
  flex: 1;
}

.bsk-popular-post-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 4px;
}

.bsk-popular-post-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bsk-popular-item:hover .bsk-popular-post-title a {
  color: var(--bsk-blue, #3340D1);
}

.bsk-popular-read-time {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

/* Topics Cloud */
.bsk-topics-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bsk-topic-tag {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bsk-topic-tag:hover {
  background: var(--bsk-navy, #1B2A5B);
  color: #ffffff;
  border-color: var(--bsk-navy, #1B2A5B);
  transform: translateY(-1px);
}

/* Custom Apparel CTA Card */
.bsk-blog-cta-card {
  position: relative;
  background: linear-gradient(135deg, #1b2a5b 0%, #0f172a 100%);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 25px -5px rgba(27, 42, 91, 0.4);
}

.bsk-cta-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bsk-blog-cta-title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  position: relative;
  z-index: 2;
}

.bsk-blog-cta-desc {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0 0 20px;
  position: relative;
  z-index: 2;
}

.bsk-blog-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--bsk-gold, #f5a623);
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.bsk-blog-cta-btn:hover {
  background: #e09612;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
  color: #0f172a;
}

/* Single Article Styling */
.bsk-breadcrumb-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
}

.bsk-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--bsk-blue, #3340D1);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.bsk-back-link:hover {
  transform: translateX(-3px);
}

.bsk-single-article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.bsk-single-header {
  margin-bottom: 28px;
}

.bsk-single-title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 14px 0;
}

.bsk-single-gradient-bar {
  width: 180px;
  height: 4px;
  margin-top: 16px;
}

.bsk-single-media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
}

.bsk-single-media img {
  width: 100%;
  height: auto;
  display: block;
}

.bsk-single-content {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.bsk-single-content p {
  margin-bottom: 22px;
}

.bsk-single-content h2,
.bsk-single-content h3 {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  color: #0f172a;
  font-weight: 800;
  margin: 36px 0 18px;
}

.bsk-single-content ul,
.bsk-single-content ol {
  margin: 0 0 24px 24px;
}

.bsk-single-content li {
  margin-bottom: 10px;
}

.bsk-single-content blockquote {
  border-left: 4px solid var(--bsk-gold, #f5a623);
  padding-left: 20px;
  font-style: italic;
  color: #475569;
  margin: 28px 0;
}

/* Single Post Navigation Cards */
.bsk-post-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.bsk-post-nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bsk-post-nav-card:hover {
  border-color: var(--bsk-blue, #3340D1);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.bsk-post-nav-card--next {
  text-align: right;
}

.bsk-post-nav-card--next .bsk-post-nav-label {
  justify-content: flex-end;
}

.bsk-post-nav-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.bsk-post-nav-title {
  font-family: var(--bsk-font-heading, 'Poppins', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .bsk-blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .bsk-blog-hero__title {
    font-size: 34px;
  }

  .bsk-single-title {
    font-size: 28px;
  }

  .bsk-single-article {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .bsk-blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .bsk-blog-card--featured {
    grid-column: span 1;
  }

  .bsk-blog-hero {
    min-height: 320px;
    padding: 70px 16px;
  }

  .bsk-blog-hero__title {
    font-size: 26px;
  }

  .bsk-blog-hero__title-box {
    padding: 14px 16px;
  }

  .bsk-post-nav-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   PRODUCT CATALOG & SINGLE PRODUCT STYLES
   ========================================================================== */

.bsk-products-page {
  background: #f8fafc;
}

/* Hero Section */
.bsk-products-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b132b;
  padding: 100px 20px 70px;
}

.bsk-products-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: contrast(1.1);
  transform: scale(1.02);
  transition: transform 6s ease;
}

.bsk-products-hero:hover .bsk-products-hero__bg {
  transform: scale(1.06);
}

.bsk-products-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.85) 0%, rgba(15, 23, 42, 0.94) 100%);
}

.bsk-products-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.bsk-products-hero__framed-title {
  display: inline-block;
  position: relative;
  padding: 22px 36px;
  margin-bottom: 24px;
}

.bsk-products-hero__tagline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #20B2AA;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bsk-products-hero__title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.1;
}

.bsk-products-hero__search {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.bsk-products-hero__search-field {
  width: 100%;
  padding: 13px 44px 13px 46px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: all 0.25s ease;
}

.bsk-products-hero__search-field:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: #20B2AA;
  box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.25);
}

.bsk-products-hero__search-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.bsk-products-hero__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.bsk-products-hero__search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: none;
  line-height: 1;
}

.bsk-products-hero__search-clear:hover {
  color: #ffffff;
}

/* Main Section */
.bsk-products-section {
  padding: 40px 0 80px;
  background: #f8fafc;
}

.bsk-products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.bsk-products-card-wrapper {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  min-height: 750px;
}

/* Sidebar */
.bsk-products-sidebar {
  width: 290px;
  flex-shrink: 0;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bsk-products-sidebar__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.bsk-products-sidebar__header-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(51, 64, 209, 0.1);
  color: var(--bsk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bsk-products-sidebar__title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.bsk-products-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bsk-products-nav__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #475569;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.bsk-products-nav__btn:hover {
  background: #ffffff;
  color: var(--bsk-blue);
  border-color: #e2e8f0;
}

.bsk-products-nav__btn.active {
  background: #1B2A5B;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(27, 42, 91, 0.25);
}

.bsk-products-nav__label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bsk-products-nav__count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #64748b;
  transition: all 0.2s ease;
}

.bsk-products-nav__btn.active .bsk-products-nav__count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Filter by Type */
.bsk-products-filter-type {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.bsk-products-filter-type__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 0 0 12px 0;
}

.bsk-products-filter-type__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bsk-type-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #475569;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}

.bsk-type-pill:hover {
  background: #ffffff;
  color: var(--bsk-blue);
  border-color: #e2e8f0;
}

.bsk-type-pill.active {
  background: rgba(32, 178, 170, 0.15);
  color: #0f172a;
  border-color: rgba(32, 178, 170, 0.35);
  font-weight: 600;
}

/* Main Content Area */
.bsk-products-main {
  flex: 1;
  min-width: 0;
  padding: 28px 32px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.bsk-products-main__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 22px;
  margin-bottom: 28px;
}

.bsk-products-main__intro {
  max-width: 620px;
}

.bsk-products-main__title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.bsk-products-main__accent-line {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #475569 0%, #3340D1 50%, #20B2AA 100%);
  border-radius: 999px;
  margin-bottom: 12px;
}

.bsk-products-main__description {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.bsk-products-main__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bsk-products-main__search {
  position: relative;
  width: 210px;
}

.bsk-products-main__search input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 12.5px;
  outline: none;
  transition: border-color 0.2s;
}

.bsk-products-main__search input:focus {
  border-color: var(--bsk-blue);
  background: #ffffff;
}

.bsk-products-main__search svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.bsk-products-main__mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
}

.bsk-products-main__call-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.bsk-products-main__call-btn:hover {
  background: #3340D1;
  color: #ffffff;
}

/* Mobile type pills horizontal bar */
.bsk-products-mobile-types {
  display: none;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

/* Product Cards Grid */
.bsk-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bsk-catalog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.bsk-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.bsk-catalog-card__media {
  position: relative;
  height: 200px;
  background: #f1f5f9;
  overflow: hidden;
}

.bsk-catalog-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.bsk-catalog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bsk-catalog-card:hover .bsk-catalog-card__img {
  transform: scale(1.06);
}

.bsk-catalog-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #1B2A5B;
  border: 1px solid rgba(27, 42, 91, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.bsk-catalog-card__badge--lg {
  font-size: 11px;
  padding: 5px 12px;
}

.bsk-catalog-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bsk-catalog-card__subcat {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #20B2AA;
  margin: 0 0 6px 0;
}

.bsk-catalog-card__title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 14px 0;
  line-height: 1.35;
}

.bsk-catalog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.bsk-catalog-card:hover .bsk-catalog-card__title a {
  color: #3340D1;
}

.bsk-catalog-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bsk-catalog-card__price-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #3340D1;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.bsk-catalog-card__price-btn:hover {
  color: #1B2A5B;
  text-decoration: underline;
}

.bsk-catalog-card__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.bsk-catalog-card__wa-btn:hover {
  color: #16a34a;
}

/* Empty State */
.bsk-products-empty {
  text-align: center;
  padding: 60px 20px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
}

.bsk-products-empty__icon {
  margin-bottom: 16px;
  color: #94a3b8;
}

.bsk-products-empty h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.bsk-products-empty p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

/* Quick View Modal */
.bsk-quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bsk-quickview-modal.open {
  display: flex;
}

.bsk-quickview-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
}

.bsk-quickview-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  padding: 32px;
}

.bsk-quickview-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  font-size: 22px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.bsk-quickview-modal__close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.bsk-quickview-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
}

.bsk-quickview-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  height: 320px;
}

.bsk-quickview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsk-quickview-subcat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #20B2AA;
  margin-bottom: 6px;
  display: block;
}

.bsk-quickview-title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.bsk-quickview-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Pricing Table Styling */
.bsk-pricing-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin: 14px 0;
}

.bsk-pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.bsk-pricing-table th {
  background: #f8fafc;
  padding: 9px 12px;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bsk-pricing-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.bsk-pricing-size {
  font-weight: 600;
  color: #0f172a;
}

.bsk-pricing-rp {
  font-weight: 600;
  color: #0f172a;
}

.bsk-pricing-wp {
  font-weight: 700;
  color: #16a34a;
}

.bsk-pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.bsk-pricing-card {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bsk-pricing-card--highlight {
  border-color: rgba(46, 204, 64, 0.4);
  background: rgba(46, 204, 64, 0.05);
}

.bsk-pricing-card__label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.bsk-pricing-card__val {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.bsk-pricing-card--highlight .bsk-pricing-card__val {
  color: #16a34a;
}

.bsk-pricing-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #64748b;
  margin-top: 6px;
}

.bsk-quickview-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.bsk-quickview-actions a {
  flex: 1;
  text-align: center;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE STYLES
   ========================================================================== */

.bsk-single-product-page {
  background: #ffffff;
  min-height: 100vh;
}

.bsk-product-breadcrumb {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
  margin-bottom: 30px;
}

.bsk-product-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  overflow-x: auto;
  white-space: nowrap;
}

.bsk-product-breadcrumb__list a {
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.bsk-product-breadcrumb__list a:hover {
  color: var(--bsk-blue);
}

.bsk-product-breadcrumb__separator {
  color: #cbd5e1;
}

.bsk-product-breadcrumb__current {
  color: #0f172a;
  font-weight: 600;
}

.bsk-product-showcase {
  padding: 20px 0 60px;
}

.bsk-product-showcase__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: flex-start;
}

.bsk-product-showcase__media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.bsk-product-showcase__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.bsk-product-showcase__origin-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bsk-product-showcase__subcat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #20B2AA;
  display: block;
  margin-bottom: 6px;
}

.bsk-product-showcase__title {
  font-family: 'Oswald', 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.bsk-product-showcase__desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bsk-product-features {
  margin-bottom: 28px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
}

.bsk-product-features__heading {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.bsk-product-features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bsk-product-features__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
}

.bsk-product-pricing {
  margin-bottom: 30px;
}

.bsk-product-pricing__heading {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
}

.bsk-product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bsk-btn--wa-order {
  background: #16a34a !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.bsk-btn--wa-order:hover {
  background: #15803d !important;
  color: #ffffff !important;
}

.bsk-related-products {
  padding: 50px 0 70px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.bsk-related-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.bsk-product-cta {
  padding: 60px 0 70px;
  background: #0b132b;
  color: #ffffff;
}

.bsk-product-cta__card {
  position: relative;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 30px;
}

.bsk-product-cta__card h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.bsk-product-cta__card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bsk-product-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1080px) {
  .bsk-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .bsk-products-card-wrapper {
    flex-direction: column;
  }

  .bsk-products-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 16px;
  }

  .bsk-products-nav {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
  }

  .bsk-products-nav__btn {
    width: auto;
    flex-shrink: 0;
  }

  .bsk-products-filter-type {
    display: none;
  }

  .bsk-products-main {
    padding: 20px 16px;
  }

  .bsk-products-main__header {
    flex-direction: column;
    align-items: stretch;
  }

  .bsk-products-main__actions {
    flex-wrap: wrap;
  }

  .bsk-products-main__search {
    flex: 1;
    width: auto;
  }

  .bsk-products-main__mobile-filter-btn {
    display: inline-flex;
  }

  .bsk-products-mobile-types {
    display: flex;
  }

  .bsk-product-showcase__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bsk-quickview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bsk-quickview-media {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .bsk-products-hero {
    min-height: 350px;
    padding: 90px 16px 50px;
  }

  .bsk-products-hero__title {
    font-size: 32px;
  }

  .bsk-products-hero__framed-title {
    padding: 16px 20px;
  }

  .bsk-products-grid {
    grid-template-columns: 1fr;
  }

  .bsk-related-grid {
    grid-template-columns: 1fr;
  }

  .bsk-product-showcase__title {
    font-size: 26px;
  }

  .bsk-pricing-cards {
    grid-template-columns: 1fr;
  }
}

