:root {
  --bs-pink: #ff006c;
  --bs-pink-dark: #df005f;
  --bs-ink: #121212;
  --bs-muted: #707070;
  --bs-mist: #f3f3f3;
  --bs-line: #d8d8d8;
  --bs-radius: 20px 50px;
  --bs-width: 1287px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--bs-ink);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.bs-menu-open,
body.bs-mega-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.bs-page-width { width: min(calc(100% - 40px), var(--bs-width)); margin-inline: auto; }
.bs-narrow { max-width: 900px; }
.screen-reader-text {
  position: absolute!important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  clip: auto!important; width: auto; height: auto; padding: 12px 18px;
  top: 8px; left: 8px; z-index: 99999; background: #fff;
}
.bs-main { min-height: 55vh; padding: 150px 0 80px; }
.bs-content h1, .bs-page-title { font-size: clamp(34px, 5vw, 60px); line-height: 1.05; }
.bs-content a { color: var(--bs-pink-dark); }

/* Header */
.bs-header-shell {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  padding-inline: 20px; transition: transform .35s ease, background .3s ease;
}
.bs-header-shell.is-hidden { transform: translateY(-120%); }
.bs-header {
  width: min(100%, var(--bs-width)); min-height: 96px; margin: 0 auto;
  padding: 15px 35px; display: flex; align-items: center; gap: 26px;
  background: #fff; border: 1px solid #ccc; border-top: 0;
  border-radius: 0 0 40px 40px; box-shadow: 0 5px 18px rgb(0 0 0 / .03);
}
.bs-logo { flex: 0 0 auto; }
.bs-logo img { width: 170px; max-height: 64px; object-fit: contain; }
.bs-desktop-nav { display: flex; justify-content: center; flex: 1; }
.bs-nav-list, .bs-desktop-nav ul {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 25px; margin: 0; padding: 0; list-style: none;
}
.bs-nav-list a, .bs-desktop-nav a {
  color: #2c2928; font-size: 13px; font-weight: 500;
  text-decoration: none; text-transform: uppercase; transition: color .2s ease;
}
.bs-nav-list a:hover, .bs-desktop-nav a:hover { color: var(--bs-pink); }
.bs-header-actions { display: flex; align-items: center; gap: 7px; }
.bs-icon-button {
  position: relative; display: grid; place-items: center; width: 42px; height: 42px;
  padding: 0; color: #2c2928; background: transparent; border: 0; cursor: pointer;
}
.bs-icon-button svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.bs-cart-link svg { width: 30px; }
.bs-cart-count {
  position: absolute; top: 0; right: -2px; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 20px; background: var(--bs-pink); color: #fff;
  font-size: 10px; line-height: 18px; text-align: center;
}
.bs-menu-toggle { display: none; }
.bs-menu-toggle span { width: 23px; height: 2px; background: currentColor; margin: 2.5px; }
.bs-mega-menu {
  position: fixed; top: 110px; left: 50%; z-index: -1;
  display: grid; grid-template-columns: repeat(4, 1fr) 1.55fr; gap: 20px;
  width: min(calc(100% - 40px), var(--bs-width)); padding: 30px 30px 20px;
  transform: translate(-50%, -180%); opacity: 0;
  border-radius: 45px; background: #fff; box-shadow: 0 10px 35px rgb(0 0 0 / .16);
  transition: transform .7s cubic-bezier(.22,1,.36,1), opacity .4s ease;
}
.bs-mega-open .bs-mega-menu { z-index: 1001; transform: translate(-50%, 0); opacity: 1; }
.bs-mega-card {
  display: flex; flex-direction: column; gap: 15px; padding: 19px 14px 0;
  overflow: hidden; border-radius: 20px; background: #e9e9e9;
  text-align: center; text-decoration: none;
}
.bs-mega-card strong { font-size: 16px; font-weight: 500; }
.bs-mega-card span { display: block; height: 125px; }
.bs-mega-card img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; transition: transform .25s ease; }
.bs-mega-card:hover img { transform: scale(1.04); }
.bs-search-panel {
  position: fixed; top: 110px; left: 50%; width: min(calc(100% - 40px), 680px);
  transform: translate(-50%, -30px); padding: 20px; border-radius: 30px;
  background: #fff; box-shadow: 0 12px 35px rgb(0 0 0 / .16); opacity: 0;
  pointer-events: none; transition: .25s ease;
}
.bs-search-panel.is-open { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.bs-search-panel form, .bs-empty-state form { display: flex; }
.bs-search-panel input, .bs-empty-state input {
  width: 100%; min-height: 52px; padding: 0 20px; border: 1px solid var(--bs-line); border-radius: 26px 0 0 26px;
}
.bs-search-panel button, .bs-empty-state form button {
  padding: 0 22px; border: 0; border-radius: 0 26px 26px 0; background: var(--bs-pink); color: #fff;
}
.bs-mobile-drawer {
  position: fixed; inset: 0 auto 0 0; z-index: 1300; width: min(88vw, 390px);
  padding: 28px; transform: translateX(-105%); background: #fff;
  box-shadow: 10px 0 35px rgb(0 0 0 / .2); transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.bs-menu-open .bs-mobile-drawer { transform: translateX(0); }
.bs-mobile-logo img { width: 180px; }
.bs-drawer-close { position: absolute; top: 16px; right: 22px; border: 0; background: none; font-size: 36px; }
.bs-mobile-list, .bs-mobile-drawer .bs-nav-list {
  display: block; margin: 35px 0 0; padding: 0; list-style: none;
}
.bs-mobile-list li, .bs-mobile-drawer .bs-nav-list li { border-bottom: 1px solid #eee; }
.bs-mobile-list a, .bs-mobile-drawer .bs-nav-list a {
  display: block; padding: 14px 2px; font-size: 15px; font-weight: 500; text-decoration: none; text-transform: uppercase;
}
.bs-overlay {
  position: fixed; inset: 0; z-index: 1100; background: rgb(18 18 18 / .55);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.bs-menu-open .bs-overlay, .bs-mega-open .bs-overlay { opacity: 1; pointer-events: auto; }

/* Homepage */
.bs-home { overflow: hidden; }
.bs-hero { height: 600px; }
.bs-hero picture, .bs-hero img { width: 100%; height: 100%; }
.bs-hero img { object-fit: cover; }
.bs-intro { padding: 40px 10% 52px; text-align: center; }
.bs-intro h1 { margin: 0 0 24px; font-size: clamp(38px, 5vw, 58px); line-height: 1.05; }
.bs-intro p { max-width: 1050px; margin: 0 auto 15px; }
.bs-video-card { position: relative; overflow: hidden; border-radius: var(--bs-radius); background: #eee; }
.bs-video-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.bs-play {
  position: absolute; inset: 50% auto auto 50%; display: grid; place-items: center;
  width: 72px; height: 72px; padding-left: 5px; transform: translate(-50%,-50%);
  border-radius: 50%; background: rgb(255 255 255 / .92); color: var(--bs-pink); font-size: 25px;
}
.bs-revolution { position: relative; margin: 70px 0 0; min-height: 520px; }
.bs-revolution > img { width: 100%; min-height: 520px; object-fit: cover; }
.bs-revolution::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(0 0 0 / .45), transparent 65%); }
.bs-revolution-content {
  position: absolute; inset: 50% auto auto max(30px, calc((100% - var(--bs-width))/2));
  z-index: 2; width: min(600px, 75%); transform: translateY(-50%); color: #fff;
}
.bs-revolution h2 { margin: 0 0 15px; font-family: "PT Serif", serif; font-size: clamp(36px, 5vw, 66px); line-height: .98; }
.bs-revolution p { max-width: 510px; margin: 0; font-size: 20px; font-weight: 600; }
.bs-benefits { padding-block: 60px; text-align: center; }
.bs-benefits header h2, .bs-new-arrivals > h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); }
.bs-benefits header p { margin-top: 5px; }
.bs-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 42px; }
.bs-benefit-grid article { padding: 26px 18px; border-radius: 20px 42px; background: #fafafa; }
.bs-benefit-grid img { width: 105px; height: 105px; margin: 0 auto 18px; object-fit: contain; }
.bs-benefit-grid h3 { margin: 0; font-size: 16px; line-height: 1.45; }
.bs-media-grid { display: grid; gap: 20px; margin-bottom: 55px; }
.bs-media-main, .bs-media-stack > div, .bs-guilt-image, .bs-range-grid > a, .bs-drinkmaker { position: relative; overflow: hidden; }
.bs-media-main img, .bs-media-stack img { width: 100%; border-radius: var(--bs-radius); }
.bs-media-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bs-media-stack img { width: 100%; height: 100%; object-fit: cover; }
.bs-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 9px 20px; border-radius: 30px;
  background: var(--bs-pink); color: #fff; font-size: 13px; font-weight: 700;
  text-decoration: none; text-transform: uppercase; transition: background .2s ease, transform .2s ease;
}
.bs-pill:hover, .bs-button:hover { background: var(--bs-pink-dark); transform: translateY(-2px); }
.bs-media-main .bs-pill, .bs-media-stack .bs-pill, .bs-guilt-image .bs-pill,
.bs-range-grid .bs-pill, .bs-drinkmaker .bs-pill { position: absolute; right: 22px; bottom: 22px; }
.bs-guilt { display: grid; grid-template-columns: 1fr 1.15fr; gap: 55px; align-items: center; padding-block: 30px 55px; }
.bs-guilt-copy h2 { max-width: 480px; margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.15; }
.bs-guilt-copy h3 { margin: 4px 0 20px; font-size: 28px; font-weight: 500; }
.bs-guilt-copy p { max-width: 520px; font-size: 14px; }
.bs-guilt-image img { width: 100%; border-radius: 10px 40px; }
.bs-award { position: relative; height: 500px; margin-block: 20px 60px; overflow: hidden; border-radius: var(--bs-radius); }
.bs-award-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bs-award-copy { position: absolute; top: 50%; left: 5%; z-index: 2; width: 48%; transform: translateY(-50%); color: #fff; }
.bs-award-copy h2 { margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.02; }
.bs-award-copy span { display: block; width: 70%; height: 18px; margin-top: 22px; background: linear-gradient(90deg,#028001 0 33%,#fff 33% 66%,#fe0000 66%); }
.bs-award-product { position: absolute; right: 5%; bottom: 5%; z-index: 2; width: 22%; max-height: 80%; border-radius: 15px; box-shadow: 0 5px 18px rgb(0 0 0 / .3); object-fit: cover; }
.bs-range { padding-block: 15px 55px; text-align: center; }
.bs-range > h2 { max-width: 850px; margin: 0 auto 40px; font-size: clamp(28px, 4vw, 42px); line-height: 1.12; }
.bs-range-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 40px; }
.bs-range-grid > a { min-height: 255px; border-radius: var(--bs-radius); }
.bs-range-grid .bs-range-large { grid-row: span 2; }
.bs-range-grid img { width: 100%; height: 100%; object-fit: cover; }
.bs-range-grid .bs-pill { left: 20px; right: auto; }
.bs-drinkmaker { margin-bottom: 50px; border-radius: var(--bs-radius); }
.bs-drinkmaker img { width: 100%; }
.bs-drinkmaker h2 {
  position: absolute; top: 50%; left: 0; margin: 0; transform: translateY(-50%) rotate(180deg);
  color: #f5f5f5; font-size: 40px; writing-mode: vertical-lr; text-transform: uppercase;
}
.bs-new-arrivals { padding-block: 20px 65px; text-align: center; }

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb { margin-bottom: 24px; color: var(--bs-muted); font-size: 13px; }
.woocommerce .woocommerce-result-count { font-size: 13px; }
.woocommerce .woocommerce-ordering select {
  min-height: 46px; padding: 0 38px 0 15px; border: 1px solid #ddd; border-radius: 24px; background: #fff;
}
.woocommerce ul.products {
  display: grid!important; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 46px 20px;
  margin: 30px 0!important; padding: 0!important;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none!important; }
.woocommerce ul.products li.product {
  float: none!important; width: auto!important; margin: 0!important; padding: 0 0 18px!important;
  overflow: hidden; border-radius: 10px 40px; background: #f3f3f3; text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgb(0 0 0 / .08); }
.woocommerce ul.products li.product a img {
  width: 100%; aspect-ratio: 1/1; margin: 0 0 16px!important; background: #fff; object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 16px!important; font-size: 15px!important; font-weight: 600; }
.woocommerce ul.products li.product .price { padding: 0 16px; color: #111!important; font-size: 15px!important; font-weight: 600!important; }
.woocommerce ul.products li.product .price del { color: #777; font-size: 12px; }
.woocommerce span.onsale {
  top: 12px!important; left: 12px!important; min-width: auto!important; min-height: auto!important;
  padding: 5px 12px!important; border-radius: 20px!important; background: var(--bs-pink)!important;
  font-size: 11px!important; line-height: 1.3!important;
}
.woocommerce ul.products li.product .button {
  display: block; margin: 13px 16px 0!important; padding: 11px 15px!important;
  border-radius: 25px; background: var(--bs-pink)!important; color: #fff!important; text-align: center;
}
.bs-installments { margin: 7px 16px 0; color: #555; font-size: 11px; font-weight: 400; }
.bs-installments .woocommerce-Price-amount { color: #111; font-weight: 600; }
.single-product .bs-installments { margin: 8px 0 17px; font-size: 13px; }
.woocommerce div.product div.images img { border-radius: 15px 45px; }
.woocommerce div.product .product_title { font-size: clamp(30px, 4vw, 46px); line-height: 1.08; }
.woocommerce div.product p.price { color: #111!important; font-size: 24px!important; font-weight: 600; }
.woocommerce div.product form.cart .button, .woocommerce #respond input#submit,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  border-radius: 28px!important; background: var(--bs-pink)!important; color: #fff!important;
}
.woocommerce div.product form.cart .button { min-height: 50px; padding-inline: 32px; }
.woocommerce .quantity .qty { min-height: 48px; border: 1px solid #ddd; border-radius: 24px; }
.woocommerce-tabs { margin-top: 45px; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--bs-pink)!important; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--bs-pink)!important; }
.woocommerce-cart table.cart img { width: 100px; border-radius: 12px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
  min-height: 48px; padding: 10px 15px; border: 1px solid #ddd; border-radius: 8px;
}
.woocommerce-checkout #payment { background: #f5f5f5!important; border-radius: 18px!important; }

/* Content & footer */
.bs-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.bs-post-card { overflow: hidden; border-radius: var(--bs-radius); background: var(--bs-mist); }
.bs-post-card > div { padding: 22px; }
.bs-post-card h2 { margin: 4px 0 10px; line-height: 1.2; }
.bs-post-card h2 a { color: #111; text-decoration: none; }
.bs-post-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bs-post-meta { color: #777; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.bs-text-link { font-weight: 600; text-decoration: none; }
.bs-article h1 { font-size: clamp(38px, 6vw, 70px); line-height: 1; }
.bs-article-image { width: 100%; margin: 30px 0; border-radius: var(--bs-radius); }
.bs-entry { font-size: 17px; }
.bs-entry img { border-radius: 15px 40px; }
.bs-empty-state { max-width: 650px; margin: auto; text-align: center; }
.bs-empty-state .bs-kicker { margin: 0; color: var(--bs-pink); font-size: 22px; font-weight: 700; }
.bs-empty-state form { margin: 28px auto; }
.bs-button { display: inline-block; padding: 12px 22px; border-radius: 30px; background: var(--bs-pink); color: #fff!important; text-decoration: none; }
.bs-contact > header { padding: 55px; margin-bottom: 45px; border-radius: var(--bs-radius); background: #f7e9ee; }
.bs-contact > header h1 { margin: 0; font-size: clamp(46px, 7vw, 82px); }
.bs-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.bs-contact-grid h2 { margin-top: 0; font-size: 32px; }
.bs-form { padding: 32px; border-radius: 15px 40px; background: #f5f5f5; }
.bs-form label { display: block; margin-bottom: 18px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.bs-form input, .bs-form textarea { display: block; width: 100%; margin-top: 7px; padding: 13px 15px; border: 1px solid #ddd; border-radius: 8px; background: #fff; }
.bs-form .bs-button { border: 0; cursor: pointer; }
.bs-return-page { padding-bottom: 0; }
.bs-return-hero { display: flex; align-items: center; min-height: 520px; background: #f7e9ee; }
.bs-return-hero h1 { max-width: 600px; font-size: clamp(46px, 7vw, 84px); line-height: 1; }
.bs-return-choice { padding-block: 60px; text-align: center; }
.bs-return-choice > div { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; max-width: 720px; margin: 35px auto 0; }
.bs-return-choice article { padding: 45px; border-radius: var(--bs-radius); background: #fafafa; }
.bs-return-choice article span { font-size: 58px; }
.bs-return-choice article h3 { margin-bottom: 0; font-size: 23px; }
.bs-return-actions { padding: 65px 0; background: #eee; }
.bs-return-actions h2 { font-size: 38px; }
.bs-return-actions a { display: flex; align-items: center; gap: 15px; max-width: 860px; padding: 16px 0; color: #111; font-size: 17px; text-decoration: none; }
.bs-return-actions a span { width: 22px; height: 22px; flex: 0 0 auto; border: 2px solid var(--bs-pink); border-radius: 50%; }
.bs-return-actions a:hover span { background: var(--bs-pink); box-shadow: inset 0 0 0 4px #eee; }
.bs-offer-hero img { width: 100%; min-height: 440px; border-radius: var(--bs-radius); object-fit: cover; }
.bs-offer-copy { padding-block: 50px; text-align: center; }
.bs-offer-copy h1 { max-width: 850px; margin: 0 auto 25px; font-size: clamp(36px, 5vw, 62px); line-height: 1.1; }
.bs-offer-copy > div { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 950px; margin: 0 auto 28px; text-align: left; }
.bs-footer { padding: 55px 0 25px; background: #121212; color: #fff; }
.bs-footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,1fr) 1.5fr; gap: 35px; }
.bs-footer h2 { margin: 0 0 18px; color: #fff; font-size: 17px; }
.bs-footer p { color: #c7c7c7; font-size: 13px; }
.bs-footer-logo { width: 180px; padding: 8px; border-radius: 10px; background: #fff; }
.bs-footer ul, .bs-footer .bs-nav-list { display: block; margin: 0; padding: 0; list-style: none; }
.bs-footer li { margin-bottom: 8px; }
.bs-footer a { color: #d9d9d9; font-size: 12px; text-decoration: none; text-transform: none; }
.bs-footer a:hover { color: #fff; }
.bs-newsletter form { display: flex; margin-top: 20px; }
.bs-newsletter input { width: 100%; min-width: 0; padding: 12px 15px; border: 1px solid #555; border-radius: 24px 0 0 24px; background: transparent; color: #fff; }
.bs-newsletter button { width: 54px; border: 0; border-radius: 0 24px 24px 0; background: var(--bs-pink); color: #fff; }
.bs-footer-bottom { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 20px; border-top: 1px solid #333; color: #aaa; font-size: 11px; }

@media (max-width: 1180px) {
  .bs-desktop-nav .bs-nav-list, .bs-desktop-nav > ul { gap: 13px; }
  .bs-desktop-nav a { font-size: 11px; }
  .bs-footer-grid { grid-template-columns: repeat(3,1fr); }
  .bs-newsletter { grid-column: span 2; }
}

@media (max-width: 989px) {
  .bs-header-shell { padding-inline: 10px; }
  .bs-header { min-height: 78px; padding: 10px 18px; border-radius: 0 0 28px 28px; }
  .bs-menu-toggle { display: flex; flex-direction: column; justify-content: center; }
  .bs-desktop-nav { display: none; }
  .bs-logo { margin-right: auto; }
  .bs-logo img { width: 145px; max-height: 55px; }
  .bs-header-actions .bs-search-toggle { display: none; }
  .bs-header-actions { gap: 0; }
  .bs-mega-menu { display: none; }
  .bs-main { padding-top: 120px; }
  .bs-hero { height: 440px; }
  .bs-benefit-grid { grid-template-columns: repeat(2,1fr); }
  .bs-range-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 20px; }
  .bs-range-grid .bs-range-large { grid-row: auto; }
  .woocommerce ul.products { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 749px) {
  .bs-page-width { width: min(calc(100% - 24px), var(--bs-width)); }
  .bs-header-actions a:nth-child(2) { display: none; }
  .bs-hero { height: 240px; }
  .bs-intro { padding: 35px 12px 44px; }
  .bs-intro h1 { font-size: 38px; }
  .bs-intro p { font-size: 13px; }
  .bs-video-card { border-radius: 12px 30px; }
  .bs-play { width: 50px; height: 50px; font-size: 17px; }
  .bs-revolution, .bs-revolution > img { min-height: 470px; }
  .bs-revolution-content { left: 24px; width: calc(100% - 48px); }
  .bs-revolution h2 { font-size: 38px; }
  .bs-revolution p { font-size: 16px; }
  .bs-benefits { padding-block: 45px; }
  .bs-benefit-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .bs-benefit-grid article { display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 18px; text-align: left; }
  .bs-benefit-grid img { width: 70px; height: 70px; margin: 0; }
  .bs-media-stack { grid-template-columns: 1fr; }
  .bs-guilt { display: flex; flex-direction: column-reverse; gap: 28px; padding-block: 5px 45px; }
  .bs-guilt-copy h2 { font-size: 32px; }
  .bs-guilt-copy h3 { font-size: 23px; }
  .bs-award { height: 440px; }
  .bs-award-copy { left: 7%; top: 23%; width: 86%; transform: none; }
  .bs-award-copy h2 { font-size: 29px; }
  .bs-award-product { right: 8%; bottom: 7%; width: 42%; }
  .bs-range > h2 { font-size: 28px; }
  .bs-range-grid > a { min-height: 220px; }
  .bs-drinkmaker h2 { font-size: 24px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 10px; }
  .woocommerce ul.products li.product { border-radius: 8px 25px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { padding-inline: 11px!important; font-size: 12px!important; }
  .woocommerce ul.products li.product .price { padding-inline: 11px; font-size: 12px!important; }
  .woocommerce ul.products li.product .button { margin-inline: 11px!important; font-size: 11px; }
  .bs-installments { margin-inline: 11px; font-size: 9px; }
  .bs-post-grid { grid-template-columns: 1fr; }
  .bs-contact-grid, .bs-offer-copy > div { grid-template-columns: 1fr; gap: 25px; }
  .bs-contact > header { padding: 35px 25px; }
  .bs-return-hero { min-height: 400px; }
  .bs-return-choice > div { grid-template-columns: 1fr; }
  .bs-offer-hero img { min-height: 280px; }
  .bs-footer-grid { grid-template-columns: 1fr 1fr; }
  .bs-footer-grid > section:first-child, .bs-newsletter { grid-column: span 2; }
  .bs-footer-bottom { gap: 15px; flex-direction: column; }
}

@media (max-width: 420px) {
  .bs-logo img { width: 125px; }
  .bs-header { gap: 5px; }
  .bs-icon-button { width: 37px; }
  .bs-award { height: 400px; }
}
