/** Shopify CDN: Minification failed

Line 225:22 Expected "}" to go with "{"

**/
/* Body IQ — article sidebar layout */

.biq-blog-layout {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 48px;
  width: 100%;
  overflow: visible !important;
}

.biq-blog-article {
  flex: 1 1 0% !important;
  min-width: 0 !important;
}

.biq-blog-sidebar {
  flex: 0 0 280px !important;
  width: 280px !important;
  min-width: 0 !important;
  position: sticky;
  top: 100px;
  align-self: flex-start !important;
  max-height: calc(100vh - 120px);
  overflow-y: auto !important;
}

.article__main,
.section__container {
  overflow: visible !important;
}

/* Sidebar label */
.biq-sidebar__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
}

/* Product card — horizontal layout */
.biq-sidebar__card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  background: #f4f4f4;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  text-decoration: none;
}

.biq-sidebar__card:hover {
  background: #eeeeee;
}

.biq-sidebar__card-img-wrap {
  flex: 0 0 80px !important;
  width: 80px !important;
  height: 80px !important;
  display: block;
}

.biq-sidebar__card-img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  object-position: center;
  display: block !important;
  padding: 6px;
  background: #f4f4f4;
}

.biq-sidebar__card-img-placeholder {
  width: 80px !important;
  height: 80px !important;
  background: #f4f4f4;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.biq-sidebar__card-img-placeholder span {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #C37663;
  text-transform: uppercase;
}

.biq-sidebar__card-body {
  display: block !important;
  flex: 1 !important;
  padding: 10px 12px !important;
  text-decoration: none;
}

.biq-sidebar__card-name {
  display: block !important;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.3;
  text-decoration: none;
}

.biq-sidebar__card-price {
  display: block !important;
  margin: 0;
}

.biq-sidebar__price {
  display: inline !important;
  font-size: 13px;
  font-weight: 400;
  color: #111;
}

.biq-sidebar__price--compare {
  display: inline !important;
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-right: 5px;
}

/* Mobile floating button + drawer — hidden on desktop */
.biq-mobile-fab,
.biq-drawer-overlay,
.biq-drawer {
  display: none !important;
}

/* Mobile */
@media (max-width: 1024px) {
  .biq-blog-layout {
    flex-direction: column !important;
    gap: 32px;
    padding: 0 20px !important;
  }

  .biq-blog-article {
    width: 100% !important;
    flex: none !important;
  }

  .biq-blog-sidebar {
    display: none !important;
  }

  .biq-mobile-fab {
    display: flex !important;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 24px;
    right: 20px;
    background: #C37663;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border-radius: 100px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
  }

  .biq-mobile-fab.biq-fab--open {
    transform: scale(0.95);
  }

  .biq-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
  }

  .biq-drawer-overlay.biq-drawer--open {
    display: block !important;
  }

  .biq-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 70vh;
    overflow-y: auto;
  }

  .biq-drawer.biq-drawer--open {
    display: block !important;
    transform: translateY(0) !important;
  }

  .biq-drawer__header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
  }

  .biq-drawer__title {