@charset "UTF-8";
.shop-inner__header {
  padding-top: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .shop-inner__header {
    margin-bottom: 0px;
    padding-bottom: 12px;
    padding-top: 24px;
  }
}
.shop-inner__header .woocommerce-products-header {
  margin-bottom: 30px;
}
.shop-inner__header .woocommerce-products-header__title {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin: 0;
  position: relative;
  display: inline-block;
}
.shop-inner__header .woocommerce-products-header__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.shop-inner__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .shop-inner__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.shop-inner__header .woocommerce-result-count {
  margin: 0;
  font-size: 14px;
  color: #888;
  font-weight: 500;
}
.shop-inner__header .woocommerce-ordering {
  margin: 0;
}
.shop-inner__header .woocommerce-ordering select {
  cursor: pointer;
  padding: 8px 35px 8px 15px;
  border: 1px solid #e2e2e2;
  border-radius: 50px;
  background: #fff;
  font-size: 14px;
  color: #444;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.shop-inner__header .woocommerce-ordering select:focus {
  border-color: var(--primary);
}

.shop-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .shop-inner {
    flex-direction: column;
  }
}
.shop-inner .widget-area {
  flex: 0 0 280px;
  position: sticky;
  top: 20px;
}
@media (max-width: 992px) {
  .shop-inner .widget-area {
    flex: 0 0 100%;
    width: 100%;
    position: static;
  }
}
.shop-inner .products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1200px) {
  .shop-inner .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .shop-inner .products {
    grid-template-columns: 1fr;
  }
}
.shop-inner .products::before, .shop-inner .products::after {
  display: none;
}

.widget_product_categories {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.widget_product_categories .widget-title {
  background: var(--primary);
  color: #fff;
  margin: 0;
  padding: 15px 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.widget_product_categories .product-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_product_categories .product-categories li {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.widget_product_categories .product-categories li:last-child {
  border: none;
}
.widget_product_categories .product-categories li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #444;
  transition: all 0.3s;
  font-size: 15px;
  max-width: 240px;
}
.widget_product_categories .product-categories li a:hover {
  background: #f9f9f9;
  color: var(--primary);
  padding-left: 25px;
}
.widget_product_categories .product-categories li.current-cat a {
  background: rgba(var(--primary-rgb, 87, 185, 125), 0.05);
  color: var(--primary);
  font-weight: 700;
}
.widget_product_categories .product-categories li .count {
  position: absolute;
  right: 4px;
  top: 8px;
  font-size: 12px;
  color: #ccc;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 2px;
}

.products .product.type-product {
  background: #fdfdfd;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.products .product.type-product:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.products .product.type-product .woocommerce-LoopProduct-link {
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}
.products .product.type-product img {
  border-radius: 8px;
  width: 380px;
  height: auto;
}
.products .product.type-product .woocommerce-loop-product__title {
  font-size: 17px;
  color: #222;
  margin: 10px 0;
  line-height: 1.3;
  min-height: 2.6em;
  font-weight: 700;
}
.products .product.type-product .price {
  display: block;
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
}
.products .product.type-product .button.add_to_cart_button {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 13px;
}
.products .product.type-product .button.add_to_cart_button:hover {
  background: var(--primary);
  color: #fff;
}
.products .product.type-product .button.add_to_cart_button.loading {
  padding-right: 40px;
}

.single-product__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-block: 60px;
}
@media (max-width: 992px) {
  .single-product__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.single-product__col:first-child {
  flex: 0 0 50%;
  width: 50%;
}
@media (max-width: 992px) {
  .single-product__col:first-child {
    width: 100%;
  }
}
.single-product__col:first-child .woocommerce-product-gallery {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: auto !important;
}
.single-product__col:first-child .woocommerce-product-gallery__wrapper {
  margin: 0;
  padding: 0;
}
.single-product__col:first-child .woocommerce-product-gallery__image {
  border-radius: 12px;
  width: 100%;
}
.single-product__col:first-child .woocommerce-product-gallery img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
}
.single-product__col:first-child .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}
.single-product__col:first-child .flex-control-thumbs li {
  flex: 0 0 80px;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.single-product__col:first-child .flex-control-thumbs li:hover {
  border-color: #eee;
}
.single-product__col:first-child .flex-control-thumbs li.flex-active {
  border-color: var(--primary);
}
.single-product__col:first-child .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.single-product__col:first-child .flex-control-thumbs li img.flex-active {
  opacity: 1;
}
.single-product__col:first-child .flex-control-thumbs li:hover img {
  opacity: 1;
}
.single-product__col:first-child .woocommerce-product-gallery {
  position: relative;
}
.single-product__col:first-child .woocommerce-product-gallery .flex-viewport {
  border-radius: 12px;
  overflow: hidden;
}
.single-product__col:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.woocommerce-product-gallery__trigger {
  display: none;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 4px;
}
.quantity button {
  border-radius: 50px;
}

.price-per-unit {
  font-size: 16px;
  color: #888;
  font-weight: 400;
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
}
.price-per-unit .ppu-value {
  color: #888;
}

@media (max-width: 480px) {
  .price-per-unit {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
}
.summary.entry-summary .product_title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .summary.entry-summary .product_title {
    font-size: 28px;
  }
}
.summary.entry-summary .price {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
.summary.entry-summary .woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}
.summary.entry-summary form.cart {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.summary.entry-summary form.cart .quantity input {
  width: 70px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #e2e2e2;
  text-align: center;
}
.summary.entry-summary form.cart .single_add_to_cart_button {
  background-color: var(--primary);
  height: 50px;
  padding: 0 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}
.summary.entry-summary form.cart .single_add_to_cart_button:hover {
  background-color: rgb(69.5, 166.8, 107.2285714286);
}
.summary.entry-summary .product_meta {
  font-size: 14px;
  color: #999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.summary.entry-summary .product_meta span b, .summary.entry-summary .product_meta span strong {
  color: #222;
}
.summary.entry-summary .product_meta a {
  text-decoration: none;
  color: var(--primary);
}

.single-product__summary {
  padding-top: 60px;
}
.single-product__summary .related.products {
  margin-top: 60px;
}
.single-product__summary .related.products h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}
.single-product__summary .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .single-product__summary .related.products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .single-product__summary .related.products ul.products {
    grid-template-columns: 1fr;
  }
}
.single-product__summary .related.products ul.products::before {
  display: none;
}

