/* ================================================
   Big C Lumber — Custom Header
   Mirrors Next.js Header.js component
   ================================================ */

.bigc-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 4px solid #f7af28;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: 'Libre Franklin', sans-serif;
}

/* Utility bar */
.bigc-hdr__utility {
  background: linear-gradient(to right, #000, #1e293b, #000);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.bigc-hdr__utility-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 36px;
  padding: 0 16px;
  gap: 4px;
}
.bigc-hdr__util-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 9999px;
  transition: color 0.15s;
}
.bigc-hdr__util-link:hover { color: #f7af28; text-decoration: none; }

/* Main bar */
.bigc-hdr__main {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 16px;
}

/* Logo */
.bigc-hdr__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.bigc-hdr__logo-box {
  background: #fff;
  border: 1px solid rgba(247,175,40,0.4);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.bigc-hdr__logo-wrap:hover .bigc-hdr__logo-box {
  border-color: #f7af28;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}
.bigc-hdr__logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}
.bigc-hdr__logo-wrap:hover .bigc-hdr__logo-img { transform: scale(1.03); }
.bigc-hdr__tagline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: rgba(0,0,0,0.6);
  display: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.bigc-hdr__logo-wrap:hover .bigc-hdr__tagline { color: #000; }
@media (min-width: 768px) { .bigc-hdr__tagline { display: inline; } }

/* Desktop nav */
.bigc-hdr__nav {
  display: none;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1100px) { .bigc-hdr__nav { display: flex; } }

.bigc-hdr__dropdown { position: relative; }
.bigc-hdr__nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: rgba(0,0,0,0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 4px;
  border-radius: 6px;
  transition: color 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.bigc-hdr__nav-btn:hover,
.bigc-hdr__dropdown.is-open .bigc-hdr__nav-btn { color: #f7af28; }
.bigc-hdr__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.bigc-hdr__dropdown.is-open .bigc-hdr__chevron { transform: rotate(180deg); }

.bigc-hdr__menu {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
.bigc-hdr__dropdown.is-open .bigc-hdr__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.bigc-hdr__menu-inner {
  min-width: 240px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 12px;
  display: grid;
  gap: 2px;
}
.bigc-hdr__menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.8);
  text-decoration: none !important;
  transition: background 0.12s, color 0.12s;
}
.bigc-hdr__menu-item:hover {
  background: rgba(247,175,40,0.15);
  color: #000;
  text-decoration: none !important;
}
.bigc-hdr__menu-item--accent {
  background: rgba(247,175,40,0.2);
  color: #000;
}
.bigc-hdr__menu-item--accent:hover { background: rgba(247,175,40,0.32); }
.bigc-hdr__ext-icon {
  width: 15px;
  height: 15px;
  margin-left: 8px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Desktop right action pills */
.bigc-hdr__actions {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 1100px) { .bigc-hdr__actions { display: flex; } }

.bigc-hdr__pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: rgba(0,0,0,0.8) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: transform 0.15s, box-shadow 0.15s, color 0.15s;
  white-space: nowrap;
}
.bigc-hdr__pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: #000 !important;
  text-decoration: none !important;
}
.bigc-hdr__pill--cta {
  background: #f7af28 !important;
  border-color: #f7af28 !important;
  color: #000 !important;
  box-shadow: 0 4px 14px rgba(247,175,40,0.45) !important;
  font-weight: 800;
}
.bigc-hdr__pill--cta:hover {
  box-shadow: 0 6px 20px rgba(247,175,40,0.55) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.bigc-hdr__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #000;
  transition: color 0.15s;
  line-height: 1;
}
.bigc-hdr__burger:hover { color: #f7af28; }
@media (min-width: 1100px) { .bigc-hdr__burger { display: none; } }

/* Mobile drawer */
.bigc-hdr__mobile {
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.bigc-hdr__mobile[hidden] { display: none; }
.bigc-hdr__mobile-inner {
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bigc-hdr__mob-section {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
}
.bigc-hdr__mob-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(0,0,0,0.85);
  font-family: inherit;
}
.bigc-hdr__mob-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.bigc-hdr__mob-section.is-open .bigc-hdr__mob-chevron { transform: rotate(180deg); }
.bigc-hdr__mob-links { display: none; }
.bigc-hdr__mob-section.is-open .bigc-hdr__mob-links {
  display: block;
  border-top: 1px solid rgba(247,175,40,0.15);
  background: rgba(247,175,40,0.04);
}
.bigc-hdr__mob-link {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.8) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.1s;
}
.bigc-hdr__mob-link:last-child { border-bottom: none; }
.bigc-hdr__mob-link:hover { background: rgba(247,175,40,0.2); color: #000 !important; text-decoration: none !important; }
.bigc-hdr__mob-link--accent { background: rgba(247,175,40,0.14); }
.bigc-hdr__mob-link--accent:hover { background: rgba(247,175,40,0.28); }

.bigc-hdr__mob-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.bigc-hdr__mob-pill {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: rgba(0,0,0,0.8) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.15s;
}
.bigc-hdr__mob-pill:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); color: #000 !important; }
.bigc-hdr__mob-pill--cta {
  background: #f7af28 !important;
  border-color: #f7af28 !important;
  color: #000 !important;
  box-shadow: 0 4px 14px rgba(247,175,40,0.45) !important;
}
.bigc-hdr__mob-pill--cta:hover { box-shadow: 0 6px 20px rgba(247,175,40,0.55) !important; }

/* Hide Kadence's own header if it somehow still renders */
#masthead.header-container-inner { display: none !important; }

/* ================================================
   Big C Lumber — Locations Page
   Mirrors bigclumber.com/locations (Next.js)
   ================================================ */

/* ── Hero ─────────────────────────────────────── */
.bigc-loc-hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bigc-loc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1A202C;
}
.bigc-loc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 50%, transparent 100%);
}
.bigc-loc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .bigc-loc-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.bigc-loc-hero__text { max-width: 640px; }
.bigc-loc-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #e2e8f0;
  margin: 0 0 12px;
}
.bigc-loc-hero__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
  text-shadow: 0 2px 2px rgba(0,0,0,.35);
}
@media (min-width: 768px) { .bigc-loc-hero__heading { font-size: 48px; } }
@media (min-width: 1024px) { .bigc-loc-hero__heading { font-size: 58px; } }
.bigc-loc-hero__body {
  font-size: 17px;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) { .bigc-loc-hero__body { font-size: 19px; } }
