:root {
  /* Brand */
  --brand-red: #840707;
  --white: #ffffff;
  --black: #000000;

  /* Semantic */
  --bg: var(--white);
  --surface: var(--white);
  --text: var(--black);
  --text-inverse: var(--white);

  --primary: var(--brand-red);
  --primary-hover: #6f0606;
  --primary-active: #5c0505;

  --border: rgba(0, 0, 0, 0.12);
  --border-strong: rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-header: "ATF Alternate Gothic Condensed", Arial, sans-serif;
  --font-body: Arial, sans-serif;

  --container: 1200px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-1: 120ms;
  --dur-2: 180ms;
}

/* =========================
   Base / Reset
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* Headings */
h1,
h2,
h3,
.display {
  font-family: var(--font-header);
  letter-spacing: 0.04em;
}

/* Layout container */
.bct-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 20px;
}

/* NOTE: keeping this as you had it, but fixing the missing px in min() */
.bct-header_content {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 0 50px;
}

/* =========================
   TOP BAR
   ========================= */
.bct-topbar {
  background: var(--black);
  color: var(--white);
}

/* Desktop: Logo | Centered Search | Icons */
.bct-topbar__inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 720px) 1fr; /* equal side columns */
  align-items: center;
  gap: 24px;
}

/* Logo */
.bct-logo {
  justify-self: start;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-header);
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Search (desktop only) */
.bct-search {
  justify-self: center;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  overflow: hidden;
}

.bct-search__input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 14px;
  font: 400 14px/1 var(--font-body);
  background: var(--white);
  color: var(--black);
}

.bct-search__btn {
  width: 48px;
  height: 100%;
  border: 0;
  cursor: pointer;
  background: var(--brand-red);
  color: var(--white);
  display: grid;
  place-items: center;
}

.bct-search__btn i {
  font-size: 12px;
}

/* Fix: hover should not turn icon/text to dark red on a red background */
.bct-search__btn:hover {
  filter: brightness(1.06);
}

/* Icons (desktop only) */
.bct-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.bct-icon {
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  opacity: 0.95;
}

.bct-icon:hover {
  opacity: 1;
  color: var(--primary-hover);
}

/* =========================
   DESKTOP NAV BAR
   ========================= */
.bct-nav {
  background: var(--brand-red);
}

.bct-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.bct-nav__list a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-header);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 6px;
}

.bct-nav__list a:hover {
  color: var(--primary-active);
}

/* =========================
   HAMBURGER (mobile only)
   ========================= */
.bct-burger {
  display: none;
  width: 44px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.bct-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
  transition: transform var(--dur-2) var(--ease),
    opacity var(--dur-2) var(--ease);
}

body.bct-menu-open .bct-burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.bct-menu-open .bct-burger span:nth-child(2) {
  opacity: 0;
}
body.bct-menu-open .bct-burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   MOBILE MENU PANEL
   ========================= */
.bct-nav--mobile {
  background: var(--brand-red);
}

.bct-mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 0 8px;
}

.bct-mobile-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.16);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-header);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.bct-mobile-action i {
  font-size: 16px;
}
.bct-mobile-action span {
  font-size: 13px;
}

.bct-mobile__list {
  list-style: none;
  margin: 0;
  padding: 10px 0 18px;
  display: grid;
  gap: 12px;
}

.bct-mobile__list a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-header);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   MOBILE SEARCH OVERLAY
   ========================= */
.bct-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  padding: 16px;
}

.bct-search-overlay__inner {
  width: min(720px, 100%);
  margin: 0 auto;
  padding-top: 12vh;
}

.bct-search-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  margin-bottom: 16px;
}

.bct-search-overlay__title {
  font-family: var(--font-header);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bct-search-overlay__close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.bct-search-overlay__form {
  display: grid;
  gap: 12px;
}

.bct-search-overlay__input {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 16px;
  font-size: 18px;
  outline: none;
}

.bct-search-overlay__submit {
  height: 52px;
  border-radius: 16px;
  border: 0;
  background: var(--brand-red);
  color: var(--white);
  font-family: var(--font-header);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

/* =========================
   RESPONSIVE SWITCHES
   ========================= */
@media (max-width: 700px) {
  /* Top bar becomes: logo + burger */
  .bct-topbar__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 10px 0 12px;
  }

  /* Logo sizing */
  .bct-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .bct-logo img {
    height: 64px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
  }

  .bct-search,
  .bct-icons {
    display: none;
  }

  .bct-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Switch navs */
  .bct-nav--desktop {
    display: none;
  }

  .bct-nav--mobile {
    display: block;
  }
}

/* Safety: never show search overlay on desktop */
@media (min-width: 701px) {
  .bct-search-overlay {
    display: none !important;
  }
}

/* =========================
   Homepage Carousel (BCT) - Full width
   ========================= */
.bct-hero {
  position: relative;
  width: 100%;
  margin: 0 auto 18px;
  padding: 0;
}

.bct-hero__track {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #111;
}

.bct-hero__slide {
  display: none;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: #111;
}

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

.bct-hero__slide.is-active {
  display: block;
}

/* empty state */
.bct-hero__slide--empty {
  display: grid;
  place-items: center;
  background: #f3f4f6;
  color: #111827;
}

.bct-hero__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  z-index: 2;
}

