:root {
  --background-color: #f6f1e7;
  --default-color: #4f443c;
  --heading-color: #7a4e2d;
  --accent-color: #8a9b5a;
  --surface-color: #fffdf8;
  --contrast-color: #ffffff;
  --nav-color: #7a4e2d;
  --nav-hover-color: #a0704a;
  --nav-mobile-background-color: #fffdf8;
  --nav-dropdown-background-color: #fffdf8;
  --nav-dropdown-color: #7a4e2d;
  --nav-dropdown-hover-color: #a0704a;
  --br-rich-root: #7a4e2d;
  --br-soft-clay: #a0704a;
  --br-olive: #8a9b5a;
  --br-fresh-leaf: #afcb7a;
  --br-sand: #e8d3a8;
  --br-cream: #f6f1e7;
  --br-gold: #d6a85c;
  --br-gray: #6e6a64;
  --br-shadow: 0 18px 45px rgba(122, 78, 45, 0.12);
}

body.bare-roots-site {
  background:
    radial-gradient(circle at top left, rgba(232, 211, 168, 0.32), transparent 34%),
    radial-gradient(circle at right center, rgba(175, 203, 122, 0.16), transparent 24%),
    var(--br-cream);
  color: var(--default-color);
}

.bare-roots-site .section {
  padding: 88px 0;
}

.bare-roots-site .container {
  position: relative;
}

.br-announcement {
  display: none;
}

.br-header {
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 78, 45, 0.08);
}

.br-header .navbar {
  padding: 1rem 0;
}

.br-nav-shell {
  align-items: center;
}

.br-header .navbar-brand img,
.footer-logo {
  width: min(200px, 100%);
  height: auto;
  display: block;
}

.br-header .navbar-brand {
  margin: 0;
}

.br-header .navbar-toggler {
  border-color: rgba(122, 78, 45, 0.18);
}

.br-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(175, 203, 122, 0.3);
}

.br-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28122,78,45,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.br-header .navbar-nav {
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.br-header .nav-link {
  color: var(--br-rich-root);
  font-family: var(--nav-font);
  font-weight: 500;
  white-space: nowrap;
}

.br-header .nav-link:hover,
.br-header .nav-link:focus {
  color: var(--br-soft-clay);
}

.br-header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: 1.25rem;
  flex-wrap: nowrap;
}

.br-header-link,
.br-header-cart {
  color: var(--br-rich-root);
  font-family: var(--nav-font);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.br-header-link:hover,
.br-header-link:focus,
.br-header-cart:hover,
.br-header-cart:focus {
  color: var(--br-soft-clay);
}

.br-header-link {
  padding: 0.35rem 0;
}

.br-header-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0 0.45rem 0.55rem;
}

.br-header-cart i {
  font-size: 1rem;
}

.br-header-cart .br-cart-count {
  min-width: 1.45rem;
  height: 1.45rem;
  font-size: 0.76rem;
  background: rgba(122, 78, 45, 0.1);
  color: var(--br-rich-root);
}

.btn-root,
.btn-outline-root {
  border-radius: 18px;
  padding: 0.86rem 1.45rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-root {
  background: linear-gradient(135deg, var(--br-rich-root), var(--br-soft-clay));
  color: #fff;
  border: 0;
  box-shadow: 0 10px 24px rgba(122, 78, 45, 0.18);
}

.btn-root:hover,
.btn-root:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(122, 78, 45, 0.2);
}

.btn-outline-root {
  background: transparent;
  color: var(--br-rich-root);
  border: 1px solid rgba(122, 78, 45, 0.24);
}

.btn-outline-root:hover,
.btn-outline-root:focus {
  background: rgba(232, 211, 168, 0.24);
  color: var(--br-rich-root);
  transform: translateY(-1px);
}

.br-eyebrow,
.mini-label,
.detail-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--br-olive);
  font-family: var(--nav-font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.br-hero {
  padding-top: 72px;
}

.br-hero h1,
.br-page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin: 1rem 0 1.25rem;
}

.hero-copy,
.page-hero-inner p,
.br-section-heading p,
.contact-panel p,
.content-panel p {
  font-size: 1.05rem;
  color: var(--br-gray);
}

.br-cta-row,
.product-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.br-inline-points {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--br-gray);
}