.bigc-loc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

/* ── Shared Button Styles ─────────────────────── */
.bigc-loc-btn {
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.bigc-loc-btn--outline {
  padding: 10px 20px;
  border-radius: 6px;
  border: 2px solid #f7af28;
  background: rgba(255,255,255,.15);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: .04em;
}
.bigc-loc-btn--outline:hover {
  background: #f7af28;
  color: #1A202C;
  border-color: #f7af28;
}
.bigc-loc-btn--filled {
  padding: 10px 22px;
  border-radius: 9999px;
  border: none;
  background: #f7af28;
  color: #1A202C;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 4px 14px rgba(247,175,40,.4);
}
.bigc-loc-btn--filled:hover {
  background: #f9bf62;
  color: #1A202C;
  box-shadow: 0 6px 18px rgba(247,175,40,.5);
}

/* ── Locations Section ────────────────────────── */
.bigc-loc-section {
  background: #F7FAFC;
  padding: 0 0 64px;
}
.bigc-loc-section-header {
  background: #fff;
  padding: 40px 24px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.bigc-loc-section-header .bigc-loc-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #4A5568;
  margin: 0 0 8px;
}
.bigc-loc-section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 8px;
}
@media (min-width: 768px) { .bigc-loc-section-header h2 { font-size: 34px; } }
.bigc-loc-section-header p {
  font-size: 16px;
  color: #4A5568;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ── Tabs ─────────────────────────────────────── */
.bigc-loc-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 2px solid #f7af28;
}
.bigc-loc-tabs {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}
.bigc-loc-tab {
  flex: 1;
  padding: 10px 6px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #4A5568;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  text-align: center;
}
@media (min-width: 768px) { .bigc-loc-tab { font-size: 17px; padding: 12px 8px; } }
.bigc-loc-tab:first-child { border-left: none; }
.bigc-loc-tab:last-child  { border-right: none; }
.bigc-loc-tab:hover {
  background: #EDF2F7;
  color: #1A202C;
}
.bigc-loc-tab.is-active {
  background: #EDF2F7;
  border-bottom-color: #f7af28;
  color: #1A202C;
}

/* ── Cards Container ──────────────────────────── */
.bigc-loc-cards {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Location Card ────────────────────────────── */
.bigc-loc-card {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #f7af28;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.bigc-loc-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
@media (min-width: 768px) { .bigc-loc-card { flex-direction: row; } }
.bigc-loc-card[style*="display: none"] { display: none !important; }

/* Card Image Panel */
.bigc-loc-card__img {
  position: relative;
  height: 224px;
  width: 100%;
  background: #1A202C;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .bigc-loc-card__img {
    width: 33.333%;
    height: auto;
    min-height: 280px;
    align-self: stretch;
  }
}
.bigc-loc-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bigc-loc-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.28) 50%, transparent 100%);
}
.bigc-loc-card__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2744 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bigc-loc-card__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: .25;
  fill: #f7af28;
}
.bigc-loc-card__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  z-index: 2;
}

/* Card Body Panel */
.bigc-loc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
}
@media (min-width: 768px) { .bigc-loc-card__body { padding: 20px; } }

.bigc-loc-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.bigc-loc-card__title-group {}
.bigc-loc-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 4px;
}
.bigc-loc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bigc-loc-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid #f7af28;
  background: #EDF2F7;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #1A202C;
}

