/** Shopify CDN: Minification failed

Line 73:2 Expected ":"
Line 74:2 Expected ":"
Line 75:2 Expected ":"
Line 76:2 Expected ":"
Line 77:2 Expected ":"
Line 78:2 Expected ":"
Line 79:2 Expected ":"
Line 80:2 Expected ":"
Line 81:2 Expected ":"
Line 82:2 Expected ":"
... and 6 more hidden warnings

**/

/* --- Desktop Header Menu --- */
.header__menu-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__menu-separator {
  width: 1px;
  height: 16px;
  background-color: #CCCCCC; /* Adjust color */
  margin-left: 20px;
  margin-right: 20px;
}

.header__menu .menu__item .navlink { /* Base navlink style */
  padding: 10px 15px;
}

/* Main vs Secondary Colors */
.header__menu--main .menu__item .navlink,
.header__menu--main .menu__item .navlink .navtext {
   color: #353535; /* Main nav color */
}
.header__menu--main .menu__item .navlink:hover,
.header__menu--main .menu__item .navlink:hover .navtext {
   color: /* Your main hover color */;
}

.header__menu--secondary .menu__item .navlink {
  color: rgba(15, 15, 15, 0.5) !important;
}
/* This rule was likely too broad, potentially affecting submenus */
/* .header__menu--secondary .menu__item .navlink .navlink .navlink--child {
   color: #353535 !important;
} */
.header__menu--secondary .menu__item .navlink:hover,
.header__menu--secondary .menu__item .navlink:hover .navtext {
  color: #333333; /* Secondary hover color */
}

.desktop-nav-arrow{
  padding-bottom:5px;
}

/* --- Desktop Mega Menu Dropdown --- */
.header__dropdown {
  position: absolute;
  top: 100%; /* Changed from calc(100% - 10px) */
  left: 0;
  right: 0;
  background: white;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  transition:
    opacity 0.15s ease-out 0.25s,
    visibility 0s linear 0.4s;
}

/* Show Dropdown */
.menu__item.grandparent:hover > .header__dropdown,
.menu__item.grandparent:focus-within > .header__dropdown {
  background-color: #F3EEE7; /* Target background */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
  opacity 0.15s ease-out,
   visibility 0s;
  /* REMOVE: margin-top:10px; */
}
.header__dropdown .standard-dropdown.header__grandparent__links {
    width: 55%; /* Adjust width as needed for standard dropdown */
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 65px; /* Adjust gap as needed */
    /* Note: Removed vendor prefixes (-webkit-, -ms-, -moz-) for brevity.
       Add them back if you need older browser support, but standard 'column-gap' and 'flex' are widely supported now. */
}
.header__grandparent__links {
  display: flex;
  flex-direction: column; /* Stacks nav items vertically */
  align-items: flex-start; /* Aligns nav items to the left */
}


/* Ensure the nav links container within the nav+image block displays normally */
.mega-menu__container.nav-image-columns .mega-menu__column--nav-links .header__grandparent__links {
    display: block; /* Override potential flex */
    width: auto;    /* Override potential width */
}

/* Mega Menu Specific Structure */
.header__dropdown.mega-menu {
    background-color: #f9f8f6;
    border-top: 1px solid #f3eee7;
    border-bottom: 1px solid #E5E5E5;
    box-shadow: 0 4px 10px #0000000d;
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 10px !important;
}
.header__dropdown .header__dropdown__wrapper { /* Original wrapper, ensure it doesn't conflict */
   padding: 50px 30px 50px 50px; /* Reset padding if using mega-menu__container for padding */
   /* background-color: transparent; */ /* Reset background if needed */
}

.mega-menu__container.three-columns {
  display: flex;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
  box-sizing: border-box;
}

.mega-menu__column {
  box-sizing: border-box;
}