.br-inline-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.br-hero-card,
.contact-panel,
.summary-card,
.form-card,
.cart-table-card,
.content-panel,
.info-panel,
.benefit-card,
.step-card,
.quote-card,
.br-detail-card {
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(122, 78, 45, 0.08);
  border-radius: 14px;
  box-shadow: var(--br-shadow);
}

.br-hero-card {
  padding: 2rem;
}

.br-hero-photo img,
.founder-photo-wrap img,
.ingredients-graphic-wrap img,
.how-photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.br-hero-card-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin: 0.8rem 0 0.9rem;
}

.br-hero-shop-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-shop-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  background: rgba(232, 211, 168, 0.2);
}

.hero-shop-card.accent-leaf {
  background: rgba(175, 203, 122, 0.18);
}

.hero-shop-image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.72);
}

.hero-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.hero-shop-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.hero-shop-body p {
  margin: 0 0 0.8rem;
  color: var(--br-gray);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-shop-footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.hero-shop-btn {
  width: 100%;
  padding: 0.72rem 0.95rem;
  font-size: 0.95rem;
}

.br-trust-strip {
  padding: 0 0 16px;
}

.trust-item {
  background: rgba(255, 253, 248, 0.75);
  border-radius: 22px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(122, 78, 45, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-item strong {
  color: var(--br-rich-root);
  font-family: var(--heading-font);
  font-size: 1.05rem;
}

.br-founder-story h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.8rem 0 1rem;
}

.br-founder-story p {
  color: var(--br-gray);
  font-size: 1.06rem;
}

.founder-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--br-shadow);
  background: rgba(255, 253, 248, 0.92);
}

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

.founder-photo-wrap {
  aspect-ratio: 4 / 5;
}

.ingredients-graphic-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--br-shadow);
}

.how-photo-band {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--br-shadow);
  aspect-ratio: 16 / 7;
}

@media (max-width: 767.98px) {
  .founder-photo-grid {
    gap: 0.6rem;
  }
}

.br-section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.br-section-heading h2,
.content-panel h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.75rem 0 1rem;
}

.br-product-card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(122, 78, 45, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--br-shadow);
  height: 100%;
}

.br-product-card.accessory-card {
  display: block;
}

.br-product-card.accessory-card .product-image-wrap {
  min-height: 180px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.8), rgba(232, 211, 168, 0.16));
}

.br-product-card.accessory-card .product-image-wrap img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.br-product-card.accessory-card .product-body {
  padding: 2rem;
}

.br-product-card.accessory-card .product-actions {
  margin-top: 1rem;
}

@media (max-width: 991.98px) {
  .br-product-card.accessory-card .product-image-wrap,
  .br-product-card.accessory-card .product-body {
    padding: 1.5rem;
  }
}

.product-image-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(232, 211, 168, 0.28), rgba(246, 241, 231, 0.2));
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.leaf-card .product-image-wrap,
.leaf-card .detail-media {
  background: linear-gradient(180deg, rgba(175, 203, 122, 0.22), rgba(246, 241, 231, 0.24));
}

.product-image-wrap img,
.detail-media img {
  max-width: min(100%, 320px);
  max-height: 320px;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--br-rich-root);
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.product-badge.leaf {
  background: var(--br-olive);
  color: #fff;
}

.product-body,
.detail-body,
.content-panel,
.info-panel,
.benefit-card,
.step-card,
.quote-card,
.summary-card,
.form-card {
  padding: 1.7rem;
}

.product-topline,
.detail-heading-row,
.summary-line,
.footer-meta,
.purchase-box,
.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product-topline,
.detail-heading-row {
  align-items: start;
  margin-bottom: 0.8rem;
}

.product-topline h3,
.detail-heading-row h2,
.summary-card h2,
.form-card h2 {
  margin: 0;
}

.price {
  color: var(--br-rich-root);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
}

.product-points,
.detail-meta,
.br-list-numbered {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--br-gray);
}

.detail-meta {
  padding-left: 0;
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.light-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(232, 211, 168, 0.1));
}

.benefit-card,
.step-card,
.quote-card,
.info-panel {
  height: 100%;
}