.bct-hero__btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.bct-hero__btn--prev {
  left: 18px;
}
.bct-hero__btn--next {
  right: 18px;
}

.bct-hero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
  padding: 0 16px;
}

.bct-hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 24, 39, 0.25);
  cursor: pointer;
}

.bct-hero__dot.is-active {
  background: rgba(225, 29, 46, 0.95);
}

/* On wide screens */
@media (min-width: 1200px) {
  .bct-hero__slide {
    aspect-ratio: 24 / 9;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .bct-hero__slide {
    aspect-ratio: 16 / 10;
  }
  .bct-hero__btn--prev {
    left: 10px;
  }
  .bct-hero__btn--next {
    right: 10px;
  }
}

/* =========================
   Announcement bar
   ========================= */
.bct-announcement {
  background: var(--primary);
  color: var(--text-inverse);
  font-family: var(--font-header);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.bct-announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.bct-announcement__link,
.bct-announcement__text {
  color: var(--text-inverse);
  text-decoration: none;
  opacity: 0.95;
}

.bct-announcement__link:hover {
  opacity: 1;
}

.bct-announcement__badge {
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  font-size: 11px;
}

/* =========================
   Sections (shared)
   ========================= */
.bct-section {
  padding: 44px 0;
}

.bct-section__title {
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.08em;
  margin: 0 0 22px;
}

.bct-section__title--invert {
  color: var(--white);
}

.bct-empty {
  border: 1px dashed var(--border-strong);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
}

.bct-empty strong {
  display: block;
  margin-bottom: 6px;
}

/* =========================
   Categories (themed boxes)
   ========================= */
.bct-cats__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .bct-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .bct-cats__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.bct-catbox {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.75);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: transform var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}

.bct-catbox:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  border-color: rgba(132, 7, 7, 0.95);
}

.bct-catbox:focus-visible {
  outline: 3px solid rgba(132, 7, 7, 0.55);
  outline-offset: 3px;
}

/* Image frame (keeps logos looking clean + consistent) */
.bct-catbox__media {
  position: relative;
  aspect-ratio: 1 / 1; /* square like your mock */
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
}

/* subtle inset “frame” */
.bct-catbox__media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

/* Image itself */
.bct-catbox__img {
  position: relative;
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain; /* ✅ prevents stretching */
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.1));
}

/* Fallback */
.bct-catbox__placeholder {
  width: 78%;
  height: 78%;
  border-radius: 12px;
  border: 2px dashed rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.03);
}

/* Label bar */
.bct-catbox__label {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px 14px;
  font-family: var(--font-header);
  letter-spacing: 0.06em;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.05;

  /* theme bar */
  background: #fff;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

/* Optional: slight red accent on hover */
.bct-catbox:hover .bct-catbox__label {
  color: var(--brand-red);
}

/* =========================
   Products grid (category page)
   ========================= */
.bct-products-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

@media (max-width: 560px) {
  .bct-products-grid {
    grid-template-columns: 1fr;
  }
}

.bct-product-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease);
}

.bct-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.bct-product-card__img {
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.04);
}

.bct-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bct-product-card__body {
  padding: 12px 14px 14px;
}

.bct-product-card__name {
  font-weight: 700;
  margin-bottom: 6px;
}

.bct-product-card__price {
  opacity: 0.8;
}

/* =========================
   Contact (full width + dotted stitch)
   ========================= */
.bct-contact {
  padding: 0;
}

.bct-contact__wrap {
  position: relative;
  background: #0b0b0b;
  padding: 56px 0;
  overflow: hidden;
}

/* Dotted stitch line (running stitch) */
.bct-contact__stitch {
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  pointer-events: none;
}

.bct-contact__stitch--top {
  top: 14px;
}

.bct-contact__stitch--bottom {
  bottom: 14px;
}

.bct-contact__stitch svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bct-contact__stitch line {
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2 14;
}

/* Contact layout */
.bct-contact__grid {
  margin-top: 14px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr 1.4fr;
  color: #fff;
}

@media (max-width: 980px) {
  .bct-contact__grid {
    grid-template-columns: 1fr;
  }
}

.bct-contact__col h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.bct-contact__col p {
  margin: 0 0 18px;
  opacity: 0.9;
}

/* Form */
.bct-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bct-form__field span {
  display: block;
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.bct-form input,
.bct-form textarea {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
}

.bct-form input:focus,
.bct-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.bct-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  align-self: flex-end;
}

.bct-btn--primary {
  background: var(--brand-red);
  color: #fff;
}

.bct-btn--primary:hover {
  filter: brightness(1.06);
}

/* =========================
   Footer base
   ========================= */
.bct-footer {
  background: #0b0b0b;
  color: #fff;
  margin-top: 30px;
  padding: 22px 0;
}

.bct-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bct-footer__text {
  opacity: 0.85;
  font-size: 13px;
}

.bct-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bct-footer__socials a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.9;
}

