/* [project]/src/app/globals.css [app-client] (css) */
button.single_add_to_cart_button {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
  background: #2d3a1e;
  border: none;
  border-radius: 900px;
  padding: 12px 36px;
  font-size: 13px;
  font-weight: 700;
  transition: background .25s;
  display: inline-block;
}

button.single_add_to_cart_button:hover {
  color: #1a2a0e;
  background: #c9a227;
}

*, :before, :after {
  box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

.pt-scroll-info, .scroll-down, [class*="scroll-down"], .mouse-scroll {
  display: none !important;
}

ul.products {
  clear: both;
  margin: 0 -15px 30px;
  padding: 0;
  list-style: none;
}

ul.products:after {
  content: "";
  clear: both;
  display: table;
}

ul.products.columns-4 li.product {
  float: left;
  width: 25%;
  margin: 0 0 30px;
  padding: 0 15px;
  position: relative;
}

.pt-custom-shop {
  padding-top: 30px;
}

.pt-custom-shop .woocommerce-notices-wrapper {
  display: none;
}

.woocommerce-result-count, form.woocommerce-ordering {
  float: none;
  margin: 0;
}

.shop-toolbar {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.woocommerce-result-count {
  color: #555;
  margin: 0;
  font-size: 15px;
  line-height: 1;
}

form.woocommerce-ordering {
  margin: 0;
}

form.woocommerce-ordering select.orderby {
  appearance: auto;
  color: #333;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  width: auto;
  min-width: 200px;
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
}

form.woocommerce-ordering select.orderby:focus {
  border-color: #2d3a1e;
}

form.woocommerce-ordering + ul.products {
  clear: both;
}

ul.products li.product {
  text-align: center;
  position: relative;
}

ul.products li.product a.woocommerce-loop-product__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

ul.products li.product a.woocommerce-loop-product__link img {
  object-fit: cover;
  background: #f5f4f0;
  border-radius: 12px;
  width: 100%;
  height: 250px;
  margin-bottom: 14px;
  transition: transform .3s;
  display: block;
}

ul.products li.product a.woocommerce-loop-product__link:hover img {
  transform: scale(1.03);
}

ul.products li.product h2.woocommerce-loop-product__title {
  color: var(--dark-color, #1a2a0e);
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}

ul.products li.product span.price {
  color: #444;
  margin-bottom: 12px;
  font-size: 16px;
  display: block;
}

ul.products li.product span.price del {
  color: #999;
  margin-right: 6px;
  font-weight: 400;
  text-decoration: line-through;
}

ul.products li.product span.price ins {
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 767px) {
  ul.products.columns-4 li.product {
    width: 50%;
  }
}

@media (max-width: 479px) {
  ul.products.columns-4 li.product {
    float: none;
    width: 100%;
  }
}

.home-products-grid-wrapper {
  width: 100%;
  padding: 0 15px;
}

.home-overlay-products {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 10px;
  display: grid;
}

@media (max-width: 991px) {
  .home-overlay-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .home-overlay-products {
    grid-template-columns: 1fr;
  }
}

.home-product-card {
  color: inherit;
  text-decoration: none;
  display: block;
}

.home-product-img-wrap {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.home-product-card img.home-product-img {
  object-fit: cover;
  width: 100%;
  height: 250px;
  transition: transform .4s;
  display: block;
}

.home-product-card:hover img.home-product-img {
  transform: scale(1.05);
}

.home-product-img-placeholder {
  background: #e8e8e8;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  display: flex;
}

@keyframes homeSlideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-product-animate {
  opacity: 0;
  animation: .6s forwards homeSlideInUp;
}

.home-product-overlay {
  opacity: 0;
  background: #0000008c;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 15px 18px;
  transition: opacity .35s;
  display: flex;
  position: absolute;
  inset: 0;
}

.home-product-card:hover .home-product-overlay {
  opacity: 1;
}

.home-product-name {
  color: var(--dark-color, #163a19);
  text-align: center;
  background: #ffffffd9;
  border-radius: 6px;
  margin: 0;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .35s;
  transform: translateY(8px);
}

.home-product-card:hover .home-product-name {
  transform: translateY(0);
}

a.single_add_to_cart_button {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
  background: #2d3a1e;
  border: none;
  border-radius: 900px;
  padding: 12px 36px;
  font-size: 13px;
  font-weight: 700;
  transition: background .25s, color .25s;
  display: inline-block;
}

a.single_add_to_cart_button:hover {
  color: #1a2a0e;
  background: #c9a227;
}

.woocommerce-breadcrumb {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.woocommerce-breadcrumb a {
  color: var(--primary-color, #5da115);
  text-decoration: none;
}

div.product {
  padding: 30px 0 60px;
  overflow: hidden;
}

div.product .woocommerce-product-gallery {
  float: left;
  width: 48%;
  margin-bottom: 2em;
  position: relative;
}

div.product .woocommerce-product-gallery img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

div.product .summary {
  float: right;
  clear: none;
  width: 48%;
}

div.product .product_title {
  color: var(--dark-color, #031b4e);
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
}

div.product .price {
  color: var(--primary-color, #5da115);
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  display: block;
}

div.product .price del {
  color: #999;
  margin-right: 8px;
  font-size: 18px;
  text-decoration: line-through;
}

div.product .price ins {
  text-decoration: none;
}

div.product .woocommerce-product-details__short-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

div.product .product_meta {
  color: #666;
  border-top: 1px solid #eee;
  margin-top: 16px;
  padding-top: 16px;
  font-size: 14px;
}

div.product .product_meta span {
  margin-bottom: 6px;
  display: block;
}

div.product .product_meta a {
  color: var(--primary-color, #5da115);
  text-decoration: none;
}

div.product .woocommerce-tabs {
  clear: both;
  padding-top: 40px;
}

div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid #ddd;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

div.product .woocommerce-tabs ul.tabs li {
  margin: 0 0 -1px;
}

div.product .woocommerce-tabs ul.tabs li a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--dark-color, #2d3a1e);
  border: 1px solid #ddd;
  border-bottom: none;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
  display: block;
}

div.product .woocommerce-tabs ul.tabs li.active a {
  color: #2d3a1e;
  background: #c9a227;
  border-bottom: 1px solid #c9a227;
}

div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #2d3a1e;
  background: #c9a227;
}

div.product .woocommerce-Tabs-panel {
  color: #555;
  border: 1px solid #ddd;
  border-top: none;
  padding: 24px;
  line-height: 1.7;
}

div.product .woocommerce-Tabs-panel h2 {
  color: var(--dark-color, #031b4e);
  margin-bottom: 12px;
  font-size: 20px;
}

div.product .woocommerce-product-gallery .scroll-down, div.product .woocommerce-product-gallery svg {
  display: none;
}

.comment-form p {
  margin-bottom: 16px;
}

.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea, .comment-form select {
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.comment-form .submit {
  background: var(--dark-color, #031b4e);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 900px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}

.comment-form .submit:hover {
  background: var(--primary-color, #5da115);
}

section.related.products h2 {
  color: var(--dark-color, #031b4e);
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 767px) {
  div.product .woocommerce-product-gallery, div.product .summary {
    float: none;
    width: 100%;
  }
}

.pt-blog.pt-blog-col-3 .pt-blog-post {
  float: none;
  background: var(--white-color, #fff);
  border-radius: var(--pq--border-radius, 15px);
  width: 100%;
  margin-bottom: 30px;
  transition: transform .3s, box-shadow .3s;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 20px #0000000f;
}

.pt-blog.pt-blog-col-3 .pt-blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px #0000001f;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-post-media {
  border-radius: 0;
  margin-bottom: 0;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-post-media img {
  object-fit: cover;
  width: 100%;
  height: 220px;
  display: block;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-blog-contain {
  padding: 20px;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-blog-contain .pt-blog-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-blog-contain .pt-blog-title a {
  color: var(--dark-color, #163a19);
  text-decoration: none;
  transition: color .3s;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-blog-contain .pt-blog-title a:hover {
  color: var(--primary-color, #e9ce48);
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-post-meta ul {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  display: flex;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-post-meta ul li a {
  color: var(--secondary-color, #6e766f);
  font-size: 13px;
  text-decoration: none;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-blog-contain > p {
  color: var(--secondary-color, #6e766f);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-btn-container {
  margin-top: 10px;
}

.pt-blog.pt-blog-col-3 .pt-blog-post .pt-btn-container .pt-button {
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 13px;
  font-weight: 700;
}

.blog-detail-img {
  object-fit: cover;
  border-radius: var(--pq--border-radius, 15px);
  width: 100%;
  max-height: 480px;
  display: block;
}

.blog-detail-quote {
  background: var(--grey-color, #f6f4ef);
  border-left: 4px solid var(--primary-color, #e9ce48);
  border-radius: 0 var(--small-border-radius, 5px) var(--small-border-radius, 5px) 0;
  margin: 25px 0;
  padding: 20px 25px;
  font-style: italic;
  position: relative;
}

.blog-detail-quote p {
  color: var(--dark-color, #163a19);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.blog-detail-content {
  color: var(--secondary-color, #6e766f);
  white-space: pre-wrap;
  font-size: 16px;
  line-height: 1.8;
}

.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4 {
  color: var(--dark-color, #163a19);
  margin: 25px 0 12px;
}

.blog-detail-content p {
  margin-bottom: 16px;
}

.blog-detail-content img {
  border-radius: var(--pq--border-radius, 15px);
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}

.blog-detail-nav {
  border-top: 1px solid rgba(var(--dark-color-rgb, 22, 58, 25), .1);
  margin-top: 40px;
  margin-bottom: 30px;
  padding-top: 20px;
}

.sidebar .widget-title {
  color: var(--dark-color, #163a19);
  border-bottom: 2px solid var(--primary-color, #e9ce48);
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/