/*-------------------
This theme uses Bootstrap v5.1.

It is highly recommended to check out Bootstrap's guiding principles,
strategies, and techniques at https://getbootstrap.com/docs/5.1/extend/approach/
before adding custom styling.

To learn more about Bootstrap v5.1, please check
out https://getbootstrap.com/docs/5.1/getting-started/introduction/.
/*-------------------*/

/*-------------------*/
/* GENERAL */
/*-------------------*/

/*-------------------*/
/* TOP NAV */
/*-------------------*/

/*-------------------*/
/* HEADER */
/*-------------------*/
.header-container.border-bottom {
  border-bottom: unset !important;
}
.header-icons > a svg,
.header-icons button svg,
.header-container nav.navbar > button svg {
  fill: #cc5500;
  stroke: #cc5500;
}
/*-------------------*/
/* CATEGORY NAV */
/*-------------------*/

/*-------------------*/
/* CONTENT */
/*-------------------*/
.microstores-btns {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 30px auto 50px;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}
.microstores-btns button {
  background-color: #FF6319;
  width: calc(50% - 15px);
  font-size: 35px;
  font-weight: bold;
  color: #FFFFFF !important;
  padding: 35px 35px 45px;
  border-radius: 15px;
  border: 2px solid #444;
  line-height: 1.1;
}
.microstores-btns button:hover {
  background-color: #e65a17; /* slightly darker orange */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* adds depth */
  cursor: pointer;
}

/* --- Each button + caption block --- */
.microstore-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 15px);
  text-align: center;
}

/* --- Make buttons full width in their container --- */
.microstore-item button {
  background-color: #FF6319;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  color: #FFF !important;
  padding: 25px 0;     /* increased vertical padding */
  border: none;
  cursor: pointer;
  min-height: 120px;   /* ensures consistent tall height */
}
.microstore-item button:hover {
  background-color: #c7531b;  /* color when hovered */
}
/* --- Subtext under button --- */
.microstore-item .subtext {
  font-size: 23px;
  color: #000;
  margin-top: 13px;
  line-height: 1.3;
  max-width: 90%;
  font-weight: bold;
}

/* --- Keep mobile responsiveness --- */
@media screen and (max-width: 660px) {
  .microstore-item {
    width: 100%;
  }
}
/*-------------------*/
/* PRODUCT THUMBS */
/*-------------------*/
.swatch-color-container {
  position: relative;
  display: flex;
  gap: 4px;
  margin: 15px 0px;
  flex-wrap: wrap;
}
.color-panel {
  width: 31px;
  height: 31px;
  border: 1px solid #dfdfdf;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.color-panel img {
  width: auto;
  height: auto;
  padding: 0px !important;
  max-height: 31px;
  max-width: 31px;
  border: none;
}
.color-swatch {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-size: cover !important;
}
/*-------------------*/
/* PRODUCT */
/*-------------------*/
.product-overview-container {
  margin-top: 40px;
  margin-bottom: 20px;
}
.product-overview {
  max-height: 100px;
  overflow: hidden;
  transition: height 0.3s ease;
}
.toggle-overview {
  display: block;
  color: #C50 !important;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 0;
  text-align: center;
  border: 1px solid #dfdfdf;
  margin-top: 12px;
}
/*-------------------*/
/* CART/CHECKOUT */
/*-------------------*/
.checkout-summary-container {
  margin-top: 68px !important;
}
.checkout-summary-container .border {
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem;
}
.checkout-product-label {
  max-width: 220px;
  display: inline-flex;
  min-width: 220px;
}

/*-------------------*/
/* FOOTER */
/*-------------------*/
.footer-container {
  border-top: unset;
}
.copyright-section {
  border: none;
}
ul.custom-footer-links {
  flex-direction: row !important;
  line-height: 1;
}
.footer-container .mobile-copyright-section {
  background-color: transparent;
  padding-bottom: 2rem !important;
}
.footer-container .dropdown-menu a {
  color: #333;
}
.footer-container .footer-pages > li > a {
  line-height: 1;
  padding: 0 20px 0 0;
}
/*-------------------*/
/* MEDIA QUERIES */
/*-------------------*/
@media screen and (min-width: 661px) {
}

@media screen and (max-width: 991.99px) {
  .checkout-product-label {
    max-width: 150px;
    min-width: 150px;
  }
  ul.custom-footer-links, ul.social-media {
    margin: 0;
    text-align: center;
    justify-content: center;
  }
  .footer-container .mobile-copyright-section p {
    text-align: center !important;
    width: 100%;
  }
}

@media screen and (max-width: 660px) {
  .microstores-btns button {
    width: 100%;
  }
}

@media screen and (max-width: 340px) {
}
