/* =========================================================================
  WholesaleNode — main stylesheet
   1. Variables & reset
   2. Layout helpers
   3. Buttons & icons
   4. Header / nav
   5. Hero
   6. Sections, cards, grids
   7. Accordion
   8. Stats
   9. Plugins
   10. CTA
   11. Contact form
   12. Footer
   13. Blog / single / page / archive / search / 404 / comments
   14. Sidebar & widgets
   15. WooCommerce
   16. Animations
   17. Responsive
   ========================================================================= */

/* 1. Variables & reset ---------------------------------------------------- */
:root {
  /* Brand — pulled from WholesaleNode logo blue */
  --accent:      #1a6fd4;
  --accent-dark: #1255a8;
  --accent-light:#4d97e8;
  --accent-soft: #e8f2fd;

  /* Neutrals — unchanged */
  --ink:          #0f172a;
  --ink-2:        #1f2937;
  --muted:        #64748b;
  --muted-2:      #94a3b8;
  --line:         #e9edf2;
  --line-2:       #eef1f5;
  --bg:           #f8fafc;
  --bg-muted:     #f1f5f9;
  --card:         #ffffff;

  /* Dark surface — logo's near-black background */
  --navy:   #080d14;
  --navy-2: #0f1a2b;

  /* Layout — unchanged */
  --radius:    14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
  --shadow:    0 10px 30px rgba(15,23,42,.06);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.12);
  --container: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink-2);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* 2. Layout helpers ------------------------------------------------------- */
.b2bck-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.b2bck-text-accent { color: var(--accent); }

.b2bck-grid { display: grid; gap: 24px; }
.b2bck-grid--3 { grid-template-columns: repeat(3, 1fr); }
.b2bck-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* 3. Buttons & icons ------------------------------------------------------ */
.b2bck-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex: none; }

.b2bck-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-weight: 600; font-size: 15px; line-height: 1;
	padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
	cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.b2bck-btn .b2bck-icon { width: 1.05em; height: 1.05em; }
.b2bck-btn:hover { transform: translateY(-1px); }
.b2bck-btn--lg { padding: 14px 26px; font-size: 16px; }
.b2bck-btn--block { width: 100%; }

.b2bck-btn--primary { background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; box-shadow: 0 8px 20px rgba(26, 111, 212, .28); }
.b2bck-btn--primary:hover { color: #fff; box-shadow: 0 12px 26px rgba(26, 111, 212, .38); }
.b2bck-btn--ghost { background: transparent; color: var(--ink-2); }
.b2bck-btn--ghost:hover { background: var(--bg-muted); color: var(--ink); }
.b2bck-btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.b2bck-btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.b2bck-btn--white { background: #fff; color: var(--ink); }
.b2bck-btn--white:hover { background: #f1f5f9; color: var(--ink); }

/* 4. Header / nav --------------------------------------------------------- */
.b2bck-header {
	position: sticky; top: 0; z-index: 200;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--line);
}
.b2bck-header__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.b2bck-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 18px; }
.b2bck-brand__mark {
	display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center;
	border-radius: 9px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; font-size: 18px;
}
.custom-logo-link { display: inline-flex; }

.b2bck-nav { margin-left: auto; }
.b2bck-nav__menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.b2bck-nav__menu a { color: var(--muted); font-weight: 500; font-size: 15px; }
.b2bck-nav__menu a:hover { color: var(--ink); }
.b2bck-header__actions { display: flex; gap: 10px; }
.b2bck-nav__toggle { display: none; }

/* 5. Hero ----------------------------------------------------------------- */
.b2bck-hero {
	position: relative; text-align: center; overflow: hidden;
	padding: 88px 0 76px;
	background:
		radial-gradient(60% 60% at 50% 0%, rgba(26, 111, 212, .08), transparent 70%),
    	linear-gradient(180deg, #fff, var(--bg));
}
.b2bck-hero__inner { max-width: 880px; }
.b2bck-badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--accent-soft); color: var(--accent-dark);
	padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
	border: 1px solid #c5ddf7;
}
.b2bck-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.b2bck-hero__title { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.02em; margin: 22px 0 0; }
.b2bck-hero__subtitle { font-size: clamp(16px, 2vw, 19px); color: var(--muted); margin: 20px auto 0; max-width: 720px; }
.b2bck-hero__pills { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; list-style: none; padding: 0; margin: 26px 0 0; }
.b2bck-hero__pills li { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-weight: 500; font-size: 15px; }
.b2bck-hero__pills .b2bck-icon { color: var(--accent); }
.b2bck-hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* 6. Sections, cards, grids ---------------------------------------------- */
.b2bck-section { padding: 80px 0; }
.b2bck-section--muted { background: var(--bg-muted); }
.b2bck-section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.b2bck-section__title { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.b2bck-section__sub { color: var(--muted); margin: 14px 0 0; font-size: 16px; }

.b2bck-card {
	background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius);
	padding: 26px; box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.b2bck-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #e2e8f0; }
.b2bck-card--center { text-align: center; }
.b2bck-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 11px;
	background: var(--accent-soft); color: var(--accent); font-size: 22px; margin-bottom: 16px;
}
.b2bck-card--center .b2bck-card__icon { margin-left: auto; margin-right: auto; }
.b2bck-card__icon--inline { width: 34px; height: 34px; font-size: 17px; margin: 0 10px 0 0; vertical-align: middle; }
.b2bck-card__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.b2bck-card--center .b2bck-card__title { font-size: 16px; }
.b2bck-card__text { color: var(--muted); margin: 0; font-size: 14.5px; }