.bct-footer__socials a:hover {
  opacity: 1;
}

@media (max-width: 700px) {
  .bct-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}


/* =========================================================
   TOP BAR (LOCKED) — logo left / search center / icons right
   Copy-paste safe: overrides any old styles
   ========================================================= */

   .bct-topbar{
    background: var(--black);
    color: var(--white);
  }
  
  .bct-topbar .bct-container{
    padding-left: 15px;
    padding-right: 20px;
  }
  
  .bct-topbar__inner{
    min-height: 64px;
    display: grid;
    grid-template-columns: 180px minmax(420px, 780px) 180px;
    align-items: center;
    gap: 18px;
  }
  
  /* LEFT: Logo */
  .bct-logo{
    justify-self: start;
    display: inline-flex;
    text-decoration: none;
  }
  
  .bct-logo img{
    height: 80px;
    width: auto;
    max-width: 170px;
    display: block;
  }
  
  /* CENTER: Search pill */
  .bct-search{
    justify-self: center;
    width: 100%;
    height: 34px;
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.10);
  }
  
  .bct-search__input{
    width: 100%;
    border: 0;
    outline: 0;
    padding: 0 14px;
    font: 400 14px/1 var(--font-body);
    color: var(--black);
    background: var(--white);
  }
  
  .bct-search__btn{
    width: 54px;
    border: 0;
    cursor: pointer;
    background: var(--brand-red);
    color: var(--white);
    display: grid;
    place-items: center;
  }
  
  .bct-search__btn:hover{
    filter: brightness(1.06);
  }
  
  .bct-search__icon{
    width: 18px;
    height: 18px;
    display: block;
  }
  
  /* RIGHT: icons */
  .bct-icons{
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }
  
  .bct-icon{
    color: var(--white);
    text-decoration: none;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .bct-icon__svg{
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
  }
  
  .bct-icon:hover{
    opacity: 1;
    color: var(--primary-hover);
  }
  
  /* Responsive: keep the black bar clean on smaller screens */
  @media (max-width: 900px){
    .bct-topbar__inner{
      grid-template-columns: 150px 1fr 150px;
    }
  }
  
  @media (max-width: 700px){
    .bct-topbar__inner{
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 10px 0 12px;
    }
  
    /* hide search + icons on mobile (your burger/menu handles it) */
    .bct-search,
    .bct-icons{
      display: none;
    }
  
    .bct-logo img{
      height: 64px;
      max-width: 200px;
    }
  }
  

  /* Footer (matches screenshot layout) */
.bct-footer {
  background: #07080b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.bct-footer__inner {
  padding: 34px 0 26px;
}

.bct-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 54px;
  align-items: start;
}

/* Brand block */
.bct-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bct-footer__logo {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.bct-footer__brandname {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.92);
}

.bct-footer__title {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}

.bct-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.bct-footer__list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.bct-footer__list a:hover {
  color: rgba(255, 255, 255, 0.95);
}

/* Socials */
.bct-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.bct-footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.bct-footer__socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.28);
}

/* Bottom bar */
.bct-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.bct-footer__bottominner {
  text-align: center;
  display: grid;
  gap: 6px;
}

.bct-footer__bottomline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 980px) {
  .bct-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 560px) {
  .bct-footer__grid {
    grid-template-columns: 1fr;
  }

  .bct-footer__socials {
    margin-top: 4px;
  }
}

.bct-shophead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.bct-shophead__meta{
  display:flex;
  align-items:center;
  gap:12px;
  opacity:.85;
  font-size:14px;
}

.bct-filterpills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 18px;
}

.bct-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  text-decoration:none;
  color:var(--text);
  background: var(--surface);
  font-weight:700;
  font-family: var(--font-header);
  letter-spacing:.4px;
}
.bct-pill:hover{ border-color: var(--border-strong); }
.bct-pill.is-active{
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.bct-products-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1050px){
  .bct-products-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px){
  .bct-products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px){
  .bct-products-grid{ grid-template-columns: 1fr; }
}

.bct-productcard{
  display:block;
  text-decoration:none;
  color:inherit;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background: var(--surface);
  transition: transform .15s ease, border-color .15s ease;
}
.bct-productcard:hover{
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.bct-productcard__media{
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
  display:flex;
  align-items:center;
  justify-content:center;
}
.bct-productcard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.bct-productcard__placeholder{
  width:100%;
  height:100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,.06),
    rgba(0,0,0,.06) 10px,
    rgba(0,0,0,.03) 10px,
    rgba(0,0,0,.03) 20px
  );
}

.bct-productcard__body{
  padding: 12px 12px 14px;
}
.bct-productcard__title{
  font-family: var(--font-header);
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.bct-productcard__price{
  margin-top: 6px;
  font-weight: 800;
}

.bct-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top: 18px;
}

.bct-pagebtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  text-decoration:none;
  color:var(--text);
  background:var(--surface);
  font-weight:700;
}
.bct-pagebtn.is-disabled{
  opacity:.5;
  pointer-events:none;
}
.bct-pageinfo{
  opacity:.85;
  font-size:14px;
}