/* Mega Menu Column 1: Information */
.mega-menu__column--info {
  flex: 0 0 25%; /* Adjust flex-basis */
  padding-right: 40px; /* Keep for spacing if no border on col 2 */
}
.info-block__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  color: #575757;
  margin-bottom: 20px;
}
.info-block__title {
  font-size: 2em;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 25px;
}
.info-block__subtext-list p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 1em;
  color: #333333;
  font-weight:500;
}
.info-block__subtext-list p::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  background-image: url("/cdn/shop/files/check_and_cross_marks_set.png?v=1711459159");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Mega Menu Column 2: Navigation & CTA */
.mega-menu__column--nav {
  flex: 0 0 25%; /* Adjust flex-basis */
  padding-left: 40px;
  padding-right: 40px;
  /* border-left: 1px solid #E5E5E5; */ /* Optional separator */
  /* border-right: 1px solid #E5E5E5; */ /* Optional separator */
}
.nav-column__title {
  font-size: 1em;
  font-weight: 600;
  color: #353535;
  letter-spacing: 0px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif; /* Specify fallback */
}
.nav-column__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0px 0;
  text-align: left; /* Ensures text within nav items is left-aligned */
}
.nav-column__list li {
  margin-bottom: 12px;
}
.nav-column__list li a {
  text-decoration: none;
  color: #353535;
  font-size: 1.06em;
  font-weight: 400;
}
.nav-column__list li a:hover {
  color: /* Your link hover color */;
  text-decoration: underline;
}
.nav-column__button {
  display: inline-block;
  padding: 10px 0px !important; /* Check !important need */
  background-color: transparent;
  color: #353535;
  text-decoration: underline;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.92em !important; /* Check !important need */
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.nav-column__button:hover {
  background-color: transparent;
  color: #353535 !important; /* Check !important need */
  text-decoration: underline;
}

/* Mega Menu Column 3: Featured Products */
.mega-menu__column--products {
  flex: 0 0 45%; /* Adjust flex-basis */
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.products-column__title-wrapper {
  margin-bottom: 0px;
  width: 100%;
}
.products-column__title {
  font-size: 1em;
  font-weight: 500;
  color: #353535;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif; /* Specify fallback */
}
.products-column__items-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
}
.featured-product {
  flex: 1;
  text-align: left;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.featured-product a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.featured-product img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 15px;
}
.featured-product__info {
  background-color: transparent !important;
}
.featured-product__title {
  font-weight: 400;
  font-size: 1.2em;
  color: #1A1A1A;
  font-family: 'Optima', sans-serif; /* Specify fallback */
}
.featured-product__subtext {
  font-size: 0.9em;
  color: #575757;
  margin-bottom: 12px;
  min-height: 2.5em;
  line-height: 1.4;
}
.featured-product__shop-now {
  font-size: 0.92em;
  font-weight: 500;
  color: #353535;
  text-decoration: underline;
  display: inline-block;
  margin-top: 5px;
}
.featured-product__shop-now:hover {
  color: #353535;
}
.placeholder-svg--product {
  border: 1px dashed #ccc;
  background-color: #f9f9f9;
}

/* Mega Menu - Stars */
.stars-rating {
  display: inline-flex;
  line-height: 1;
}
.star-icon {
  line-height: inherit;
}
.star-icon--half {
  position: relative;
  display: inline-block;
}
.star-icon--half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: inherit;
  z-index: 1;
}
.review-text-content {
  line-height: 1.2;
  font-size: 1.1em !important; /* Check !important need */
  font-family: 'Optima', sans-serif; /* Specify fallback */
}

/* ==========================================================================
   5. Mobile Drawer
   ========================================================================== */

/* --- Drawer Head --- */
.drawer__head {
  display: flex;
  justify-content: space-between; /* Space out items */
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #EAEAEA;
  background-color: #FFFFFF;
  position: relative; /* Needed if cart count is absolutely positioned */
}
.drawer--header .drawer__bottom__row {
    margin-bottom: 0px;
  padding-bottom:0px !important;}

/* Close Button (Left) */
.drawer__close {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #1A1A1A;
  line-height: 0;
  /* order: 1; If needed, but default order should be fine now */
  flex-shrink: 0;
}

/* Logo (Center) */
.drawer__logo {
  /* To truly center, the left/right elements should ideally have similar widths */
  /* Or use absolute positioning */
  position: absolute; /* Center absolutely */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 0; /* Prevent extra space */
}
.drawer__logo a {
  display: inline-block;
}
.drawer__logo .mobile-logo {
  max-height: 25px; /* Adjust max height */
  width: auto;
  display: block;
  margin-top:5px;
}
.drawer__logo .header__logo__text {
    font-size: 1.4em;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
}
.drawer__cart-link {
  text-decoration: none;
  color: #1A1A1A;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 20px;
  flex-shrink: 0;
}
.drawer__cart-link:hover {
  color: #555555;
}
.drawer__close {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #1A1A1A;
  flex-shrink: 0;
  line-height: 0;
}
.drawer__close svg {
  width: 30px;
  height: 30px;
  display: block;
}
.drawer--header .drawer__content {
    margin-top: 15px;
}
.drawer--header .product.product-grid h2 {
    font-size: 13px;
}