/* 7. Accordion ------------------------------------------------------------ */
.b2bck-accordion { display: flex; flex-direction: column; gap: 14px; max-width: 1040px; margin: 0 auto; }
.b2bck-accordion__item {
	background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius);
	box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease;
}
.b2bck-accordion__item.is-open { box-shadow: var(--shadow); border-color: #e2e8f0; }
.b2bck-accordion__heading { margin: 0; }
.b2bck-accordion__trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: none; border: 0; cursor: pointer; padding: 20px 24px; font-family: inherit; text-align: left;
}
.b2bck-accordion__label { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 700; color: var(--ink); }
.b2bck-accordion__icon { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); font-size: 17px; }
.b2bck-accordion__meta { display: inline-flex; align-items: center; gap: 14px; }
.b2bck-accordion__count { color: var(--muted-2); font-size: 14px; font-weight: 500; }
.b2bck-accordion__chevron { width: 11px; height: 11px; border-right: 2px solid var(--muted-2); border-bottom: 2px solid var(--muted-2); transform: rotate(45deg); transition: transform .25s ease; margin-top: -4px; }
.b2bck-accordion__item.is-open .b2bck-accordion__chevron { transform: rotate(-135deg); margin-top: 2px; }
.b2bck-accordion__panel { padding: 0 24px 26px; }

.b2bck-subcard { background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 20px; }
.b2bck-subcard__title { display: flex; align-items: center; gap: 9px; font-size: 15.5px; font-weight: 700; margin: 0 0 10px; }
.b2bck-subcard__icon { color: var(--accent); font-size: 17px; display: inline-flex; }
.b2bck-subcard__text { color: var(--muted); font-size: 14px; margin: 0; }