/* Address */
.bigc-loc-card__address { display: flex; flex-direction: column; gap: 3px; }
.bigc-loc-card__address-text {
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
  line-height: 1.5;
}
.bigc-loc-card__maps-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #b88307;
  text-decoration: underline;
  transition: color .15s;
}
.bigc-loc-card__maps-link:hover { color: #92660a; }

/* Hours + Contact Grid */
.bigc-loc-card__info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) { .bigc-loc-card__info-grid { grid-template-columns: 1fr 1fr; } }
.bigc-loc-card__info-box {
  border-radius: 8px;
  border: 1px solid #EDF2F7;
  background: #F7FAFC;
  padding: 12px;
}
.bigc-loc-card__info-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #718096;
  margin: 0 0 8px;
}
.bigc-loc-card__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  color: #4A5568;
  margin-bottom: 4px;
}
.bigc-loc-card__hours-row:last-of-type { margin-bottom: 0; }
.bigc-loc-card__hours-day { font-weight: 600; white-space: nowrap; }
.bigc-loc-card__hours-time { color: #1A202C; text-align: right; }
.bigc-loc-card__hours-note {
  font-size: 11px;
  color: #718096;
  margin: 6px 0 0;
  font-style: italic;
  line-height: 1.4;
}
.bigc-loc-card__contact-row {
  display: flex;
  gap: 5px;
  font-size: 12px;
  color: #4A5568;
  margin-bottom: 4px;
  line-height: 1.4;
}
.bigc-loc-card__contact-row:last-child { margin-bottom: 0; }
.bigc-loc-card__contact-label { font-weight: 700; white-space: nowrap; }
.bigc-loc-card__contact-value a {
  color: #4A5568;
  text-decoration: none;
}
.bigc-loc-card__contact-value a:hover { color: #f7af28; text-decoration: underline; }

/* Card Footer Buttons */
.bigc-loc-card__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 2px;
}
.bigc-loc-card__btn {
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
  font-size: 13px;
  padding: 9px 18px;
}
.bigc-loc-card__btn--outline {
  border-radius: 6px;
  border: 2px solid #f7af28;
  background: #EDF2F7;
  color: #1A202C;
}
.bigc-loc-card__btn--outline:hover { background: #f7af28; color: #1A202C; }
.bigc-loc-card__btn--filled {
  border-radius: 9999px;
  background: #f7af28;
  color: #1A202C;
  border: 2px solid #f7af28;
  box-shadow: 0 3px 10px rgba(247,175,40,.35);
}
.bigc-loc-card__btn--filled:hover { background: #f9bf62; box-shadow: 0 5px 14px rgba(247,175,40,.5); }

/* Manager box — below the hours/contact grid */
.bigc-loc-card__info-box--manager {
  margin: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
}
.bigc-loc-card__info-box--manager .bigc-loc-card__hours-day,
.bigc-loc-card__info-box--manager .bigc-loc-card__hours-time {
  font-size: 11px;
}

/* ── No Results ───────────────────────────────── */
.bigc-loc-no-results {
  text-align: center;
  padding: 48px 24px;
  color: #718096;
  font-size: 16px;
  display: none;
}
.bigc-loc-no-results.visible { display: block; }

/* ── Responsive tweaks ────────────────────────── */
@media (max-width: 480px) {
  .bigc-loc-hero__heading { font-size: 28px; }
  .bigc-loc-tab { font-size: 10px; padding: 8px 2px; }
  .bigc-loc-card__footer { flex-direction: column; }
  .bigc-loc-card__btn { text-align: center; }
}

/* ================================================
   Big C – Store Detail Page  (.bigc-sp-*)
   ================================================ */

/* ── Hero ─────────────────────────────────────── */
.bigc-sp-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bigc-sp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1A202C;
}
.bigc-sp-hero__bg--dark { background: linear-gradient(135deg,#1a2744 0%,#0f172a 100%); }
.bigc-sp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.18) 100%);
}
.bigc-sp-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 24px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bigc-sp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .15s;
  width: fit-content;
}
.bigc-sp-back:hover { color: #f7af28; }
.bigc-sp-hero__text { display: flex; flex-direction: column; gap: 10px; }
.bigc-sp-hero__name {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
@media (max-width: 768px) { .bigc-sp-hero__name { font-size: 34px; } }
.bigc-sp-hero__region {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #f7af28;
  margin: 0;
}
.bigc-sp-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bigc-sp-hero__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1.5px solid rgba(247,175,40,.6);
  background: rgba(247,175,40,.15);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
}

/* ── Quick-facts Strip ────────────────────────── */
.bigc-sp-strip {
  background: #1A202C;
  border-bottom: 3px solid #f7af28;
}
.bigc-sp-strip__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.bigc-sp-strip__fact {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}
.bigc-sp-strip__fact a { color: #e2e8f0; text-decoration: none; }
.bigc-sp-strip__fact a:hover { color: #f7af28; }
.bigc-sp-strip__icon { width: 15px; height: 15px; flex-shrink: 0; fill: #f7af28; }
.bigc-sp-strip__icon[stroke] { fill: none; stroke: #f7af28; }
.bigc-sp-strip__btn {
  margin-left: auto;
  padding: 8px 20px;
  border-radius: 9999px;
  background: #f7af28;
  color: #1A202C;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s;
  white-space: nowrap;
}
.bigc-sp-strip__btn:hover { background: #f9bf62; color: #1A202C; }

/* ── Body (cards + map) ───────────────────────── */
.bigc-sp-body {
  max-width: 1152px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .bigc-sp-body { grid-template-columns: 380px 1fr; }
}

/* ── Cards column ─────────────────────────────── */
.bigc-sp-cards { display: flex; flex-direction: column; gap: 14px; }
.bigc-sp-card {
  border-radius: 10px;
  border: 1px solid #EDF2F7;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.bigc-sp-card__label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #718096;
  margin: 0 0 10px;
}
.bigc-sp-card__address-text {
  font-size: 15px;
  font-weight: 600;
  color: #1A202C;
  line-height: 1.5;
  margin: 0 0 8px;
}
.bigc-sp-card__maplink {
  font-size: 13px;
  font-weight: 600;
  color: #b88307;
  text-decoration: underline;
}
.bigc-sp-card__maplink:hover { color: #92660a; }
.bigc-sp-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: #4A5568;
  padding: 4px 0;
  border-bottom: 1px solid #F7FAFC;
}
.bigc-sp-card__row:last-of-type { border-bottom: none; }
.bigc-sp-card__day  { font-weight: 600; white-space: nowrap; color: #4A5568; }
.bigc-sp-card__time { font-weight: 500; color: #1A202C; text-align: right; }
.bigc-sp-card__time a { color: #1A202C; text-decoration: none; }
.bigc-sp-card__time a:hover { color: #f7af28; }
.bigc-sp-card__time--closed { color: #A0AEC0; }
.bigc-sp-card__note {
  font-size: 11px;
  color: #718096;
  font-style: italic;
  margin: 8px 0 0;
  line-height: 1.4;
}
.bigc-sp-card__value {
  font-size: 14px;
  font-weight: 600;
  color: #1A202C;
  margin: 0;
}

/* ── Map ──────────────────────────────────────── */
.bigc-sp-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #EDF2F7;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  min-height: 400px;
}
.bigc-sp-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ── About Section ────────────────────────────── */
.bigc-sp-about {
  background: #F7FAFC;
  border-top: 1px solid #EDF2F7;
  padding: 56px 24px;
}
.bigc-sp-about__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.bigc-sp-about__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #f7af28;
  margin: 0 0 12px;
}
.bigc-sp-about__heading {
  font-size: 30px;
  font-weight: 700;
  color: #1A202C;
  margin: 0 0 16px;
  line-height: 1.2;
}
@media (min-width: 768px) { .bigc-sp-about__heading { font-size: 36px; } }
.bigc-sp-about__body {
  font-size: 17px;
  color: #4A5568;
  line-height: 1.7;
  margin: 0 0 28px;
}
.bigc-sp-about__ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.bigc-sp-about__btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 24px;
  border-radius: 9999px;
  transition: all .2s;
  letter-spacing: .04em;
}
.bigc-sp-about__btn--outline {
  border: 2px solid #f7af28;
  background: transparent;
  color: #1A202C;
}
.bigc-sp-about__btn--outline:hover { background: #f7af28; color: #1A202C; }
.bigc-sp-about__btn--filled {
  border: 2px solid #f7af28;
  background: #f7af28;
  color: #1A202C;
  box-shadow: 0 4px 12px rgba(247,175,40,.35);
}
.bigc-sp-about__btn--filled:hover { background: #f9bf62; border-color: #f9bf62; }

/* ── Empty state ──────────────────────────────── */
.bigc-sp-empty {
  padding: 48px 24px;
  text-align: center;
  color: #718096;
  background: #F7FAFC;
  border: 2px dashed #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
}

/* ── Responsive tweaks ────────────────────────── */
@media (max-width: 640px) {
  .bigc-sp-strip__btn { margin-left: 0; width: 100%; text-align: center; }
  .bigc-sp-strip__inner { gap: 12px; }
}

/* ================================================
   Kadence / Elementor theme-reset overrides
   These ensure bigc-sp-* and bigc-loc-* sections
   are not constrained or restyled by theme defaults.
   ================================================ */

/* Strip Elementor's widget-container defaults inside our widgets */
.elementor-widget-bigc_store_detail .elementor-widget-container,
.elementor-widget-bigc_locations_grid .elementor-widget-container,
.elementor-widget-bigc_hero .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Kadence adds margin-top to .single-content — remove it for our sections */
.single-content .bigc-sp-hero,
.single-content .bigc-sp-strip,
.single-content .bigc-sp-body,
.single-content .bigc-sp-about,
.single-content .bigc-loc-hero,
.single-content .bigc-loc-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Headings inside widget sections — preserve our colors against Kadence's h1/h2 palette */
.bigc-sp-hero__name {
  font-size: 48px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.1 !important;
}
@media (max-width: 768px) {
  .bigc-sp-hero__name { font-size: 34px !important; }
}
.bigc-sp-about__heading {
  color: #1A202C !important;
}
.bigc-loc-hero__heading {
  color: #ffffff !important;
}

/* Kadence content.min.css adds bottom margin to block-level elements inside .single-content.
   Prevent it from affecting our card rows and strip facts. */
.bigc-sp-card__row,
.bigc-sp-strip__fact,
.bigc-loc-card__hours-row,
.bigc-loc-card__contact-row {
  margin-bottom: 0 !important;
}

/* Ensure the full-width Elementor container isn't constrained by .site-container */
.elementor-page .entry-content-wrap {
  padding: 0 !important;
}
.elementor-page .content-area {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.elementor-page .entry.single-entry {
  box-shadow: none !important;
}
.elementor-page .single-content {
  margin-top: 0 !important;
}

/* ================================================
   Kitchen & Bath page — button & card utilities
   ================================================ */

/* Elementor button variant: primary (yellow border, stone bg)
   _css_classes puts the class on .elementor-widget-button wrapper */
.bigc-btn-primary .elementor-button,
.elementor-button.bigc-btn-primary {
  background-color: #e7e5e4 !important;
  border: 2px solid #f7af28 !important;
  color: #111827 !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 8px 16px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.05) !important;
  transition: transform .15s, box-shadow .15s !important;
  text-decoration: none !important;
}
.bigc-btn-primary .elementor-button:hover,
.elementor-button.bigc-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;
}

/* Elementor button variant: secondary (white bg, light border) */
.bigc-btn-secondary .elementor-button,
.elementor-button.bigc-btn-secondary {
  background-color: #ffffff !important;
  border: 1px solid #d6d3d1 !important;
  color: #111827 !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 8px 16px !important;
  transition: border-color .15s, transform .15s !important;
}
.bigc-btn-secondary .elementor-button:hover,
.elementor-button.bigc-btn-secondary:hover {
  border-color: #f7af28 !important;
  transform: translateY(-2px) !important;
}

/* Capability card (icon-box widget with .bigc-capability-card) */
.bigc-capability-card.elementor-widget-icon-box .elementor-icon-box-wrapper {
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bigc-capability-card.elementor-widget-icon-box:hover .elementor-icon-box-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.bigc-capability-card .elementor-icon { color: #f7af28; }
.bigc-capability-card .elementor-icon-box-title { color: #111827; font-size: 18px; font-weight: 600; }
.bigc-capability-card .elementor-icon-box-description { color: #374151; font-size: 15px; line-height: 1.6; }

/* ── Brand Logos widget ─────────────────────────── */
.bigc-brands {
  width: 100%;
}
.bigc-brands__header {
  text-align: center;
  margin-bottom: 32px;
}
.bigc-brands__heading {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
}
@media (min-width: 768px) { .bigc-brands__heading { font-size: 30px; } }
.bigc-brands__desc {
  font-size: 15px;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.bigc-brands__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .bigc-brands__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .bigc-brands__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.bigc-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-radius: 8px;
  border: 1px solid #e7e5e4;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
a.bigc-brands__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,.1);
}
.bigc-brands__item img {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.bigc-brands__name-fallback {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-align: center;
}

/* ── Blog Posts widget ──────────────────────────── */
.bigc-blog-3x {
  width: 100%;
}
.bigc-blog-3x__inner {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bigc-blog-3x__inner {
    grid-template-columns: 220px 1fr;
    padding: 24px;
    gap: 20px;
  }
}
.bigc-blog-3x__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(247,175,40,.4);
  background: rgba(247,175,40,.05);
}
.bigc-blog-3x__cta-heading {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.bigc-blog-3x__cta-body {
  font-size: 13px;
  color: #475569;
  margin: 0;
  max-width: 240px;
  line-height: 1.5;
}
.bigc-blog-3x__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #f7af28;
  background: #f7af28;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.bigc-blog-3x__btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(247,175,40,.4); }
.bigc-blog-3x__posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) { .bigc-blog-3x__posts { grid-template-columns: repeat(3, 1fr); } }
.bigc-blog-3x__post {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #0f172a;
  min-height: 160px;
  text-decoration: none;
  transition: box-shadow .2s;
}
@media (min-width: 480px) { .bigc-blog-3x__post { min-height: 192px; } }
.bigc-blog-3x__post:hover { box-shadow: 0 0 0 2px #f7af28; }
.bigc-blog-3x__post img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.bigc-blog-3x__post:hover img { transform: scale(1.05); }
.bigc-blog-3x__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 50%, rgba(0,0,0,.1) 100%);
}
.bigc-blog-3x__title {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.35;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,.85);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bigc-blog-3x__empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: rgba(248,250,252,.6);
  font-size: 14px;
  color: #64748b;
}

/* ── Kitchen & Bath page — layout helpers ─────────────────────────────────────
   These rules fill gaps where Elementor container settings may not fully render
   the visual design from the Next.js reference.
   ============================================================================ */

/* Images in KB containers: fill width, no distortion */
.elementor-page-205 .elementor-widget-image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* Intro card right-col: constrain image to card thumbnail height */
.elementor-page-205 .bigc-intro-card .elementor-widget-image img {
  height: 288px !important;
  object-fit: cover !important;
}

/* Surface section right-col: two side-by-side images at fixed height */
.elementor-page-205 .bigc-surf-imgs {
  align-items: stretch;
}
.elementor-page-205 .bigc-surf-imgs > .elementor-widget-image {
  flex: 1 1 calc(50% - 8px) !important;
  min-width: 0;
}
.elementor-page-205 .bigc-surf-imgs .elementor-widget-image img {
  height: 224px !important;
  object-fit: cover !important;
  border-radius: 8px;
  border: 1px solid #e7e5e4;
  width: 100%;
}

/* On mobile the surface images stack full-width */
@media (max-width: 599px) {
  .elementor-page-205 .bigc-surf-imgs > .elementor-widget-image {
    flex: 1 1 100% !important;
  }
  .elementor-page-205 .bigc-surf-imgs .elementor-widget-image img {
    height: 200px !important;
  }
}

/* Page-level wrappers: remove box-shadow and any default content padding that
   might squeeze the full-width sections */
.elementor-page-205 .entry.single-entry { box-shadow: none !important; }
.elementor-page-205 .entry-content-wrap { padding: 0 !important; }

/* Icon-list bullet size correction (Elementor uses padding-based sizing) */
.elementor-widget-icon-list .elementor-icon-list-icon svg { width: 8px; height: 8px; }

/* Eyebrow paragraphs from native heading widget rendered as <p> */
.elementor-page-205 .elementor-widget-heading p.elementor-heading-title {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B7280;
}

/* Footer: "Find a location" pill button */
.bigc-footer-loc-btn .elementor-button,
.elementor-button.bigc-footer-loc-btn {
  background-color: #f7af28 !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 9999px !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 8px 18px !important;
  box-shadow: 0 4px 14px rgba(247,175,40,.35) !important;
  transition: transform .15s, box-shadow .15s !important;
  display: inline-flex !important;
  width: fit-content !important;
}
.bigc-footer-loc-btn .elementor-button:hover,
.elementor-button.bigc-footer-loc-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(247,175,40,.5) !important;
}

/* Footer: social icons — fix elementor-grid-0 collapsing font-size to 0 */
.elementor-location-footer .elementor-widget-social-icons .elementor-widget-container {
  font-size: 16px !important;
}
.elementor-location-footer .elementor-widget-social-icons .elementor-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}
.elementor-location-footer .elementor-widget-social-icons .elementor-grid-item {
  display: inline-flex !important;
}
.elementor-location-footer .elementor-widget-social-icons .elementor-social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.1) !important;
  transition: background .15s !important;
}
.elementor-location-footer .elementor-widget-social-icons .elementor-social-icon:hover {
  background: rgba(247,175,40,0.25) !important;
}
.elementor-location-footer .elementor-widget-social-icons .elementor-social-icon svg {
  fill: #ffffff !important;
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}
.elementor-location-footer .elementor-widget-social-icons .elementor-social-icon:hover svg {
  fill: #f7af28 !important;
}

/* Footer: resource links */
.elementor-location-footer .elementor-widget-text-editor a {
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none !important;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  transition: color .15s;
}
.elementor-location-footer .elementor-widget-text-editor a:hover {
  color: #f7af28 !important;
}

/* Icon-box card equal width in 3-col flex row */
.elementor-page-205 .bigc-capability-card.elementor-widget-icon-box {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
}

/* 2-col row containers: equal halves on desktop, stack on mobile */
@media (max-width: 767px) {
  .elementor-page-205 .e-con[data-id] > .e-con[data-id] {
    width: 100% !important;
    flex-basis: 100% !important;
  }
  .elementor-page-205 .bigc-capability-card.elementor-widget-icon-box {
    flex-basis: 100% !important;
  }
}

/* ── Gravity Forms – Big C contact form styling ──────────────────────────── */
.bigc-contact-form .gform_wrapper {
    font-family: 'Libre Franklin', sans-serif;
}
.bigc-contact-form .gform_heading { display: none; }
.bigc-contact-form .gfield_label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    text-transform: none !important;
    margin-bottom: 4px !important;
}
.bigc-contact-form input[type="text"],
.bigc-contact-form input[type="email"],
.bigc-contact-form input[type="tel"],
.bigc-contact-form select,
.bigc-contact-form textarea {
    width: 100% !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    box-shadow: 0 1px 2px rgba(0,0,0,.05) !important;
    transition: border-color .15s, box-shadow .15s !important;
    outline: none !important;
}
.bigc-contact-form input:focus,
.bigc-contact-form select:focus,
.bigc-contact-form textarea:focus {
    border-color: #f7af28 !important;
    box-shadow: 0 0 0 3px rgba(247,175,40,.2) !important;
}
.bigc-contact-form textarea { resize: vertical !important; min-height: 120px !important; }
.bigc-contact-form .gform_footer input[type="submit"],
.bigc-contact-form input[type="submit"] {
    width: 100% !important;
    background: #e7e5e4 !important;
    color: #0a0a0a !important;
    border: 2px solid #f7af28 !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: background .15s !important;
    box-shadow: 0 1px 3px rgba(0,0,0,.1) !important;
}
.bigc-contact-form input[type="submit"]:hover { background: #d4d0ce !important; }
.bigc-contact-form .gfield_required { color: #dc2626 !important; }
.bigc-contact-form .gfield_description {
    font-size: 12px !important;
    color: #64748b !important;
    margin-top: 3px !important;
}
.bigc-contact-form .gform_validation_errors,
.bigc-contact-form .gfield_validation_message {
    border-radius: 8px !important;
    font-size: 13px !important;
}
.bigc-contact-form .gform_confirmation_message {
    text-align: center;
    padding: 24px 16px;
}
.bigc-contact-form .gfield--type-checkbox .gfield_checkbox label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

/* ================================================
   Big C Lumber — Custom Footer
   Mirrors Next.js Footer.js component
   ================================================ */

.bigc-footer {
  background: linear-gradient(to bottom, #000, #020617, #000);
  border-top: 4px solid #f7af28;
  color: #fff;
  font-family: 'Libre Franklin', sans-serif;
}

.bigc-ftr__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.bigc-ftr__brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #f7af28;
  margin: 0 0 10px;
}

.bigc-ftr__tagline {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 0;
}

.bigc-ftr__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #f7af28;
  margin: 0 0 12px;
}

/* Social box */
.bigc-ftr__social-box {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.bigc-ftr__social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bigc-ftr__social-link {
  color: rgba(255,255,255,.75);
  transition: color .15s;
  display: flex;
  align-items: center;
}
.bigc-ftr__social-link:hover { color: #f7af28; }
.bigc-ftr__social-link svg { width: 20px; height: 20px; }

.bigc-ftr__social-divider {
  height: 20px;
  width: 1px;
  background: rgba(255,255,255,.3);
  flex-shrink: 0;
}

.bigc-ftr__share-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.75);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
  padding: 0;
}
.bigc-ftr__share-btn:hover { color: #f7af28; }
.bigc-ftr__share-btn svg { width: 16px; height: 16px; }

/* Resource links */
.bigc-ftr__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bigc-ftr__link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s;
}
.bigc-ftr__link:hover { color: #f7af28; }

/* CTA button */
.bigc-ftr__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: #f7af28;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(247,175,40,.35);
  transition: transform .15s, box-shadow .15s;
}
.bigc-ftr__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,175,40,.5);
  color: #000;
}
.bigc-ftr__cta svg { width: 16px; height: 16px; }

/* Bottom bar */
.bigc-ftr__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.bigc-ftr__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bigc-ftr__copy {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.bigc-ftr__thinkbig {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  border-right: 2px solid rgba(0,0,0,.8);
  padding-right: 6px;
  letter-spacing: .04em;
}

/* Share modal */
.bigc-share-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.bigc-share-modal[hidden] { display: none; }
.bigc-share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.bigc-share-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  padding: 24px;
  width: 100%;
  max-width: 380px;
}
.bigc-share-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #9ca3af;
  line-height: 1;
  padding: 4px;
}
.bigc-share-modal__close:hover { color: #374151; }
.bigc-share-modal__heading {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}
.bigc-share-modal__sub {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 16px;
}
.bigc-share-modal__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.bigc-share-modal__icon { transition: transform .15s; display: flex; }
.bigc-share-modal__icon:hover { transform: scale(1.1); }
.bigc-share-modal__icon--fb { color: #1877f2; }
.bigc-share-modal__icon--x  { color: #000; }
.bigc-share-modal__icon--li { color: #0a66c2; }
.bigc-share-modal__url-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.bigc-share-modal__url-text {
  font-size: 11px;
  color: #4b5563;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bigc-share-modal__copy {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: #f7af28;
  white-space: nowrap;
  padding: 0;
}
.bigc-share-modal__copy:hover { text-decoration: underline; }
.bigc-share-modal__dismiss {
  width: 100%;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 100px;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}
.bigc-share-modal__dismiss:hover { background: #f9fafb; }

/* Responsive */
@media (max-width: 1024px) {
  .bigc-ftr__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .bigc-ftr__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px 24px;
  }
  .bigc-ftr__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ================================================
   Big C Search Bar Widget
   ================================================ */

/* Elementor widget container reset */
.elementor-widget-bigc_search .elementor-widget-container {
  overflow: visible;
  padding: 0;
}

.bigc-search {
  width: 100%;
  position: relative;
  overflow: visible;
  font-family: 'Libre Franklin', sans-serif;
}

.bigc-search__wrap {
  position: relative;
  width: 100%;
}

/* ── Field pill ── */
.bigc-search .bigc-search__field {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  border-radius: 100px !important;
  background: rgba(0, 0, 0, 0.32) !important;
  padding: 12px 18px 12px 16px !important;
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.bigc-search .bigc-search__field:focus-within {
  border-color: rgba(247,175,40,0.85) !important;
  box-shadow: 0 0 0 3px rgba(247,175,40,0.22), 0 4px 24px rgba(0,0,0,0.3) !important;
}

.bigc-search .bigc-search__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}
.bigc-search .bigc-search__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Override Kadence & Elementor input resets */
.bigc-search .bigc-search__field .bigc-search__input,
.bigc-search .bigc-search__field input.bigc-search__input {
  flex: 1 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  color: #fff !important;
  font-family: 'Libre Franklin', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  max-height: none !important;
  width: 100% !important;
  -webkit-appearance: none;
  appearance: none;
}
.bigc-search .bigc-search__field .bigc-search__input::placeholder {
  color: rgba(255,255,255,0.6) !important;
  opacity: 1 !important;
}
.bigc-search .bigc-search__field .bigc-search__input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

.bigc-search .bigc-search__clear {
  flex-shrink: 0;
  background: rgba(255,255,255,0.14) !important;
  border: none !important;
  border-radius: 50% !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff !important;
  transition: background 0.15s;
  padding: 0 !important;
  line-height: 1;
}
.bigc-search .bigc-search__clear:hover { background: rgba(255,255,255,0.24) !important; }
.bigc-search .bigc-search__clear svg { width: 14px; height: 14px; display: block; }
.bigc-search .bigc-search__clear[hidden] { display: none !important; }

/* ── Dropdown ── */
.bigc-search .bigc-search__drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 99999;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  overflow: hidden;
}
.bigc-search .bigc-search__drop[hidden] { display: none !important; }

.bigc-search .bigc-search__count {
  padding: 10px 16px 5px;
  font-size: 11px;
  color: #78716c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bigc-search .bigc-search__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 300px;
  overflow-y: auto;
}

.bigc-search .bigc-search__item {
  border-top: 1px solid #f5f5f4;
  margin: 0 !important;
  padding: 0 !important;
}
.bigc-search .bigc-search__item:first-child { border-top: none; }
.bigc-search .bigc-search__item::before { display: none !important; }

.bigc-search .bigc-search__link {
  display: block !important;
  padding: 11px 16px !important;
  text-decoration: none !important;
  transition: background 0.1s;
  color: inherit !important;
  background: transparent !important;
}
.bigc-search .bigc-search__link:hover { background: #fafaf9 !important; }

.bigc-search .bigc-search__item-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #111827 !important;
  font-family: 'Libre Franklin', sans-serif;
  line-height: 1.4;
}

.bigc-search .bigc-search__item-desc {
  font-size: 13px;
  color: #374151 !important;
  line-height: 1.5;
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bigc-search .bigc-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}
.bigc-search .bigc-search__tag {
  display: inline-flex;
  align-items: center;
  background: #f5f5f4;
  border-radius: 100px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 500;
  color: #44403c;
  line-height: 1.4;
}

/* ── No-result CTA ── */
.bigc-search .bigc-search__noresult {
  display: block !important;
  padding: 16px 20px !important;
  text-decoration: none !important;
  color: inherit !important;
  background: transparent !important;
  transition: background 0.1s;
}
.bigc-search .bigc-search__noresult:hover { background: #fafaf9 !important; }

.bigc-search .bigc-search__nr-title {
  font-weight: 700;
  font-size: 14px;
  color: #111827 !important;
  margin: 0 0 4px;
  line-height: 1.4;
}
.bigc-search .bigc-search__nr-sub {
  font-size: 13px;
  color: #4b5563 !important;
  margin: 0 0 10px;
  line-height: 1.5;
}
.bigc-search .bigc-search__nr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f4;
  border: 1px solid #f7af28;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #111 !important;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .bigc-search .bigc-search__field { padding: 10px 14px 10px 12px !important; }
  .bigc-search .bigc-search__field .bigc-search__input { font-size: 14px !important; }
}

/* ================================================
   Blog listing grid  [bigc_blog_list shortcode]
   ================================================ */

.bigc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 8px 0 48px;
}
@media (max-width: 1024px) { .bigc-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .bigc-blog-grid { grid-template-columns: 1fr; } }

.bigc-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #e7e5e4;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.bigc-blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.bigc-blog-card__img-wrap { display: block; height: 210px; overflow: hidden; }
.bigc-blog-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.bigc-blog-card:hover .bigc-blog-card__img-wrap img { transform: scale(1.04); }
.bigc-blog-card__img-placeholder { width: 100%; height: 100%; background: #f5f5f4; }

.bigc-blog-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 22px; gap: 8px; }

.bigc-blog-card__date { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #a8a29e; }

.bigc-blog-card__title { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.35; }
.bigc-blog-card__title a { color: #0c0a09; text-decoration: none; }
.bigc-blog-card__title a:hover { color: #f5a623; }

.bigc-blog-card__excerpt { font-size: 13px; line-height: 1.65; color: #57534e; margin: 0; flex: 1; }

.bigc-blog-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  align-self: flex-start;
  background: #e7e5e4;
  border: 2px solid #f5a623;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #0c0a09;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.bigc-blog-card__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,.1); }

/* ================================================
   Individual post page — redesigned
   ================================================ */

/* ── Hide Kadence author byline & its duplicate date ─────────── */
.single-post .posted-by,
.single-post .posted-on { display: none !important; }

/* Keep category badge if present; style it nicely */
.single-post .entry-meta { margin-bottom: 0; border: none; padding: 0; }
.single-post .category-links { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.single-post .category-links a {
  color: #92400e;
  text-decoration: none;
  background: #fef3c7;
  padding: 4px 12px;
  border-radius: 100px;
  transition: background .15s;
}
.single-post .category-links a:hover { background: #fde68a; }

/* ── Post title ───────────────────────────────────────────────── */
.single-post .entry-header { max-width: 860px; margin: 0 auto 1.25rem; }
.single-post .entry-title  {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: #0c0a09;
  letter-spacing: -.02em;
}

/* ── Featured image ───────────────────────────────────────────── */
.single-post .post-thumbnail.article-post-thumbnail {
  max-width: 100%;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.single-post .article-post-thumbnail .post-thumbnail-inner {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #f5f5f4;
}
.single-post .article-post-thumbnail img.post-top-featured {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.single-post .article-post-thumbnail:hover img.post-top-featured { transform: scale(1.04); }
@media (max-width: 768px) {
  .single-post .article-post-thumbnail .post-thumbnail-inner { aspect-ratio: 16 / 9; }
}

/* ── Content column ───────────────────────────────────────────── */
.single-post .entry-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 17px;
  line-height: 1.85;
  color: #1c1917;
}

/* ── Date + reading time bar ──────────────────────────────────── */
.single-post .entry-content .bigc-post-meta {
  display: flex !important;
  align-items: center;
  gap: 0;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #a8a29e !important;
  margin: 0 0 32px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f4;
}
.single-post .entry-content .bigc-post-meta__sep {
  margin: 0 10px;
  color: #d6d3d1;
}

/* ── Back to blog link ────────────────────────────────────────── */
.bigc-back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #78716c;
  text-decoration: none;
  border: 1.5px solid #e7e5e4;
  border-radius: 100px;
  padding: 6px 16px;
  background: #fafaf9;
  transition: border-color .15s, color .15s, background .15s;
}
.bigc-back-to-blog:hover {
  border-color: #f5a623;
  color: #92400e;
  background: #fffbeb;
}

/* ── Headings ─────────────────────────────────────────────────── */
.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
  font-weight: 700;
  color: #0c0a09;
  line-height: 1.25;
  margin-top: 2.2em;
  margin-bottom: .65em;
}
.single-post .entry-content h2 {
  font-size: 1.5em;
  border-bottom: 2.5px solid #fde68a;
  padding-bottom: .3em;
}
.single-post .entry-content h3 { font-size: 1.22em; }
.single-post .entry-content h4 { font-size: 1.05em; text-transform: uppercase; letter-spacing: .05em; color: #57534e; }

/* ── Body text ────────────────────────────────────────────────── */
.single-post .entry-content p           { margin-bottom: 1.35em; }
.single-post .entry-content strong      { font-weight: 700; }
.single-post .entry-content ul,
.single-post .entry-content ol          { padding-left: 1.65em; margin-bottom: 1.35em; }
.single-post .entry-content li          { margin-bottom: .55em; }
.single-post .entry-content ul li::marker { color: #f5a623; }

/* ── Links in content ─────────────────────────────────────────── */
.single-post .entry-content a {
  color: #b45309;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #fde68a;
  transition: color .15s, text-decoration-color .15s;
}
.single-post .entry-content a:hover {
  color: #92400e;
  text-decoration-color: #f59e0b;
}

/* ── Images in content ────────────────────────────────────────── */
.single-post .entry-content img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin: 1.6em auto;
  box-shadow: 0 3px 18px rgba(0,0,0,.1);
  display: block;
}
.single-post .entry-content figure { margin: 1.8em 0; }
.single-post .entry-content figcaption {
  text-align: center;
  font-size: 13px;
  color: #a8a29e;
  margin-top: .5em;
  font-style: italic;
}

/* ── Blockquotes ──────────────────────────────────────────────── */
.single-post .entry-content blockquote {
  border-left: 4px solid #f5a623;
  margin: 2.2em 0;
  padding: .8em 0 .8em 1.4em;
  font-size: 1.08em;
  font-style: italic;
  color: #44403c;
  background: #fafaf9;
  border-radius: 0 8px 8px 0;
}
.single-post .entry-content blockquote p { margin: 0; }

/* ── Code blocks ──────────────────────────────────────────────── */
.single-post .entry-content code {
  font-family: monospace;
  font-size: .88em;
  background: #f5f5f4;
  padding: 2px 6px;
  border-radius: 4px;
  color: #44403c;
}

/* ── Entry footer (tags) ──────────────────────────────────────── */
.single-post .entry-footer {
  max-width: 760px;
  margin: 2.5rem auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid #f5f5f4;
  font-size: 13px;
  color: #78716c;
}
.single-post .entry-footer a {
  color: #57534e;
  text-decoration: none;
  background: #f5f5f4;
  padding: 3px 10px;
  border-radius: 100px;
  margin: 0 3px 4px 0;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.single-post .entry-footer a:hover { background: #fde68a; color: #92400e; }
