<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* shortcode-styles.css */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.product-header .search-form {
  width: auto;
  margin: 0;
  max-width: 100%;
}

.product-header form label input.search-field {
  padding: 0.5rem 1rem;
  border-radius: 5px !important;
  border: 1px solid #b3b3b3;
}

.custom-products-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px; /* Space between grid items */
}

.custom-product-categories {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2.5rem; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  row-gap: 125px;
  margin-bottom: 4rem;
}

.product {
  display: grid;
  /* flex-direction: column;
  align-items: center; */
  box-sizing: border-box;
}

.product-thumbnail {
  width: 100%;
  height: 350px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #f5f5f5;
}

.product-attributes {
  align-self: flex-end;
}

.product-thumbnail img {
  max-width: 100%;
  height: 280px;
  object-fit: contain;
}

.product-categories {
  text-align: center;
  margin-top: 10px;
}

.product-categories span {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  color: #8f8f8f;
}

.custom-products-wrapper .product .product-title {
  font-family: "Montserrat";
  color: #5e5e5e;
  font-weight: bold;
  font-size: 16px;
  margin: 5px 0;
  text-align: center;
}

.add_to_cart_button {
  background-color: #0071a1;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin: 10px 0;
  display: inline-block;
}

.add_to_cart_button:hover {
  background-color: #005b8a;
}

.custom-attributes {
  text-align: center;
}

.custom-attributes div {
  margin-bottom: 5px;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  color: #8f8f8f;
}

.text-alcohol {
  margin-bottom: 5px;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 600;
  color: #8f8f8f;
}

.product-category {
  position: relative;
}

.product-information {
  position: absolute;
  bottom: -100px;
  height: 175px;
  background-color: #fff;
  right: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.product-information .wrap-title {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.product-information .title {
  border-bottom: 3px solid #f3c037;
  margin: 0;
  display: inline-block;
  font-size: 20px;
}

.product-information .wrap-title svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.star-rating-wrapper {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  color: #ccc; /* Base star color */
}

.star-rating__base span {
  color: #ccc; /* Base star color */
}

.star-rating__fill {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #f5c518; /* Filled star color */
  width: 0;
}

.star-rating__fill span {
  color: #f5c518; /* Filled star color */
}

.wrap-product-detail {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}

/* .wrap-product-detail .left-content {
  width: 100%;
} */

.wrap-product-detail .product-thumbnail {
  width: 442px;
  height: 100%;
  padding: 1.25rem;
}

.wrap-product-detail .product-thumbnail img {
  height: 350px;
}

.wrap-product-detail .right-content {
  width: 100%;
}

.wrap-product-detail .cat-title {
  color: #8f8f8f;
  margin-bottom: 1rem;
}

.wrap-product-detail .product-title {
  margin-bottom: 0.25rem;
}

.wrap-product-detail .short-desc {
  margin-top: 0.75rem;
}

.wrap-product-detail .btn-link {
  padding: 0.75rem;
  margin: 1rem 0;
}

.wrap-product-detail .btn-link i {
  margin-right: 0.5rem;
}

.wrap-product-detail .detail-information h6 {
  font-weight: 400;
}

.wrap-product-detail .detail-information span {
  font-weight: bold;
}

.site
  .product-thumbnail
  a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
  outline: 0;
  background-color: transparent;
}

.site
  .product-thumbnail
  a:focus:not(.wp-block-button__link):not(.wp-block-file__button)
  img {
  outline: 0;
}

/* Utilities */
.text-center {
  text-align: center;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.justify-start {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .custom-product-categories {
    grid-template-columns: repeat(1, 1fr);
  }

  .custom-products-wrapper {
    grid-template-columns: repeat(1, 1fr); /* 3 columns */
  }
  .product-header {
    margin-top: 20px;
    flex-direction: column;
  }
}
</pre></body></html>