: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: 46px;
  gap: 1rem;
}

.bdg-topbar p {
  margin: 0;
}

.bdg-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}

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

.bdg-topbar-gnp {
  width: 120px;
  max-width: 100%;
  border-radius: 8px;
  background: #fff;
  padding: 0.2rem 0.35rem;
  margin-left: 0.25rem;
  flex-shrink: 0;
}

.bdg-topbar-rx-link {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  color: #fff9ec !important;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.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: max-content minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
}

.bdg-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: auto;
  padding: 0.3rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(112deg, #1a2f4e 0%, #264164 62%, #2e4b71 100%);
  box-shadow: 0 10px 26px rgba(13, 23, 35, 0.2);
}

.bdg-logo img {
  max-width: 320px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.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(1.8rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.bdg-eyebrow {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  color: #c88f75;
  font-weight: 900;
}

.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(1.8rem, 3.1vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 0.7rem;
}

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

.bdg-hero-actions {
  margin-top: 1rem;
  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-btn-ghost-dark {
  border: 1px solid rgba(17, 20, 26, 0.16);
  color: #152538;
  background: rgba(255, 255, 255, 0.9);
}

.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-hero-card a.bdg-btn,
.bdg-hero-card a.bdg-btn:hover {
  color: #fff;
}

.bdg-prescription-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bdg-prescription-card p {
  margin: 0;
  color: rgba(248, 243, 235, 0.9);
}

.bdg-prescription-actions {
  display: grid;
  gap: 0.55rem;
}

.bdg-prescription-actions .bdg-btn {
  min-height: 42px;
  width: 100%;
}

.bdg-good-neighbor {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.75rem;
}

.bdg-good-neighbor img {
  width: 170px;
  max-width: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.bdg-good-neighbor p {
  margin-top: 0.45rem;
  color: rgba(244, 238, 229, 0.92);
  font-size: 0.88rem;
}

.bdg-section-shopcards {
  padding-top: 2.6rem;
  padding-bottom: 2.2rem;
}

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

.bdg-shop-card {
  border-radius: var(--bdg-radius-lg);
  border: 1px solid rgba(20, 24, 30, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 230, 220, 0.9) 100%);
  box-shadow: 0 16px 36px rgba(18, 23, 31, 0.09);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.bdg-shop-card h2 {
  margin: 0;
  color: #0f1521;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.bdg-silencer-logo {
  width: 200px;
  max-width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(20, 24, 30, 0.08);
}

.bdg-shop-card p {
  margin: 0.35rem 0 0;
  color: #2f3845;
}

.bdg-shop-card .bdg-btn {
  margin-top: auto;
  align-self: flex-start;
}

.bdg-shop-card-gunstore {
  background:
    linear-gradient(118deg, rgba(9, 14, 20, 0.85) 0%, rgba(17, 39, 61, 0.72) 52%, rgba(111, 45, 21, 0.55) 100%),
    url('../images/firearms-980x660.jpg');
  background-size: cover;
  background-position: center;
}

.bdg-shop-card-gunstore h2,
.bdg-shop-card-gunstore p,
.bdg-shop-card-gunstore .bdg-eyebrow {
  color: #f8f3ea;
}

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

.bdg-service-card {
  border-radius: var(--bdg-radius-md);
  border: 1px solid rgba(20, 24, 30, 0.09);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 20, 24, 0.05);
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  min-height: 196px;
}

.bdg-service-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #172d4a;
}

.bdg-service-card p {
  margin: 0.62rem 0 0.9rem;
  color: #3b4450;
}

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

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

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

.bdg-section-compounding h2 {
  color: #fff7eb;
  margin: 0 0 0.7rem;
}

.bdg-section-compounding p {
  margin: 0 0 0.8rem;
  color: rgba(250, 246, 238, 0.93);
}

.bdg-section-featured {
  padding-top: 1rem;
}

.bdg-featured-carousel {
  position: relative;
  border-radius: var(--bdg-radius-lg);
  border: 1px solid rgba(20, 24, 30, 0.1);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 19, 24, 0.08);
  padding: 0.65rem 2.4rem 1.2rem;
}

.bdg-featured-carousel-compact {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.bdg-featured-viewport {
  overflow: hidden;
}

.bdg-featured-track {
  display: flex;
  margin: 0 -0.45rem;
  transition: transform 420ms ease;
  will-change: transform;
}

.bdg-featured-slide {
  min-width: 33.3333%;
  padding: 0 0.45rem;
  opacity: 0.56;
  transform: scale(0.92);
  transition: transform 280ms ease, opacity 280ms ease;
}

.bdg-featured-slide.is-visible {
  opacity: 0.78;
  transform: scale(0.95);
}

.bdg-featured-slide.is-focus {
  opacity: 1;
  transform: scale(1);
}

.bdg-featured-image {
  display: block;
  border-radius: var(--bdg-radius-md);
  overflow: hidden;
  border: 1px solid rgba(20, 24, 30, 0.09);
  background: #f6f2ea;
  min-height: 138px;
  aspect-ratio: 4 / 3;
}

.bdg-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdg-featured-content {
  margin-top: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 24, 30, 0.08);
  background: #fff;
  padding: 0.48rem 0.58rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.bdg-featured-title {
  margin: 0;
  color: #172d4a;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bdg-featured-price {
  color: #8d3a1d !important;
  font-weight: 900;
  font-size: 0.95rem;
  margin: 0;
}

.bdg-featured-link {
  margin-top: auto;
  color: #8d3a1d;
  font-weight: 900;
  font-size: 0.86rem;
}

.bdg-carousel-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, #8d3a1d 0%, #6f2d15 100%);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(111, 45, 21, 0.3);
}

.bdg-carousel-prev {
  left: 0.35rem;
}

.bdg-carousel-next {
  right: 0.35rem;
}

.bdg-carousel-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.bdg-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.42rem;
  margin-top: 0.95rem;
}