.benefit-card i,
.step-card .step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(175, 203, 122, 0.18);
  color: var(--br-rich-root);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.step-card .step-number {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
}

.quote-card p {
  font-size: 1.1rem;
  line-height: 1.75;
}

.br-accordion .accordion-item {
  border: 1px solid rgba(122, 78, 45, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.92);
  margin-bottom: 1rem;
}

.br-accordion .accordion-button {
  background: transparent;
  color: var(--br-rich-root);
  font-weight: 600;
  box-shadow: none;
}

.br-accordion .accordion-button:not(.collapsed) {
  background: rgba(232, 211, 168, 0.2);
  color: var(--br-rich-root);
}

.contact-panel {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.br-footer {
  padding: 2.2rem 0 2.6rem;
  background: #E8D3A8;
  color: rgb(133 84 51);
}

.br-footer p,
.footer-meta a,
.footer-links a {
  color: rgb(133 84 51);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-meta {
  flex-wrap: wrap;
  align-items: center;
}

.br-page-hero {
  padding-bottom: 8px;
}

.page-hero-inner {
  max-width: 760px;
}

.product-details-page .br-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.product-details-page .page-hero-inner p {
  max-width: 42rem;
  margin-bottom: 0;
}

.br-detail-card {
  overflow: hidden;
}

.detail-media {
  min-height: 340px;
  padding: 2rem;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(232, 211, 168, 0.3), rgba(246, 241, 231, 0.15));
}

.purchase-box {
  align-items: end;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.qty-group {
  min-width: 96px;
}

.qty-group label,
.cart-cell label {
  display: block;
  font-size: 0.82rem;
  color: var(--br-gray);
  margin-bottom: 0.45rem;
}

.qty-group input,
.cart-cell input,
.form-card .form-control {
  border-radius: 10px;
  border: 1px solid rgba(122, 78, 45, 0.14);
  padding: 0.8rem 1rem;
  background: rgba(255, 253, 248, 0.85);
}

.form-card .form-control:focus,
.qty-group input:focus,
.cart-cell input:focus {
  border-color: var(--br-olive);
  box-shadow: 0 0 0 0.18rem rgba(175, 203, 122, 0.22);
}

.cart-table-card {
  padding: 0.5rem 1.5rem;
}

.cart-row {
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(122, 78, 45, 0.08);
}

.cart-row:last-child {
  border-bottom: 0;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex: 1 1 auto;
}

.cart-product img,
.summary-product img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(232, 211, 168, 0.2);
}

.cart-product h2 {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.cart-product p,
.summary-note {
  color: var(--br-gray);
  margin: 0;
}

.cart-cell {
  min-width: 110px;
}

.summary-card {
  padding: 1.7rem;
}

.summary-line {
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(122, 78, 45, 0.08);
  color: var(--br-gray);
}

.summary-line.total {
  color: var(--br-rich-root);
  font-weight: 700;
  font-size: 1.1rem;
}

.summary-product {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.summary-product span {
  display: block;
  color: var(--br-gray);
  font-size: 0.95rem;
}

.summary-note {
  margin-top: 1rem;
  font-size: 0.94rem;
}

.sticky-summary {
  position: sticky;
  top: 120px;
}

@media (max-width: 991.98px) {
  .br-announcement .container,
  .contact-panel,
  .cart-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .br-header-actions {
    margin: 1rem 0 0;
    flex-wrap: wrap;
  }

  .sticky-summary {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .bare-roots-site .section {
    padding: 26px 0;
  }

  .br-header .navbar-brand img,
  .footer-logo {
    width: min(240px, 100%);
  }

  .br-hero-card,
  .br-product-card,
  .summary-card,
  .form-card,
  .cart-table-card,
  .content-panel,
  .info-panel,
  .benefit-card,
  .step-card,
  .quote-card,
  .br-detail-card,
  .contact-panel {
    border-radius: 12px;
  }

  .hero-shop-card,
  .cart-product,
  .summary-product {
    grid-template-columns: 1fr;
  }

  .hero-shop-image img,
  .cart-product img,
  .summary-product img {
    width: 84px;
    height: 84px;
  }

  .product-topline,
  .detail-heading-row,
  .purchase-box,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .br-hero-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .hero-shop-card {
    padding: 0.7rem;
  }

  .hero-shop-image {
    aspect-ratio: 1 / 1;
    margin-bottom: 0.65rem;
  }

  .hero-shop-image img {
    width: 100%;
    height: 100%;
  }

  .hero-shop-body h3 {
    font-size: 0.98rem;
  }

  .hero-shop-body p {
    font-size: 0.84rem;
    margin-bottom: 0.65rem;
  }

  .hero-shop-footer .price {
    font-size: 1.2rem;
  }

  .hero-shop-btn {
    padding: 0.62rem 0.75rem;
    font-size: 0.86rem;
  }
}

.br-cart-button {
  position: relative;
}

.br-cart-count {
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.br-cart-count.has-items {
  background: var(--br-gold);
  color: var(--br-rich-root);
}

.cart-bump {
  transform: translateY(-1px) scale(1.03);
}

.cart-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 0.4rem;
}

.cart-table-head h2 {
  margin: 0;
}

.btn-text-root {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--br-soft-clay);
  font-weight: 600;
}

.btn-text-root:hover,
.btn-text-root:focus {
  color: var(--br-rich-root);
}

.cart-items-list {
  display: grid;
}

.cart-empty-state {
  padding: 2rem 0 1rem;
}

.cart-empty-state h2 {
  margin-bottom: 0.65rem;
}

.cart-empty-state p {
  color: var(--br-gray);
  margin-bottom: 1.25rem;
}

.cart-qty-cell {
  min-width: 168px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(122, 78, 45, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.85);
}

.qty-step {
  width: 2.6rem;
  height: 2.9rem;
  border: 0;
  background: transparent;
  color: var(--br-rich-root);
  font-size: 1.2rem;
  font-weight: 700;
}

.qty-step:hover,
.qty-step:focus {
  background: rgba(232, 211, 168, 0.28);
}

.qty-stepper input {
  width: 3.4rem;
  height: 2.9rem;
  border: 0;
  border-left: 1px solid rgba(122, 78, 45, 0.08);
  border-right: 1px solid rgba(122, 78, 45, 0.08);
  text-align: center;
  background: transparent;
  padding: 0;
}

.summary-items {
  display: grid;
}

.order-status {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.order-status.success {
  background: rgba(175, 203, 122, 0.22);
  color: #496022;
}

.order-status.error {
  background: rgba(214, 168, 92, 0.2);
  color: var(--br-rich-root);
}

.br-form-divider {
  border-color: rgba(122, 78, 45, 0.08);
  margin: 0.25rem 0;
}

@media (max-width: 991.98px) {
  .br-header .navbar {
    padding: 0.8rem 0;
  }

  .br-nav-shell {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    grid-template-areas:
      "toggle brand cart"
      "menu menu menu";
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap !important;
  }

  .br-mobile-toggle,
  .br-mobile-cart {
    width: 52px;
    height: 52px;
    padding: 0;
    margin: 0;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .br-mobile-toggle {
    grid-area: toggle;
  }

  .br-mobile-cart {
    grid-area: cart;
    justify-self: end;
    gap: 0;
  }

  .br-mobile-cart i {
    font-size: 1.05rem;
  }

  .br-mobile-cart .br-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 1.35rem;
    height: 1.35rem;
    font-size: 0.72rem;
    padding: 0 0.25rem;
    background: var(--br-gold);
    color: var(--br-rich-root);
  }

  .br-header .navbar-brand {
    grid-area: brand;
    justify-self: center;
    width: auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .br-header .navbar-brand img {
    width: clamp(132px, 36vw, 200px);
    max-width: 100%;
  }

  .br-header .navbar-collapse {
    grid-area: menu;
    grid-column: 1 / -1;
    margin-top: 0.85rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(122, 78, 45, 0.08);
  }

  .br-header .navbar-nav {
    gap: 0.15rem;
  }

  .br-header .nav-link {
    padding: 0.7rem 0;
  }

  .br-header-actions {
    margin: 1rem 0 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .btn-root,
  .btn-outline-root {
    border-radius: 16px;
  }

  .br-mobile-toggle,
  .br-mobile-cart {
    width: 48px;
    height: 48px;
  }

  .br-header .navbar-brand img {
    width: clamp(118px, 34vw, 170px);
  }
}
