:root {
  --bdg-ink: #11141a;
  --bdg-night: #1d3557;
  --bdg-rust: #8d3a1d;
  --bdg-rust-deep: #6f2d15;
  --bdg-gold: #d4b26f;
  --bdg-paper: #f4efe6;
  --bdg-white: #ffffff;
  --bdg-faint: #dcd4c9;
  --bdg-shadow: 0 24px 60px rgba(10, 14, 20, 0.2);
  --bdg-radius-lg: 22px;
  --bdg-radius-md: 14px;
  --bdg-radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bdg-paper);
  color: var(--bdg-ink);
  font-family: 'Lato', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.bdg-wrap {
  width: min(1240px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.bdg-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
}

.bdg-topbar {
  background: linear-gradient(90deg, #0f141c 0%, #1d3557 55%, #8d3a1d 100%);
  color: #f3efe8;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.bdg-topbar .bdg-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 1rem;
}

.bdg-topbar p {
  margin: 0;
}

.bdg-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bdg-topbar a {
  color: var(--bdg-gold);
  font-weight: 700;
}

.bdg-brand-row {
  background: rgba(244, 239, 230, 0.94);
  border-bottom: 1px solid rgba(23, 28, 36, 0.09);
}

.bdg-brand-row .bdg-wrap {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
}

.bdg-logo {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(110deg, #1a2f4e 0%, #273f62 60%, #304b6e 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px rgba(13, 23, 35, 0.25);
}

.bdg-logo img {
  max-width: 275px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}

.bdg-quick-search {
  position: relative;
  display: flex;
  align-items: center;
}

.bdg-quick-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 20, 28, 0.16);
  border-radius: 999px;
  padding: 0 130px 0 1rem;
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.88);
}

.bdg-quick-search button {
  position: absolute;
  right: 6px;
  border: 0;
  min-height: 34px;
  padding: 0 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bdg-rust) 0%, var(--bdg-rust-deep) 100%);
  color: var(--bdg-white);
  font-weight: 700;
  cursor: pointer;
}

.bdg-action-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bdg-action-links a {
  border: 1px solid rgba(17, 20, 26, 0.12);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
}

.bdg-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: var(--bdg-night);
  color: var(--bdg-white);
  font-size: 0.78rem;
}

.bdg-nav {
  background: #11141a;
  color: #f0ede8;
  border-bottom: 1px solid rgba(250, 250, 250, 0.08);
}

.bdg-nav .bdg-wrap {
  display: flex;
  align-items: center;
  min-height: 52px;
}

.bdg-menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.46rem 0.92rem;
  font-weight: 700;
  background: var(--bdg-rust);
  color: var(--bdg-white);
}

.bdg-nav-inner {
  width: 100%;
}

.bdg-main-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.bdg-main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}

.bdg-main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 0;
  height: 2px;
  background: var(--bdg-gold);
  transition: width 0.25s ease;
}

.bdg-main-nav a:hover::after,
.bdg-main-nav .current-menu-item a::after {
  width: 100%;
}

.bdg-main {
  background:
    radial-gradient(circle at 95% 2%, rgba(29, 53, 87, 0.19) 0%, rgba(29, 53, 87, 0) 42%),
    radial-gradient(circle at 4% 20%, rgba(141, 58, 29, 0.14) 0%, rgba(141, 58, 29, 0) 38%),
    var(--bdg-paper);
  min-height: 50vh;
}

.bdg-hero {
  color: #f6f1e8;
  background-size: cover;
  background-position: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bdg-hero .bdg-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: stretch;
}