.bdg-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(29, 53, 87, 0.3);
  cursor: pointer;
  padding: 0;
}

.bdg-carousel-dots button.is-active {
  background: #8d3a1d;
}

.bdg-section {
  padding: clamp(0.95rem, 2vw, 1.6rem) 0;
}

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

.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.3rem, 2.2vw, 1.95rem);
  color: #0f1521;
  line-height: 1.14;
}

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

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

.bdg-dept-card {
  min-height: 208px;
  border-radius: var(--bdg-radius-lg);
  padding: 0.82rem;
  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;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bdg-dept-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 24, 0.54) 0%, rgba(10, 14, 19, 0.88) 78%, rgba(10, 14, 19, 0.94) 100%);
  z-index: 0;
}

.bdg-dept-card > * {
  position: relative;
  z-index: 1;
}

.bdg-dept-card > div {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 13, 18, 0.35);
  padding: 0.58rem 0.66rem;
  backdrop-filter: blur(1.8px);
}

.bdg-dept-card h3 {
  margin: 0 0 0.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.22;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.bdg-dept-card p {
  margin: 0;
  font-size: 0.94rem;
  max-width: 30ch;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.32);
}

.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;
  background: rgba(8, 12, 17, 0.42);
}

.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: 1.8rem;
  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-good-neighbor {
  margin-top: 0.7rem;
}

.bdg-footer-good-neighbor img {
  width: 168px;
  max-width: 100%;
  border-radius: 8px;
  background: #fff;
  padding: 0.3rem 0.45rem;
}

.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;
}

.bdg-home-hero-grid {
  max-width: 1200px;
}

.bdg-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bdg-hero-copy p {
  margin: 0;
  max-width: 96ch;
  color: rgba(247, 243, 236, 0.92);
}

.bdg-hero-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bdg-hero-metrics li {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 18, 25, 0.44);
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.2rem;
}

.bdg-hero-metrics strong {
  color: #fff4dd;
  font-size: 0.96rem;
  line-height: 1.2;
}

.bdg-hero-metrics span {
  color: rgba(242, 235, 224, 0.82);
  font-size: 0.84rem;
  line-height: 1.35;
}

.bdg-section-prescription {
  padding-top: 1.4rem;
}

.bdg-prescription-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.bdg-prescription-compounding-card {
  border-radius: var(--bdg-radius-lg);
  border: 1px solid rgba(19, 26, 34, 0.1);
  background: linear-gradient(128deg, #112641 0%, #1d3557 62%, #8d3a1d 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 20, 28, 0.22);
  padding: 0.72rem;
}

.bdg-prescription-compounding-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.6rem;
}

.bdg-prescription-compounding-card h3 {
  margin: 0;
  color: #fff7eb;
  font-family: 'Alfa Slab One', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}

.bdg-prescription-compounding-card p {
  margin: 0.5rem 0 0;
  color: rgba(250, 246, 238, 0.94);
  line-height: 1.5;
}

.bdg-prescription-compounding-card .bdg-btn {
  margin-top: 0.85rem;
}

.bdg-prescription-intro {
  border-radius: var(--bdg-radius-lg);
  border: 1px solid rgba(19, 26, 34, 0.09);
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 19, 24, 0.06);
  padding: clamp(0.85rem, 2vw, 1.15rem);
}

.bdg-prescription-intro p {
  margin: 0;
  color: #333c49;
  line-height: 1.6;
}