/* --- Drawer Product Grid --- */
.mobile-product-grid-container {
  padding: 20px 8px 0 8px;
  background-color: #F3EEE7; /* Match target background */
}
.product.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.product-grid-col {
  border-radius: 4px;
  text-align: center;
}
.product-grid-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-grid-image-wrapper {
  margin-bottom: 10px;
  line-height: 0;
}
.product-grid-image {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.product-grid-title {
  font-size: 0.85em;
  color: #1A1A1A;
  font-weight: 500;
  line-height: 1.3;
}

/* --- Drawer Navigation Items --- */
.drawer__main-menu--mobile > .sliderule__wrapper > .sliderow,
.mobile__menu__dropdown .sliderow__links .sliderow { /* Base for all rows */
  display: flex;
    align-items: center;
    padding: 7px 20px;
    border: none;
    width: 100%;
    background: none;
    text-align: left;
    font-size: 1rem;
    color: #353535;
    font-family: Optima, sans-serif;
    margin: 0;
}
.drawer--header .sliderule__wrapper:first-child {
    border-top: none;
}

.mobile__menu__dropdown .sliderow__links .sliderow { /* Sub-items */
   border-bottom: none;
   padding-top: 7px;
   padding-bottom: 7px;
   padding-left: 20px;
}

.sliderow .sliderow__title-text {
   flex-grow: 1;
   font-family: inherit; /* Inherit from .sliderow */
   padding: 0;
   margin: 0;
}
.sliderow__title { /* Used inside link_markup capture for non-expanding links */
    font-weight: 400;
    width: 100%;
    font-family: inherit;
    font-size: 14px !important;
    padding: 0px;
}
button.sliderow { /* Ensure button resets */
    border: none;
    border-bottom: 1px solid #EAEAEA; /* Add border back to button */
    cursor: pointer;
    font-family: inherit;
    padding: 16px 25px; /* Match padding */
}
button.sliderow:hover {
    background-color: #f8f8f8;
}

/* Drawer Arrow */
.sliderow .mobile-nav-arrow {
  margin-left: auto;
  padding-left: 10px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.sliderow .mobile-nav-arrow svg {
  width: 10px;
  height: 5px;
  display: block;
  fill: #333333;
  transition: transform 0.3s ease;
}
/* Optional: Style for the active toggle button arrow */
.sliderow.accordion-toggle.is-active .mobile-nav-arrow svg {
  transform: rotate(180deg);
}
.sliderow.accordion-toggle .mobile-nav-arrow svg {
  transition: transform 0.3s ease;
}
/* Ensure content below is pushed */
.sliderule__wrapper {
  /* This is a block element by default (div), so it will push content.
     Ensure no absolute positioning or floats are interfering unless intended. */
}

/* Drawer Sub-Panel */
.mobile__menu__dropdown.sliderule__panel { /* Or .accordion-panel if you prefer */
  max-height: 0;
  overflow: hidden;
  visibility: hidden; /* Important for preventing content flash/interaction when closed */
  transition: max-height 0.5s ease-in-out, visibility 0s linear 0.5s; /* Adjust timing as needed */
}
.mobile__menu__dropdown.sliderule__panel.is-open {
  visibility: visible;
  transition: max-height 0.5s ease-in-out, visibility 0s linear 0s;
  /* max-height will be set by JavaScript */
}
.grandparent .header__dropdown__inner{
  display: flex;
  justify-content: center;
}

.sliderow--back {
  padding: 16px 25px;
  border: none;
  border-bottom: none;
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    background: transparent;
}
.sliderow__back-button {
   display: flex;
   align-items: center;
   background: none;
   border: none;
   padding: 0;
   cursor: pointer;
   color: inherit; /* Inherit text color */
}
.sliderow--back .sliderow__title--back {
    margin-left: 15px;
    font-weight: 400;
    font-family: inherit;
    font-family: Optima;
  font-size:1em;
}
.sliderow__links {
  flex-grow: 1;
  z-index: 1;
    background: #f3eee7;
}
.sliderule-grid {
   padding: 15px 25px;
}

/* --- Drawer Secondary List --- */
ul.second--menu {
   list-style: none;
    padding: 16px;
    margin: 0;
    background-color: #f3eee7;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 20px;
    width: 70%;
}
@media (max-width: 414px) {
    ul.second--menu li {
        margin-bottom: 5px;
    }
}
ul.second--menu li a {
  text-decoration: none;
  color: #575757;
  font-size: 1.04em;
  line-height: 1.5;
  display: block;
  padding: 4px 0;
}
ul.second--menu li a:hover {
  color: #1A1A1A;
  text-decoration: underline;
}
hr.mobile-nav-separator {
  border: none;
  border-top: 1px solid #EAEAEA;
  margin: 0;
}

/* --- Drawer Bottom Section --- */
.drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.drawer__body {
    flex-grow: 1;
    overflow-y: auto;
     -webkit-overflow-scrolling: touch;
    background-color: #F3EEE7;
}
.drawer__bottom {
  padding: 20px 25px;
  background-color: #F3EEE7;
  margin-top: auto;
  flex-shrink: 0;
}
.drawer--header .drawer__bottom {
  padding: 0px 16px 0px 16px;
  margin-top: -10px;
}
.drawer--header .drawer__bottom:before {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 1px;
    background: #F3EEE7;
}
.drawer__bottom__row {
  margin-bottom: 15px;
}
.drawer__bottom__row:last-child {
  margin-bottom: 0;
}
/* Style the localization/currency if needed */
.drawer__bottom .localization { }
/* Style the Shop All Button */
.drawer__bottom__row--cta .btn--full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 20px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none; /* Ensure button isn't underlined */
}
 .drawer__bottom__row--cta .btn--full:hover {
    background-color: #333333;
 }

/* --- Nav + Image Mega Menu --- */

.mega-menu__container.nav-image-columns {
  display: flex;
  justify-content: space-between; /* This will push the columns to the sides */
  align-items: flex-start; /* Aligns items to the top, adjust as needed */
  width: 100%; /* Ensures the container takes full available width */
  padding-left: 156px;
  padding-right: 20px;
}

.mega-menu__column {
  /* Remove any margin-left or margin-right that might be centering the columns */
  margin-left: 0;
  margin-right: 0;
}

/* --- Nav + Image: Left Column (Navigation) --- */
.mega-menu__column--nav-links {
  /* Width is set by inline style (flex-basis) */
  padding-top: 10px; /* Add some top padding if needed */
  order: 1; /* Ensures this column is first */
}

.mega-menu__column--nav-links .header__grandparent__links {
  /* Container for the links if specific styling is needed */
}

.mega-menu__column--nav-links .dropdown_family {
   margin-bottom: 0.8em; /* Space below each parent link group */
}

.mega-menu__column--nav-links .navlink {
  display: block; /* Make links take full width */
  text-decoration: none;
  color: #333; /* Adjust color */
  padding: 5px 0; /* Adjust vertical spacing */
  font-size: 1em; /* Base font size */
  line-height: 1.4;
}
.mega-menu__column--nav-links .navlink:hover .navtext {
   text-decoration: underline; /* Underline text on hover */
}


/* Style for Child links (e.g., Ingredients, Recipes) */
.mega-menu__column--nav-links .navlink--child .navtext {
  font-weight: 400; /* Make child links slightly bolder */
  font-size:1.06em;
  color:#353535;
}

/* Style for Grandchild links (e.g., Our approach) */
.mega-menu__column--nav-links .navlink--grandchild {
  padding-left: 20px; /* <<< Indent grandchild links */
  font-size: 0.95em; /* Slightly smaller */
  opacity: 0.85; /* Slightly lighter */
}
.mega-menu__column--nav-links .navlink--grandchild .navtext {
   font-weight: 400; /* Regular weight for grandchildren */
}


/* --- Nav + Image: Right Column (Image) --- */
/* 1. Adjust the column that holds the image wrapper */
.mega-menu__column--image {
  /* Width is set by inline style (flex-basis: {{ image_width }}%) */
  display: flex;
  align-items: flex-start; /* Align wrapper to the top */
  justify-content: flex-end; /* IMPORTANT: Pushes the image wrapper to the right of the column.
                                 Use 'flex-start' for left, or 'center' if the wrapper itself
                                 should be centered in a wider image column. */
  order: 2;
}

/* 2. Define the fixed-size wrapper for the image (this is new or replaces styling on 'a') */
.mega-menu__image-fixed-ratio-wrapper {
  display: block; /* Or inline-block if preferred for some reason */
  width: 600px;   /* EXAMPLE: For a 3:4 ratio if height is 400px (Width = Height * 3/4) */
  height: 400px;  /* YOUR DESIRED FIXED HEIGHT */
  overflow: hidden; /* Good practice to clip anything outside these bounds */
  /* Add border, radius etc. if desired for the wrapper */
  /* border: 1px solid #eee; */
  /* border-radius: 5px; */
}

/* 3. Style the image to fill the wrapper and maintain aspect ratio */
.mega-menu__image-fixed-ratio-wrapper img {
  display: block;
  width: 100%; /* Fill the wrapper's width */
  height: 100%; /* Fill the wrapper's height */
  object-fit: cover; /* Crucial: Covers the area, maintains aspect ratio, crops if needed */
  object-position: center; /* Adjust as needed (e.g., top, bottom) */
  /* REMOVE from original .mega-menu__column--image img:
     - aspect-ratio: 1 / 1;
     - height: auto; (if it was there, it's overridden by 100% here)
     - max-width: 100%; (not strictly needed here if wrapper controls size, but harmless)
  */
}

/* Optional: Style for the image text if you want it to align with the new image width */
.mega-menu__image-text {
  width: 300px; /* Match the wrapper width */
  margin-top: 10px; /* Example spacing */
  /* Add other styling as needed */
}

/* Styling for the "Shop All Products" button in the mobile drawer */
.drawer__bottom__row--all-products {
  padding: 10px 15px; /* Adjust padding around the button row as needed */
}

.mobile-drawer__all-products-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px !important;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #212121;
    border: 1px solid #22202F;
    border-radius: 0px;
    box-sizing: border-box;
    transition: background-color .2s ease, color .2s ease;
}