.bdg-kicker {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0.34rem 0.8rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.bdg-hero h1,
.bdg-section-head h2,
.bdg-section h2,
.bdg-hero-card h2,
.bdg-footer-links h3,
.bdg-post-card h1 {
  margin: 0;
  font-family: 'Alfa Slab One', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.bdg-hero h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.bdg-hero-copy p {
  max-width: 58ch;
  margin: 0;
  color: rgba(247, 243, 236, 0.91);
  font-size: 1.02rem;
}

.bdg-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.78rem;
  flex-wrap: wrap;
}

.bdg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bdg-btn:hover {
  transform: translateY(-1px);
}

.bdg-btn-primary {
  background: linear-gradient(90deg, var(--bdg-rust) 0%, #a64a22 100%);
  color: var(--bdg-white);
  box-shadow: 0 12px 24px rgba(141, 58, 29, 0.34);
}

.bdg-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fcf8f1;
  background: rgba(255, 255, 255, 0.06);
}

.bdg-hero-card {
  border-radius: var(--bdg-radius-lg);
  background: linear-gradient(165deg, rgba(11, 17, 24, 0.8) 0%, rgba(31, 48, 69, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.2rem;
  box-shadow: var(--bdg-shadow);
}

.bdg-hero-card h2 {
  font-size: 1.35rem;
}

.bdg-hero-card ul {
  margin: 0.9rem 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.bdg-hero-card a {
  color: var(--bdg-gold);
  font-weight: 700;
}

.bdg-section {
  padding: clamp(2.2rem, 5vw, 3.8rem) 0;
}

.bdg-section-head {
  max-width: 76ch;
  margin-bottom: 1.3rem;
}

.bdg-section-head p {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  color: #6f2d15;
  font-weight: 900;
}

.bdg-section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.32rem);
  color: #0f1521;
  line-height: 1.14;
}

.bdg-section-depts {
  padding-top: 2.8rem;
}

.bdg-dept-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bdg-dept-card {
  min-height: 285px;
  border-radius: var(--bdg-radius-lg);
  padding: 1.15rem;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f6f2e9;
  box-shadow: var(--bdg-shadow);
  animation: bdgIn 480ms ease both;
}

.bdg-dept-card h3 {
  margin: 0 0 0.5rem;
  font-family: 'Alfa Slab One', serif;
  font-size: 1.26rem;
}

.bdg-dept-card p {
  margin: 0;
  font-size: 0.94rem;
  max-width: 30ch;
}

.bdg-dept-card a {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  padding: 0.45rem 0.95rem;
  font-weight: 800;
}

.bdg-section-mechanics .bdg-mechanics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.bdg-section-mechanics article {
  border-radius: var(--bdg-radius-md);
  padding: 1.1rem;
  background: #fff;
  border: 1px solid rgba(20, 24, 30, 0.08);
  box-shadow: 0 8px 24px rgba(16, 20, 24, 0.06);
}

.bdg-section-mechanics h3 {
  margin: 0 0 0.6rem;
  font-size: 1.04rem;
  color: #172d4a;
}

.bdg-section-mechanics p {
  margin: 0;
  color: #2b323d;
}

.bdg-section-financing .bdg-wrap {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1.1rem;
  align-items: center;
  background: linear-gradient(125deg, #132744 0%, #8d3a1d 100%);
  color: #fff;
  border-radius: var(--bdg-radius-lg);
  padding: 1rem;
}

.bdg-section-financing img {
  width: 100%;
  border-radius: var(--bdg-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.bdg-section-financing p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.bdg-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.bdg-placeholder-grid article {
  background: #fff;
  border-radius: var(--bdg-radius-md);
  border: 1px solid rgba(20, 24, 30, 0.08);
  padding: 1.05rem;
  min-height: 185px;
  display: flex;
  flex-direction: column;
}

.bdg-placeholder-grid h3 {
  margin: 0;
  color: #172d4a;
  font-size: 1.05rem;
}

.bdg-placeholder-grid p {
  margin: 0.7rem 0 1rem;
  color: #414952;
}

.bdg-placeholder-grid a {
  margin-top: auto;
  color: var(--bdg-rust-deep);
  font-weight: 800;
}

.bdg-live-products .products {
  margin: 0;
}

.bdg-live-products .product {
  border-radius: var(--bdg-radius-md);
  background: #fff;
  border: 1px solid rgba(17, 20, 26, 0.1);
  padding: 0.7rem;
  box-shadow: 0 8px 20px rgba(17, 21, 27, 0.06);
}

.bdg-live-products .button {
  border-radius: 999px !important;
  background: var(--bdg-rust) !important;
  color: #fff !important;
}

.bdg-section-woo .woocommerce-notices-wrapper:empty {
  display: none;
}

.bdg-shop-hero {
  margin-top: 0;
  color: #f5f2eb;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bdg-shop-hero .bdg-wrap {
  min-height: clamp(240px, 36vw, 440px);
  display: flex;
  align-items: flex-end;
  padding: clamp(1.4rem, 4vw, 2.6rem) 0;
}

.bdg-shop-hero-copy {
  width: min(780px, 100%);
  border-radius: var(--bdg-radius-md);
  background: rgba(9, 13, 19, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  box-shadow: var(--bdg-shadow);
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.bdg-shop-hero-copy h1 {
  margin: 0;
  color: #fff8ee;
  font-family: 'Alfa Slab One', serif;
  font-weight: 400;
  line-height: 1.06;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.bdg-shop-hero-copy p {
  margin: 0.7rem 0 0;
  max-width: 65ch;
  color: rgba(249, 245, 236, 0.93);
}

.bdg-shop-hero-copy .bdg-btn {
  margin-top: 0.95rem;
  align-self: flex-start;
}

.bdg-section-woo .woocommerce-breadcrumb {
  margin-bottom: 1rem;
  color: #49515c;
}

.bdg-section-woo .woocommerce-products-header h1 {
  margin-bottom: 0.8rem;
}

.bdg-section-woo .woocommerce-result-count {
  color: #4c5562;
}

.bdg-section-woo .woocommerce-ordering select {
  border: 1px solid rgba(17, 20, 26, 0.2);
  border-radius: 8px;
  min-height: 40px;
  padding: 0 0.6rem;
}

.bdg-section-woo ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.bdg-section-woo ul.products::before,
.bdg-section-woo ul.products::after {
  display: none;
}

.bdg-section-woo ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: #fff;
  border-radius: var(--bdg-radius-md);
  border: 1px solid rgba(17, 20, 26, 0.09);
  box-shadow: 0 8px 20px rgba(17, 21, 27, 0.05);
  padding: 0.72rem;
}

.bdg-section-woo ul.products li.product a img {
  border-radius: 10px;
}

.bdg-section-woo .woocommerce-loop-product__title {
  color: #172d4a;
  font-size: 1.02rem !important;
}

.bdg-section-woo .price {
  color: #8d3a1d !important;
  font-weight: 900;
}

.bdg-section-woo .button {
  border-radius: 999px !important;
  background: var(--bdg-rust) !important;
  color: #fff !important;
}

.bdg-empty-shelf {
  border: 1px solid rgba(17, 20, 26, 0.11);
  border-radius: var(--bdg-radius-md);
  background: linear-gradient(140deg, rgba(29, 53, 87, 0.08) 0%, rgba(141, 58, 29, 0.08) 100%);
  padding: 1.2rem;
}

.bdg-empty-shelf h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #172d4a;
}

.bdg-empty-shelf p {
  margin: 0 0 1rem;
}

.bdg-section-cta .bdg-wrap {
  border-radius: var(--bdg-radius-lg);
  background: linear-gradient(120deg, #11141a 0%, #1d3557 62%, #8d3a1d 100%);
  color: #fff;
  text-align: center;
  padding: clamp(1.8rem, 4vw, 2.6rem);
}

.bdg-contact-shell h1,
.bdg-account-shell h1 {
  margin: 0;
  font-family: 'Alfa Slab One', serif;
  font-weight: 400;
  line-height: 1.08;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.bdg-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}

.bdg-contact-details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.bdg-contact-card {
  border-radius: var(--bdg-radius-md);
  border: 1px solid rgba(17, 20, 26, 0.1);
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 21, 27, 0.06);
  padding: 1rem;
}

.bdg-contact-card h2 {
  margin: 0 0 0.45rem;
  color: #172d4a;
  font-size: 1.12rem;
}

.bdg-contact-card p {
  margin: 0 0 0.6rem;
  color: #39424d;
}

.bdg-contact-card a:not(.bdg-btn) {
  color: var(--bdg-rust-deep);
  font-weight: 800;
}

.bdg-contact-location .bdg-btn {
  margin-top: 0.85rem;
}

.bdg-contact-location {
  padding: 1.35rem 1.35rem 1.45rem;
}

.bdg-contact-location .bdg-btn-map {
  color: #fff !important;
}

.bdg-account-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}

.bdg-account-panel {
  margin-top: 1rem;
  border-radius: var(--bdg-radius-md);
  border: 1px solid rgba(17, 20, 26, 0.1);
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 21, 27, 0.06);
  padding: 1rem;
}

.bdg-account-panel input,
.bdg-account-panel select,
.bdg-account-panel textarea {
  border-radius: 8px;
  border: 1px solid rgba(17, 20, 26, 0.2);
}

.bdg-account-panel button,
.bdg-account-panel .button,
.bdg-account-panel .woocommerce-Button {
  border-radius: 999px !important;
  background: var(--bdg-rust) !important;
  color: #fff !important;
}

.bdg-section-cta h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.42rem, 3vw, 2rem);
}

.bdg-section-cta p {
  margin: 0 0 1.1rem;
  color: rgba(252, 249, 242, 0.88);
}

.bdg-content-wrap {
  max-width: 960px;
}

.bdg-post-card {
  background: #fff;
  border: 1px solid rgba(17, 20, 26, 0.08);
  border-radius: var(--bdg-radius-md);
  padding: 1.2rem;
}

.bdg-post-card h1 {
  margin-bottom: 0.9rem;
}

.bdg-floating-cart {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bdg-rust) 0%, var(--bdg-rust-deep) 100%);
  color: #fff;
  padding: 0.75rem 0.95rem;
  box-shadow: 0 16px 26px rgba(141, 58, 29, 0.42);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bdg-floating-cart span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 0.82rem;
}