/* 8. Stats ---------------------------------------------------------------- */
.b2bck-stats {
	margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr);
	background: linear-gradient(135deg, var(--navy), var(--navy-2));
	border-radius: var(--radius); padding: 38px 24px; text-align: center;
}
.b2bck-stats__item { display: flex; flex-direction: column; gap: 6px; position: relative; }
.b2bck-stats__item + .b2bck-stats__item::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: rgba(255, 255, 255, .12); }
.b2bck-stats__number { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.b2bck-stats__label { color: #93a4bd; font-size: 14px; font-weight: 500; }

/* 9. Plugins -------------------------------------------------------------- */
.b2bck-plugincol { padding: 28px; }
.b2bck-plugincol .b2bck-card__title { display: flex; align-items: center; font-size: 17px; }
.b2bck-plugincol__list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.b2bck-plugincol__list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); font-size: 14.5px; }
.b2bck-plugincol__list .b2bck-icon { color: #16a34a; margin-top: 3px; }
.b2bck-note {
	margin: 34px auto 0; max-width: 900px; display: flex; gap: 14px; align-items: flex-start;
	background: var(--accent-soft); border: 1px solid #c5ddf7; border-radius: var(--radius); padding: 20px 24px;
}
.b2bck-note__icon { color: var(--accent); font-size: 22px; flex: none; margin-top: 2px; }
.b2bck-note p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

/* 10. CTA ----------------------------------------------------------------- */
.b2bck-cta {
	padding: 80px 0; text-align: center;
	background: linear-gradient(135deg, var(--navy), var(--navy-2));
	position: relative; overflow: hidden;
}
.b2bck-cta::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(50% 60% at 50% 0%, rgba(26, 111, 212, .18), transparent 70%);
	pointer-events: none;
}
.b2bck-cta__inner { position: relative; max-width: 760px; }
.b2bck-cta__title { color: #fff; font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; margin: 0; letter-spacing: -0.02em; }
.b2bck-cta__sub { color: #b8c4d6; font-size: 17px; margin: 18px auto 0; max-width: 620px; }
.b2bck-cta__points { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; list-style: none; padding: 0; margin: 28px 0 0; }
.b2bck-cta__points li { display: inline-flex; align-items: center; gap: 8px; color: #dbe2ec; font-size: 15px; }
.b2bck-cta__points .b2bck-icon { color: var(--accent-light); }
.b2bck-cta__actions { margin-top: 34px; }

/* 11. Contact form -------------------------------------------------------- */
.b2bck-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.b2bck-contact__why-title { font-size: 22px; font-weight: 700; margin: 0 0 22px; }
.b2bck-why { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.b2bck-why__item { display: flex; gap: 14px; }
.b2bck-why__icon { color: var(--accent); font-size: 22px; flex: none; margin-top: 2px; }
.b2bck-why__heading { display: block; font-size: 16px; color: var(--ink); }
.b2bck-why__text { display: block; color: var(--muted); font-size: 14.5px; }

.b2bck-contact__form-wrap { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.b2bck-form__row { display: flex; flex-direction: column; gap: 7px; margin: 0 0 18px; }
.b2bck-form__row label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.b2bck-req { color: var(--accent); }
.b2bck-form input, .b2bck-form textarea {
	width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
	border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.b2bck-form input:focus, .b2bck-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26, 111, 212, .15); }
.b2bck-form textarea { resize: vertical; min-height: 120px; }
.b2bck-form__row--submit { margin-bottom: 8px; }
.b2bck-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.b2bck-form__status { font-size: 14px; margin: 6px 0 0; min-height: 18px; }
.b2bck-form__status.is-success { color: #16a34a; }
.b2bck-form__status.is-error { color: #dc2626; }
.b2bck-alert { border-radius: 10px; padding: 12px 16px; font-size: 14.5px; margin-bottom: 20px; }
.b2bck-alert--success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.b2bck-alert--error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* 12. Footer -------------------------------------------------------------- */
.b2bck-footer { background: var(--navy); color: #aebbcc; padding: 60px 0 26px; }
.b2bck-footer__widgets { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.b2bck-footer__title, .b2bck-footer .widget__title { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.b2bck-footer p { margin: 0; font-size: 14.5px; color: #93a4bd; }
.b2bck-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.b2bck-footer__menu a { color: #aebbcc; font-size: 14.5px; }
.b2bck-footer__menu a:hover { color: #fff; }
.b2bck-footer__menu--plain li { color: #93a4bd; font-size: 14.5px; }
.b2bck-footer .widget { margin-bottom: 0; }
.b2bck-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 40px; padding-top: 22px; text-align: center; }
.b2bck-footer__bottom p { color: #7d8ca3; font-size: 13.5px; }

/* 13. Blog / single / page / archive / search / 404 / comments ----------- */
.b2bck-content { display: grid; gap: 40px; padding: 56px 24px; align-items: start; }
.b2bck-content.has-sidebar { grid-template-columns: minmax(0, 1fr) 320px; }
.b2bck-content.is-full-width { grid-template-columns: minmax(0, 1fr); max-width: 880px; }
.b2bck-page-head { margin-bottom: 30px; }
.b2bck-page-head__title { font-size: 32px; font-weight: 800; margin: 0; }
.b2bck-page-head__desc { color: var(--muted); margin-top: 8px; }

.b2bck-postlist { display: flex; flex-direction: column; gap: 28px; }
.b2bck-post-card { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; }
.b2bck-post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.b2bck-post-card__thumb img { width: 100%; display: block; aspect-ratio: 16 / 8; object-fit: cover; }
.b2bck-post-card__body { padding: 24px; }
.b2bck-post-card__meta, .b2bck-single__meta { color: var(--muted-2); font-size: 13.5px; }
.b2bck-post-card__title { margin: 8px 0 10px; font-size: 22px; }
.b2bck-post-card__title a { color: var(--ink); }
.b2bck-post-card__title a:hover { color: var(--accent); }
.b2bck-post-card__excerpt { color: var(--muted); }
.b2bck-readmore { display: inline-block; margin-top: 12px; font-weight: 600; }

.b2bck-single__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 0 0 12px; }
.b2bck-single__meta { margin-bottom: 22px; }
.b2bck-single__thumb { margin: 0 0 26px; }
.b2bck-single__thumb img { width: 100%; border-radius: var(--radius); }
.b2bck-single__content { font-size: 17px; color: var(--ink-2); }
.b2bck-single__content > * { margin-top: 0; }
.b2bck-single__content p, .b2bck-single__content ul, .b2bck-single__content ol, .b2bck-single__content blockquote { margin-bottom: 1.2em; }
.b2bck-single__content h2 { margin: 1.6em 0 .6em; }
.b2bck-single__content blockquote { border-left: 4px solid var(--accent); padding-left: 18px; color: var(--muted); font-style: italic; }
.b2bck-single__content img { border-radius: var(--radius-sm); }
.b2bck-single__content a { text-decoration: underline; }
.b2bck-tags { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.b2bck-tags a { background: var(--bg-muted); padding: 5px 12px; border-radius: 999px; font-size: 13px; color: var(--muted); }
.b2bck-tags a:hover { background: var(--accent-soft); color: var(--accent); }

.post-navigation, .posts-navigation { margin-top: 40px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.post-navigation a, .posts-navigation a { color: var(--ink-2); font-weight: 600; }
.post-navigation a:hover { color: var(--accent); }
.nav-subtitle { display: block; color: var(--muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.pagination, .b2bck-content .navigation { margin-top: 40px; }
.pagination .nav-links, .navigation .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-2); background: #fff; }
.pagination .page-numbers.current { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination a.page-numbers:hover { border-color: var(--accent); color: var(--accent); }

.b2bck-search-result { padding: 20px 0; border-bottom: 1px solid var(--line); }
.b2bck-search-result__title { margin: 0 0 4px; font-size: 20px; }
.b2bck-search-result__meta { color: var(--muted-2); font-size: 13px; margin-bottom: 6px; }
.b2bck-none { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 40px; text-align: center; }
.b2bck-none__title { margin-top: 0; }

.b2bck-404 { text-align: center; padding: 60px 0; }
.b2bck-404__code { font-size: clamp(80px, 16vw, 150px); font-weight: 800; line-height: 1; margin: 0; background: linear-gradient(135deg, var(--accent-light), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.b2bck-404__title { font-size: 28px; margin: 8px 0 12px; }
.b2bck-404__text { color: var(--muted); max-width: 460px; margin: 0 auto 24px; }
.b2bck-404__search { max-width: 420px; margin: 0 auto 24px; }

.b2bck-comments { margin-top: 56px; }
.b2bck-comments__title { font-size: 22px; margin-bottom: 20px; }
.b2bck-comments__list { list-style: none; margin: 0 0 30px; padding: 0; }
.b2bck-comments__list ol { list-style: none; }
.b2bck-comments .comment-body { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 18px; margin-bottom: 16px; }
.b2bck-comments .comment-author { font-weight: 600; }
.b2bck-comments .comment-meta { font-size: 13px; color: var(--muted-2); }
.b2bck-comments .children { list-style: none; margin: 0 0 0 28px; padding: 0; }
.comment-respond { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px; margin-top: 20px; }
.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond input[type="url"], .comment-respond textarea {
	width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; font-family: inherit; font-size: 15px; margin-bottom: 14px;
}
.comment-respond textarea:focus, .comment-respond input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26, 111, 212, .15); }

/* 14. Sidebar & widgets --------------------------------------------------- */
.site-sidebar { display: flex; flex-direction: column; gap: 26px; }
.widget { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.widget__title { font-size: 16px; font-weight: 700; margin: 0 0 14px; color: var(--ink); }
.widget ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.widget ul li a { color: var(--ink-2); }
.widget ul li a:hover { color: var(--accent); }

.b2bck-searchform { display: flex; gap: 8px; }
.b2bck-searchform__input { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; font-family: inherit; font-size: 15px; }
.b2bck-searchform__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26, 111, 212, .15); }
.b2bck-searchform__submit { display: inline-flex; align-items: center; justify-content: center; width: 46px; border: 0; border-radius: 10px; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; cursor: pointer; font-size: 18px; }

/* 15. WooCommerce --------------------------------------------------------- */
.b2bck-shop { padding: 56px 24px; display: grid; gap: 40px; max-width: var(--container); margin: 0 auto; align-items: start; }
.b2bck-shop.has-sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
.woocommerce ul.products li.product { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; text-align: center; }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 16px; font-weight: 600; color: var(--ink); padding: 12px 0 4px; }
.woocommerce ul.products li.product .price { color: var(--ink-2); font-weight: 700; }
.woocommerce ul.products li.product .price del { color: var(--muted-2); font-weight: 400; }
.woocommerce span.onsale { background: var(--accent); color: #fff; border-radius: 999px; min-height: auto; min-width: auto; padding: 4px 12px; line-height: 1.4; font-weight: 600; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt {
	background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #fff; border-radius: 10px; padding: 11px 18px; font-weight: 600; border: 0; transition: box-shadow .2s ease, transform .15s ease;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(26, 111, 212, .28); }

.woocommerce .woocommerce-message, .woocommerce .woocommerce-info { border-top-color: var(--accent); border-radius: 10px; }
.woocommerce .woocommerce-message::before, .woocommerce .woocommerce-info::before { color: var(--accent); }
.woocommerce div.product .product_title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--accent-dark); font-weight: 700; }
.woocommerce .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--accent); }
.woocommerce-store-notice, p.demo_store { background: var(--ink); }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span.current { border-radius: 8px; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--accent); color: #fff; border: 0; }

/* 16. Animations ---------------------------------------------------------- */
html.b2bck-js .b2bck-reveal { opacity: 0; transform: translateY(24px); }
.b2bck-reveal { transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1); }
/* .b2bck-reveal.is-visible { opacity: 1; transform: none; } */
html.b2bck-js .b2bck-reveal.is-visible { opacity: 1; transform: none; }
/* staggered children */
html.b2bck-js .b2bck-reveal.is-visible .b2bck-card,
html.b2bck-js .b2bck-reveal.is-visible .b2bck-subcard { animation: b2bck-fade-up .5s both; }
html.b2bck-js .b2bck-reveal.is-visible > *:nth-child(2) { animation-delay: .05s; }

@keyframes b2bck-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes b2bck-count { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.b2bck-header { animation: b2bck-fade-down .5s ease both; }
@keyframes b2bck-fade-down { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

.b2bck-accordion__panel { animation: b2bck-acc .28s ease; }
@keyframes b2bck-acc { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	html.b2bck-js .b2bck-reveal { opacity: 1; transform: none; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* 17. Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
	.b2bck-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.b2bck-footer__widgets { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.b2bck-header__actions { display: none; }
	.b2bck-nav { margin-left: auto; }
	.b2bck-nav__toggle {
		display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
		width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; gap: 0;
	}
	.b2bck-nav__bars, .b2bck-nav__bars::before, .b2bck-nav__bars::after { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform .2s ease, opacity .2s ease; }
	.b2bck-nav__bars::before { content: ""; position: absolute; top: -6px; }
	.b2bck-nav__bars::after { content: ""; position: absolute; top: 6px; }
	.b2bck-nav[aria-expanded] {}
	.b2bck-nav__menu {
		position: absolute; left: 0; right: 0; top: 68px; background: #fff; border-bottom: 1px solid var(--line);
		flex-direction: column; gap: 0; padding: 8px 24px 16px; box-shadow: var(--shadow); display: none;
	}
	.b2bck-nav.is-open .b2bck-nav__menu { display: flex; }
	.b2bck-nav__menu li { padding: 10px 0; border-bottom: 1px solid var(--line-2); }
	.b2bck-nav.is-open .b2bck-nav__bars { background: transparent; }
	.b2bck-nav.is-open .b2bck-nav__bars::before { transform: translateY(6px) rotate(45deg); }
	.b2bck-nav.is-open .b2bck-nav__bars::after { transform: translateY(-6px) rotate(-45deg); }

	.b2bck-grid--3 { grid-template-columns: 1fr; }
	.b2bck-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
	.b2bck-stats__item:nth-child(3)::before { display: none; }
	.b2bck-contact { grid-template-columns: 1fr; gap: 32px; }
	.b2bck-content.has-sidebar, .b2bck-shop.has-sidebar { grid-template-columns: 1fr; }
	.b2bck-footer__widgets { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px) {
	.b2bck-grid--4 { grid-template-columns: 1fr; }
	.b2bck-stats { grid-template-columns: 1fr; }
	.b2bck-stats__item::before { display: none !important; }
	.b2bck-section { padding: 56px 0; }
	.b2bck-hero { padding: 60px 0 50px; }
}

/* ==========================================================================
   18. Pricing section
   Appended after section 17 (Responsive) in style.css
   Uses the same --accent / --card / --line / --ink vars as the rest of the file.
   ========================================================================== */

/* ── Section background (matches .b2bck-section--muted) ─────────────────── */
#pricing.b2bck-section {
	background: var(--bg-muted);
}

/* ── Pricing grid — equal-height cards ───────────────────────────────────── */
.b2bck-pricing-grid {
	align-items: stretch;
}

/* ── Base pricing card ───────────────────────────────────────────────────── */
/*    Extends .b2bck-card; extra rules only.                                 */
.b2bck-card--pricing {
	display: flex;
	flex-direction: column;
	padding: 28px 24px 24px;

	/* reveal start state — JS adds .b2bck-pricing-card, CSS uses it as gate */
	transition:
		opacity  .5s cubic-bezier(.2, .7, .2, 1),
		transform .5s cubic-bezier(.2, .7, .2, 1),
		box-shadow .2s ease,
		border-color .2s ease;
}

/* hide only when JS has stamped the class (mirrors the b2bck-reveal pattern) */
html.b2bck-js .b2bck-card--pricing.b2bck-pricing-card {
	opacity: 0;
	transform: translateY(24px);
}

html.b2bck-js .b2bck-card--pricing.b2bck-pricing-card.is-visible {
	opacity: 1;
	transform: none;
}

/* ── Featured / highlighted card ────────────────────────────────────────── */
.b2bck-card--featured {
	border: 2px solid var(--accent);
	box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow-sm);
}

.b2bck-card--featured:hover {
	box-shadow: 0 0 0 4px var(--accent-soft), var(--shadow-lg);
	border-color: var(--accent-dark);
}

/* ── Badge ("Recommended", "Best Value") ────────────────────────────────── */
.b2bck-pricing__badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 14px;
	background: var(--accent-soft);
	color: var(--accent-dark);
	border: 1px solid #c5ddf7;
	align-self: flex-start;
}

/* ── Plan header ─────────────────────────────────────────────────────────── */
.b2bck-pricing__header {
	margin-bottom: 20px;
}

.b2bck-pricing__name {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	margin: 0 0 4px;
	line-height: 1.25;
}

.b2bck-pricing__desc {
	font-size: 13px;
	color: var(--muted);
	margin: 0;
	line-height: 1.4;
}

/* ── Price display ───────────────────────────────────────────────────────── */
.b2bck-pricing__price {
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line-2);
}

.b2bck-pricing__currency {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--muted);
	margin-top: 6px;
	line-height: 1;
}

.b2bck-pricing__amount {
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
	letter-spacing: -0.03em;
}

/* ── Feature list ────────────────────────────────────────────────────────── */
.b2bck-pricing__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex: 1; /* push CTA button to card bottom */
	display: flex;
	flex-direction: column;
}

.b2bck-pricing__feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--ink-2);
	padding: 9px 0;
	border-bottom: 1px solid var(--line-2);
}

.b2bck-pricing__feature:last-child {
	border-bottom: none;
}

.b2bck-pricing__feature .b2bck-icon {
	color: #16a34a;
	flex-shrink: 0;
	width: 15px;
	height: 15px;
}

/* ── Pricing-specific button overrides ───────────────────────────────────── */
/*    .b2bck-btn base rules already defined in section 3.                    */
.b2bck-card--pricing .b2bck-btn {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 12px 20px;
}

/* ── Money-back guarantee bar ────────────────────────────────────────────── */
.b2bck-pricing__guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 36px;
	font-size: 14px;
	color: var(--muted);
}

.b2bck-pricing__guarantee .b2bck-icon {
	color: #16a34a;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* ── Responsive overrides ────────────────────────────────────────────────── */
/* 4-col → 2-col already handled by the global .b2bck-grid--4 rule at 1024px */
/* No extra breakpoints needed; the shared grid rules cover it.              */

@media (max-width: 560px) {
	/* 1-col already handled by .b2bck-grid--4 at 560px in section 17 */
	.b2bck-pricing__amount {
		font-size: 2.25rem;
	}
}

/* ── Reduced-motion: skip reveal entirely (mirrors section 16 rule) ──────── */
@media (prefers-reduced-motion: reduce) {
	html.b2bck-js .b2bck-card--pricing.b2bck-pricing-card {
		opacity: 1;
		transform: none;
	}
}