.mobile-drawer__all-products-btn:hover {
  background-color: #3a384a; /* Slightly lighter on hover */
  color: #ffffff;
  text-decoration: none;
}

.featured-content-column__title{
  font-size: 1em;
    font-weight: 600;
    color: #353535;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: Inter, sans-serif;
}

.simple-menu__column--info {
  flex: 0 0 25%; /* Adjust flex-basis */
  padding-right: 40px; /* Keep for spacing if no border on col 2 */
  margin-top: -18px;
}
.mega-menu__column--featured-content{
    flex: 0 0 45%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.featured-content-item{
    flex: 1;
    text-align: left;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.featured-content-column__title-wrapper {
    margin-bottom: 0px;
    width: 100%;
}
.featured-content-column__title {
    font-size: 1em;
    font-weight: 500;
    color: #353535;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: Inter, sans-serif;
}
.featured-content-items-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
}
.featured-content-item__title{
    font-weight: 400;
    margin-bottom: 0px;
    font-size: 1.2em;
    color: #1A1A1A;
    font-family: 'Optima', sans-serif;
}
.featured-content-item__action{    
    font-size: 0.92em;
    font-weight: 500;
    color: #353535;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}
  
.info-block__subtext p {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #353535;
}
.featured-content-item__image-wrapper img{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 15px;
}
  .product-feature-block {
    margin-bottom: 10px; /* Adds space below each block */
  }
  .product-feature-block p {
    margin-top: 0; /* Resets top margin for paragraphs if needed */
    margin-bottom: -2px; /* Adds a small space between lines within a block, adjust as needed */
  }
  .product-feature-block p:last-child {
    margin-bottom: 0; /* No extra margin for the last paragraph in a block */
  }

element.style {
}
.popout-header .popout__toggle {

    text-decoration: underline;
}
.drawer--header .drawer__head {

    padding-bottom: 10px;
}
.drawer--header .drawer__close {

    padding: 3px 0 0;
    margin-bottom: 7px;
}


@media (max-width: 550px) {
    .drawer--header .product-grid-col img {
        height: 200px;
    }
  .drawer--header .product.product-grid h2 {
    text-align: center;
    display: block;
    max-width: 17ch;
}
.drawer--header .drawer__content {
    margin-top: 5px;
}
  ul.second--menu li a {
    padding: 2px 0;
}
  .mobile-product-grid-container {
    padding: 10px 8px 0 8px;
}
  .drawer--header .drawer__bottom__row {
    --min-height: 10px;
    margin-top:20px;
  }
}