.bdg-footer {
  margin-top: 3rem;
  background: #0f131a;
  color: #e7e3dd;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bdg-footer .bdg-wrap {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}

.bdg-footer-brand img {
  width: 96px;
  margin-bottom: 0.8rem;
}

.bdg-footer-links h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  color: #f8f3ea;
}

.bdg-footer-links,
.bdg-footer-links p,
.bdg-footer-links a {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  color: #d6d0c5;
}

.bdg-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.86rem;
  color: #a8a196;
  padding: 0.95rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

@keyframes bdgIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .bdg-brand-row .bdg-wrap {
    grid-template-columns: 1fr;
    padding: 0.9rem 0;
  }

  .bdg-logo img {
    max-width: 280px;
  }

  .bdg-action-links {
    justify-content: flex-start;
  }

  .bdg-hero .bdg-wrap,
  .bdg-section-financing .bdg-wrap {
    grid-template-columns: 1fr;
  }

  .bdg-dept-grid,
  .bdg-section-mechanics .bdg-mechanics-grid,
  .bdg-placeholder-grid,
  .bdg-footer .bdg-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bdg-section-woo ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bdg-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bdg-contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bdg-topbar .bdg-wrap {
    min-height: 42px;
    flex-direction: column;
    justify-content: center;
    padding: 0.35rem 0;
  }

  .bdg-menu-toggle {
    display: inline-flex;
  }

  .bdg-nav-inner {
    display: none;
  }

  .bdg-nav-inner.is-open {
    display: block;
    padding: 0.6rem 0 0.8rem;
  }

  .bdg-main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .bdg-main-nav a {
    min-height: 34px;
  }

  .bdg-dept-grid,
  .bdg-section-mechanics .bdg-mechanics-grid,
  .bdg-placeholder-grid,
  .bdg-footer .bdg-wrap {
    grid-template-columns: 1fr;
  }

  .bdg-section-woo ul.products {
    grid-template-columns: 1fr;
  }

  .bdg-contact-grid,
  .bdg-account-intro {
    grid-template-columns: 1fr;
  }

  .bdg-floating-cart {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}