.bdg-prescription-intro p + p {
  margin-top: 0.6rem;
}

.bdg-rx-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

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

.bdg-rx-support-card {
  margin-top: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 24, 30, 0.12);
  background: linear-gradient(145deg, #f7f2e8 0%, #fff 100%);
  padding: 0.72rem;
}

.bdg-rx-support-card h4 {
  margin: 0;
  color: #142b47;
  font-size: 0.95rem;
}

.bdg-rx-support-card h4 a {
  color: #8d3a1d;
}

.bdg-rx-support-card p {
  margin: 0.35rem 0 0;
  color: #334050;
  line-height: 1.4;
  font-size: 0.88rem;
}

.bdg-rx-hours-label {
  margin-top: 0.5rem !important;
  font-weight: 800;
  color: #132744 !important;
}

.bdg-pillar-card {
  border-radius: 12px;
  border: 1px solid rgba(20, 24, 30, 0.1);
  background: linear-gradient(145deg, #ffffff 0%, #f4efe6 100%);
  padding: 0.68rem;
}

.bdg-pillar-card h4 {
  margin: 0;
  color: #153053;
  font-size: 0.92rem;
}

.bdg-pillar-card p {
  margin: 0.45rem 0 0;
  color: #344050;
  line-height: 1.45;
  font-size: 0.88rem;
}

.bdg-section-pharmacy-services {
  padding-top: 0.1rem;
}

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

.bdg-service-lane {
  border-radius: var(--bdg-radius-md);
  border: 1px solid rgba(19, 26, 34, 0.1);
  background: linear-gradient(145deg, #ffffff 0%, #f7f2e9 100%);
  box-shadow: 0 10px 24px rgba(15, 19, 24, 0.06);
  padding: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bdg-service-lane h3 {
  margin: 0;
  color: #132744;
  font-size: 0.98rem;
}

.bdg-service-lane ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.bdg-service-lane li {
  position: relative;
  padding-left: 0.92rem;
  color: #313b48;
  line-height: 1.35;
  font-size: 0.9rem;
}

.bdg-service-lane li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #8d3a1d;
}

.bdg-pharmacy-service-cta {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.bdg-section-shopcards {
  padding-top: 0.35rem;
  padding-bottom: 1.5rem;
}

.bdg-shop-card {
  padding: 0.95rem;
  min-height: 206px;
}

.bdg-shop-card-silencer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 233, 224, 0.92) 100%);
}

.bdg-shop-card-silencer .bdg-eyebrow {
  color: #7b3118;
}

.bdg-compounding-points {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.bdg-compounding-points li {
  color: rgba(250, 246, 238, 0.95);
}

.bdg-cta-links {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.bdg-section-cta .bdg-btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.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-home-hero-grid,
  .bdg-prescription-shell,
  .bdg-section-financing .bdg-wrap,
  .bdg-section-compounding .bdg-wrap,
  .bdg-shop-card-grid {
    grid-template-columns: 1fr;
  }

  .bdg-featured-slide {
    min-width: 50%;
  }

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

  .bdg-dept-grid,
  .bdg-service-lanes,
  .bdg-section-mechanics .bdg-mechanics-grid,
  .bdg-services-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: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.35rem 0;
  }

  .bdg-topbar-right {
    justify-content: flex-end;
    gap: 0.45rem;
    width: 100%;
  }

  .bdg-topbar-gnp {
    width: 96px;
  }

  .bdg-topbar-rx-link {
    font-size: 0.72rem;
    padding: 0.18rem 0.55rem;
  }

  .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-hero-metrics,
  .bdg-prescription-pillar-grid {
    grid-template-columns: 1fr;
  }

  .bdg-rx-actions .bdg-btn {
    width: 100%;
  }

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

  .bdg-featured-carousel {
    padding: 0.75rem 0.68rem 2.5rem;
  }

  .bdg-featured-slide {
    min-width: 100%;
    opacity: 1;
    transform: none;
  }

  .bdg-carousel-nav {
    top: auto;
    bottom: 0.72rem;
    transform: none;
    width: 34px;
    height: 34px;
  }

  .bdg-carousel-prev {
    left: calc(50% - 56px);
  }

  .bdg-carousel-next {
    right: calc(50% - 56px);
  }

  .bdg-carousel-dots {
    margin-top: 1rem;
  }

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

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

  .bdg-cta-links {
    flex-direction: column;
  }

  .bdg-pharmacy-service-cta {
    flex-direction: column;
  }

  .bdg-cta-links .bdg-btn {
    width: 100%;
  }

  .bdg-pharmacy-service-cta .bdg-btn {
    width: 100%;
  }

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