.woocommerce-product-details__short-description ul {
  margin: 0;
}

.woocommerce-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 24px;
  background-color: #EDF1FA;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.woocommerce-message .button {
  padding: 12px;
}

.wc-tabs {
  display: flex;
  gap: 30px;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #eee;
}
.wc-tabs li {
  position: relative;
  padding: 0;
  margin: 0;
}
.wc-tabs li a {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
  outline: none;
}
.wc-tabs li a:hover {
  color: var(--primary);
}
.wc-tabs li.active a {
  color: #222;
}
.wc-tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px 2px 0 0;
}

.woocommerce-Tabs-panel {
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}
.woocommerce-Tabs-panel h2 {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .wc-tabs {
    gap: 20px;
  }
  .wc-tabs li a {
    font-size: 16px;
  }
}
.woocommerce-pagination {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.woocommerce-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.woocommerce-pagination .page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #222;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.woocommerce-pagination .page-numbers .page-numbers:hover:not(.current):not(.dots) {
  border-color: var(--primary);
  color: var(--primary);
  background: #f9f9f9;
}
.woocommerce-pagination .page-numbers .page-numbers.current {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  cursor: default;
}
.woocommerce-pagination .page-numbers .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
}
.woocommerce-pagination .page-numbers .page-numbers.next, .woocommerce-pagination .page-numbers .page-numbers.prev {
  font-size: 20px;
  background: #f3f3f3;
  border-color: #f3f3f3;
}
.woocommerce-pagination .page-numbers .page-numbers.next:hover, .woocommerce-pagination .page-numbers .page-numbers.prev:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 480px) {
  .woocommerce-pagination .page-numbers .page-numbers {
    min-width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .widget_product_categories {
    margin-bottom: 20px;
  }
  .widget_product_categories .widget-title {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .widget_product_categories .widget-title::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 5px;
    margin-top: -5px;
  }
  .widget_product_categories .product-categories {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fff;
  }
  .widget_product_categories.is-active .widget-title::after {
    transform: rotate(-135deg);
    margin-top: 5px;
  }
  .widget_product_categories.is-active .product-categories {
    max-height: 1000px;
    transition: max-height 0.4s ease-in-out;
  }
}

.wc-block-components-product-metadata__description {
  display: none;
}

.wc-block-components-product-name {
  font-size: 16px !important;
  text-decoration: none;
  color: var(--text);
}
.wc-block-components-product-name:hover {
  color: var(--primary);
}
.wc-block-components-product-name:visited {
  color: var(--text);
}

.wc-block-cart__submit-button {
  background: var(--primary) !important;
  color: var(--text-w) !important;
  text-decoration: none;
  font-weight: 500;
}
.wc-block-cart__submit-button:hover {
  background-color: black !important;
}

.wc-block-cart-items__header th {
  background-color: transparent !important;
}

.wc-block-components-quantity-selector {
  display: flex;
  align-items: center;
}
.wc-block-components-quantity-selector__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.wc-block-components-quantity-selector__button--minus, .wc-block-components-quantity-selector__button--plus {
  font-size: 1.2rem;
}
.wc-block-components-quantity-selector__button--minus {
  padding-bottom: 2px;
}
.wc-block-components-quantity-selector__input {
  text-align: center;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: start;
  margin-top: 30px;
}
@media (max-width: 1100px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.woocommerce-checkout form.checkout h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ececec;
}
.woocommerce-checkout form.checkout .ols-checkout-left-col .form-row {
  padding: 0;
  margin-bottom: 20px;
}
.woocommerce-checkout form.checkout .ols-checkout-left-col .form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.woocommerce-checkout form.checkout .ols-checkout-left-col .form-row label abbr.required {
  color: #e74c3c;
  text-decoration: none;
}
.woocommerce-checkout form.checkout .ols-checkout-left-col .form-row input.input-text, .woocommerce-checkout form.checkout .ols-checkout-left-col .form-row textarea, .woocommerce-checkout form.checkout .ols-checkout-left-col .form-row select {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  background: #fff;
  transition: all 0.25s ease;
}
.woocommerce-checkout form.checkout .ols-checkout-left-col .form-row input.input-text:focus, .woocommerce-checkout form.checkout .ols-checkout-left-col .form-row textarea:focus, .woocommerce-checkout form.checkout .ols-checkout-left-col .form-row select:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
  outline: none;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.woocommerce-checkout form.checkout .ols-checkout-right-col #order_review_heading {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  color: #111;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 16px;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tr, .woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table th, .woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table td {
  background-color: transparent !important;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table thead {
  display: none;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table th, .woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table td {
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name {
  color: #333;
  line-height: 1.4;
  padding-right: 15px;
  width: 70%;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product-quantity {
  color: #27ae60;
  font-weight: 700;
  margin-left: 5px;
  white-space: nowrap;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tbody tr.cart_item td.product-total {
  text-align: right;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot th {
  text-align: left;
  font-weight: 500;
  color: #666;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
  display: none !important;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th, .woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
  padding-top: 24px;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot tr.order-total th, .woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  border-bottom: none;
  padding-top: 16px;
  padding-bottom: 0;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot tr.order-total th {
  font-size: 18px;
  color: #111;
  font-weight: 700;
  width: 40%;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-review-order-table tfoot tr.order-total td strong {
  font-size: 22px;
  color: #27ae60;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment {
  background: transparent !important;
  padding: 0 !important;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  padding-top: 24px;
  padding-bottom: 24px;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment ul.payment_methods li {
  margin-bottom: 16px;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment ul.payment_methods li:last-child {
  margin-bottom: 0;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment ul.payment_methods li input[type=radio] {
  display: none;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment ul.payment_methods li input[type=radio]:checked + label::before {
  border-color: #27ae60;
  background-color: #27ae60;
  box-shadow: inset 0 0 0 4px #fff;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment ul.payment_methods li label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment ul.payment_methods li label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment .woocommerce-privacy-policy-text {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 24px;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment .woocommerce-privacy-policy-text a {
  color: #111;
  text-decoration: underline;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment .woocommerce-privacy-policy-text a:hover {
  text-decoration: none;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment #place_order {
  width: 100%;
  background-color: #27ae60;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  text-align: center;
  display: block;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment #place_order:hover {
  background-color: #219150;
}
.woocommerce-checkout form.checkout .ols-checkout-right-col .woocommerce-checkout-payment #place_order:active {
  transform: scale(0.98);
}

/* ============================================================
   Страница "Заказ получен" (Thank You Page)
============================================================ */
.woocommerce-order-received .entry-title {
  display: none !important;
}

.woocommerce-order {
  max-width: 850px;
  margin: 0 auto;
}
.woocommerce-order .woocommerce-notice--success {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 20px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: 1px solid rgba(39, 174, 96, 0.2);
  margin-bottom: 40px;
}
.woocommerce-order .woocommerce-notice--success::before {
  content: "✓";
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  font-size: 18px;
}
.woocommerce-order ul.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0 0 40px 0;
  list-style: none;
}
.woocommerce-order ul.woocommerce-order-overview::before, .woocommerce-order ul.woocommerce-order-overview::after {
  display: none;
}
.woocommerce-order ul.woocommerce-order-overview li {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  border: none;
  margin: 0;
}
.woocommerce-order ul.woocommerce-order-overview li strong {
  display: block;
  font-size: 18px;
  color: #111;
  margin-top: 8px;
  text-transform: none;
}
.woocommerce-order ul.woocommerce-order-overview li strong .amount {
  color: #27ae60;
}
.woocommerce-order h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f1f1;
}
.woocommerce-order .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.woocommerce-order .woocommerce-table--order-details tr, .woocommerce-order .woocommerce-table--order-details th, .woocommerce-order .woocommerce-table--order-details td {
  background: transparent !important;
}
.woocommerce-order .woocommerce-table--order-details thead th {
  text-align: left;
  color: #888;
  font-weight: 500;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #eaeaea;
  padding: 12px;
}
.woocommerce-order .woocommerce-table--order-details tbody td {
  padding: 12px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
}
.woocommerce-order .woocommerce-table--order-details tbody td.product-name a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
  line-height: 1.4;
}
.woocommerce-order .woocommerce-table--order-details tbody td.product-name a:hover {
  color: #27ae60;
}
.woocommerce-order .woocommerce-table--order-details tbody td.product-name .product-quantity {
  color: #27ae60;
  font-weight: 700;
  margin-left: 6px;
  white-space: nowrap;
}
.woocommerce-order .woocommerce-table--order-details tbody td.product-total {
  text-align: right;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.woocommerce-order .woocommerce-table--order-details tfoot th, .woocommerce-order .woocommerce-table--order-details tfoot td {
  padding: 16px 0;
  border-bottom: 1px solid #f1f1f1;
}
.woocommerce-order .woocommerce-table--order-details tfoot th {
  text-align: left;
  font-weight: 500;
  color: #666;
  padding: 12px;
}
.woocommerce-order .woocommerce-table--order-details tfoot td {
  text-align: right;
  font-weight: 600;
  color: #111;
  padding: 12px;
}
.woocommerce-order .woocommerce-table--order-details tfoot tr:first-child th, .woocommerce-order .woocommerce-table--order-details tfoot tr:first-child td {
  padding-top: 24px;
}
.woocommerce-order .woocommerce-table--order-details tfoot tr:last-child th, .woocommerce-order .woocommerce-table--order-details tfoot tr:last-child td {
  border-bottom: none;
}
.woocommerce-order .woocommerce-customer-details {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f1f1;
}
.woocommerce-order .woocommerce-customer-details h2 {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}
.woocommerce-order .woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.6;
  color: #333;
  border: none;
  padding: 0;
  font-size: 15px;
}
.woocommerce-order .woocommerce-customer-details address p {
  margin: 12px 0 0 0;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--phone, .woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--email {
  font-weight: 500;
  color: #111;
}

.woocommerce-customer-details .woocommerce-column__title {
  font-size: 0;
}
.woocommerce-customer-details .woocommerce-column__title::before {
  content: "Ваші контактні дані";
  font-size: 24px;
  display: block;
  font-weight: 700;
}

.thankyou-footer-contacts {
  margin: 60px auto 40px;
  max-width: 600px;
  text-align: center;
  font-family: inherit;
  color: #333;
}
.thankyou-footer-contacts .thanky-text {
  margin-bottom: 20px;
  font-size: 18px;
}
.thankyou-footer-contacts .thanky-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thankyou-footer-contacts .thanky-label {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}
.thankyou-footer-contacts .thanky-phones ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.thankyou-footer-contacts .thanky-phones ul li {
  margin: 0;
}
.thankyou-footer-contacts .thanky-phones ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}
.thankyou-footer-contacts .thanky-phones ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.thankyou-footer-contacts .thanky-email {
  font-size: 18px;
  font-weight: 500;
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.thankyou-footer-contacts .thanky-email:hover {
  text-decoration: none;
}
.thankyou-footer-contacts__thanks {
  margin-top: 40px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}/*# sourceMappingURL=woocommerce.css.map */




/* Карточка товара */
.wc-block-grid__product {
    background-color: #fff;
    padding: 15px;
    
    display: flex;
    flex-direction: column; 
    text-align: center; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-block-grid__product:hover {
    transform: translateY(-3px); 
   
}

.wc-block-grid__product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.wc-block-grid__product-image {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 5px;
    width: 100%; 
}

.wc-block-grid__product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.wc-block-grid__product:hover .wc-block-grid__product-image img {
    transform: scale(1.05); 
}


.wc-block-grid__product-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 10px 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.wc-block-grid__product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50; 
    margin-bottom: 15px;
    margin-top: auto; 
}


.wp-block-button.wc-block-grid__product-add-to-cart {
    width: 100%;
    margin-top: 10px;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
    background-color: #080808;
}
