@charset "UTF-8";
.product-summary {
  padding: 0 15px;
}
.product-summary .wpcbn-btn {
  background-color: #ce201a;
  width: 100%;
  color: white;
}
.product-summary .product-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}
.product-summary .rating-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.product-summary .rating-wrapper .rating-score {
  font-size: 16px;
  text-decoration: underline;
}
.product-summary .rating-wrapper .rating-stars .star-rating {
  color: rgb(255, 157, 0);
}
.product-summary .rating-wrapper .rating-divider {
  color: #999;
}
.product-summary .rating-wrapper .rating-count {
  text-decoration: underline;
}
.product-summary .rating-wrapper .rating-count,
.product-summary .rating-wrapper .sold-count {
  font-size: 16px;
}
.product-summary .price-wrapper .main-price {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 32px;
}
@media (max-width: 480px) {
  .product-summary .price-wrapper .main-price {
    font-size: 16px;
  }
}
.product-summary .price-wrapper .main-price del {
  margin-top: 8px;
  font-weight: 400 !important;
}
.product-summary .price-wrapper .main-price del .woocommerce-Price-amount {
  color: #afafaf;
  font-size: 16px;
  text-decoration: line-through;
}
.product-summary .price-wrapper .main-price ins {
  text-decoration: none;
}
.product-summary .price-wrapper .main-price ins .woocommerce-Price-amount {
  color: #f34640;
  font-weight: bold;
  font-size: 32px;
}
@media (max-width: 480px) {
  .product-summary .price-wrapper .main-price ins .woocommerce-Price-amount {
    font-size: 24px;
  }
}
.product-summary .price-wrapper .main-price .discount-badge {
  margin-top: 8px;
  font-size: 16px;
  color: #f34640;
}
.product-summary .price-wrapper .main-price .woocommerce-Price-currencySymbol sup {
  font-size: 0.6em;
  margin-left: 2px;
}
.product-summary .price-wrapper .main-price > .woocommerce-Price-amount {
  color: #f34640;
  font-weight: bold;
  font-size: 32px;
}
@media (max-width: 480px) {
  .product-summary .price-wrapper .main-price > .woocommerce-Price-amount {
    font-size: 24px;
  }
}
.product-summary .variations {
  width: 100%;
}
.product-summary .variations .label {
  padding-bottom: 10px;
}
.product-summary .variations .label label {
  margin-bottom: 0;
}
.product-summary .variations .value {
  padding-bottom: 20px;
}
.product-summary .variations .woo-selected-variation-item-name {
  font-weight: bold;
}
.product-summary .variable-items-wrapper {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.product-summary .variable-items-wrapper li {
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 2px;
  border-radius: 4px;
}
.product-summary .variable-items-wrapper li.selected {
  border-color: #ff424e;
}
.product-summary .variable-items-wrapper.color-variable-items-wrapper li {
  width: 40px;
  height: 40px;
}
.product-summary .variable-items-wrapper.button-variable-items-wrapper li {
  padding: 8px 16px;
}
.product-summary .variable-items-wrapper.button-variable-items-wrapper li.selected {
  background-color: #fff3f4;
}

.single_add_to_cart_button {
  border-radius: 5px;
  cursor: pointer;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.wc-buy-now-btn {
  background-color: rgb(206, 32, 26);
  color: #fff;
  border: none;
  width: 100%;
}
.wc-buy-now-btn:hover {
  background-color: rgb(160.7155172414, 24.9655172414, 20.2844827586);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 66, 78, 0.2);
}
.wc-buy-now-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.single_add_to_cart_button:not([class*=wpcbn-btn]) {
  border: 1px solid rgb(206, 32, 26);
  background-color: white;
  color: rgb(206, 32, 26);
}
.single_add_to_cart_button:not([class*=wpcbn-btn]) i {
  font-size: 20px;
}
.single_add_to_cart_button:not([class*=wpcbn-btn]):hover {
  background-color: rgb(206, 32, 26);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 66, 78, 0.2);
}
.single_add_to_cart_button:not([class*=wpcbn-btn]):active {
  transform: translateY(0);
  box-shadow: none;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quantity {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: fit-content;
  background: #fff;
}
.quantity .qty {
  width: 56px;
  height: 100%;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  -moz-appearance: textfield;
}
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity .qty:focus {
  outline: none;
}
.quantity .quantity-button {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 18px;
  transition: all 0.2s ease;
  user-select: none;
}
.quantity .quantity-button:hover {
  color: #f37021;
  background-color: rgba(243, 112, 33, 0.1);
}
.quantity .quantity-button:active {
  background-color: rgba(243, 112, 33, 0.2);
}
.quantity .quantity-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quantity .quantity-button.disabled:hover {
  color: #666;
  background-color: transparent;
}
.quantity .quantity-decrease {
  border-right: 1px solid #ddd;
}
.quantity .quantity-increase {
  border-left: 1px solid #ddd;
}
.quantity:hover {
  border-color: #f37021;
}
.quantity:focus-within {
  border-color: #f37021;
  box-shadow: 0 0 0 2px rgba(243, 112, 33, 0.1);
}

.product-policies {
  margin-top: 30px;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.product-policies .product-policies-title {
  border-radius: 8px 8px 0 0;
}
.product-policies p {
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
}
.product-policies .policies-list {
  list-style: none;
  padding: 12px;
  margin: 0;
}
.product-policies .policies-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.product-policies .policies-list li:last-child {
  margin-bottom: 0;
}
.product-policies .policies-list li i {
  font-size: 20px;
}
.product-policies .policies-list li span {
  font-size: 14px;
  color: #666;
}

/* Responsive for mobile */
@media (max-width: 480px) {
  .woocommerce-variation-add-to-cart {
    grid-template-columns: auto 1fr;
    grid-template-areas: "quantity cart" "buy buy";
  }
  .woocommerce-variation-add-to-cart .main-price > .woocommerce-Price-amount {
    font-size: 16px;
  }
  .woocommerce-variation-add-to-cart .quantity {
    grid-area: quantity;
  }
  .woocommerce-variation-add-to-cart .single_add_to_cart_button:not([class*=wc-buy-now-btn]) {
    grid-area: cart;
  }
  .woocommerce-variation-add-to-cart .wc-buy-now-btn {
    grid-area: buy;
  }
  .product-summary {
    padding: 0;
  }
  .product-summary .product-title {
    font-size: 20px;
  }
}
.addtocart-button-wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
  width: 100%;
}

.variable-items-wrapper li {
  transition: all 0.2s ease-in-out;
}
.variable-items-wrapper li:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.variable-items-wrapper li.selected {
  border-color: rgb(206, 32, 26);
}
.variable-items-wrapper li.selected:hover {
  transform: none;
  box-shadow: none;
}
.variable-items-wrapper.color-variable-items-wrapper li:hover {
  border-color: rgb(206, 32, 26);
}
.variable-items-wrapper.button-variable-items-wrapper li:hover {
  background-color: #fff3f4;
  border-color: rgb(206, 32, 26);
}

.product-policies .policies-list li {
  transition: transform 0.2s ease-in-out;
}
.product-policies .policies-list li:hover {
  transform: translateX(5px);
}
.product-policies .policies-list li:hover i {
  transform: scale(1.1);
}
.product-policies .policies-list li i {
  transition: transform 0.2s ease-in-out;
}

.color-variable-items-wrapper .variable-item {
  border-radius: 50% !important;
  border: 1px solid #ddd;
}
.color-variable-items-wrapper .variable-item .variable-item-span-color {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
}
.color-variable-items-wrapper .variable-item:hover {
  border-color: rgb(206, 32, 26);
}
.color-variable-items-wrapper .variable-item.selected {
  box-shadow: 0 0 0 2px rgb(248.2307692308, 174.3333333333, 129.7692307692) !important;
  border: 2px solid #f37021 !important;
}
.color-variable-items-wrapper .button-variable-items-wrapper .variable-item {
  border-radius: 8px !important;
  border: 1px solid #ddd;
  padding: 8px 24px !important;
  font-size: 16px !important;
}
.color-variable-items-wrapper .button-variable-items-wrapper .variable-item .variable-item-span-button {
  border-radius: 6px;
  color: #666;
}
.color-variable-items-wrapper .button-variable-items-wrapper .variable-item:hover {
  border-color: rgb(206, 32, 26);
  background-color: #fff3f4;
}
.color-variable-items-wrapper .button-variable-items-wrapper .variable-item:hover .variable-item-span-button {
  color: rgb(206, 32, 26);
}
.color-variable-items-wrapper .variable-items-wrapper .variable-item {
  overflow: hidden;
  transition: all 0.3s ease;
}
.color-variable-items-wrapper .variable-items-wrapper .variable-item.selected {
  border: 1px solid #f37021 !important;
  background-color: rgba(255, 215, 166, 0.6549019608) !important;
  box-shadow: 0 !important;
  color: #f37021 !important;
}
.color-variable-items-wrapper .variable-items-wrapper .variable-item:hover:not(.selected) {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(255, 66, 78, 0.15);
}
.color-variable-items-wrapper .variable-items-wrapper .variable-item:active {
  transform: scale(1);
}
.color-variable-items-wrapper .color-variable-items-wrapper .variable-item,
.color-variable-items-wrapper .button-variable-items-wrapper .variable-item {
  width: 32px;
  height: 32px;
  min-width: 32px;
  cursor: pointer;
}
.color-variable-items-wrapper .button-variable-items-wrapper .variable-item {
  width: auto;
  height: auto;
  padding: 8px 16px;
  background-color: #fff;
}
.color-variable-items-wrapper .button-variable-items-wrapper .variable-item.selected {
  border: 1px solid #f37021 !important;
  background-color: rgba(255, 215, 166, 0.6549019608) !important;
  box-shadow: 0 !important;
  color: #f37021 !important;
}

.single-product div.product .woocommerce-product-gallery {
  width: 100%;
  margin-bottom: 16px;
}

.product-specs-title {
  /* Frame 172 */
  padding: 16px;
  gap: 10px;
  /* Thông số kỹ thuật */
  /* H4-24/Bold */
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #141414;
  background: #eeeeee;
  border-radius: 8px 8px 0 0;
}

.technical-specs {
  margin-top: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.technical-specs .specs-table .spec-row {
  display: flex;
}
.technical-specs .specs-table .spec-row:last-child {
  border-bottom: none;
}
.technical-specs .specs-table .spec-row .spec-label {
  width: 200px;
  font-weight: 400;
  color: rgb(117, 117, 117);
}
.technical-specs .specs-table .spec-row .spec-value {
  flex: 1;
  padding: 0 16px;
}
.technical-specs .btn-view-more {
  display: block;
  margin: 16px auto;
}
.technical-specs .btn-view-more:active {
  transform: translateY(0);
}

.technical-specs-full {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 16px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .technical-specs .specs-table .spec-row .spec-label {
    width: 100%;
    border-right: none;
  }
}
/* CSS tùy chỉnh để modal đẹp hơn */
#specsModal .modal-dialog {
  max-width: 628px;
  /* Điều chỉnh độ rộng tối đa */
}

#specsModal .modal-content {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

#specsModal .modal-header {
  border-bottom: 1px solid #eee;
  padding: 15px 20px;
  text-align: center;
}

#specsModal .modal-title {
  font-weight: 600;
  color: #333;
  text-align: center;
  width: 100%;
}

#specsModal .modal-body {
  padding: 20px;
}

.specs-table-full .specs-section {
  margin-bottom: 24px;
}
.specs-table-full .specs-section:last-child {
  margin-bottom: 0;
}
.specs-table-full .specs-section .specs-section-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.specs-table-full .specs-section .spec-row {
  display: flex;
  justify-content: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.specs-table-full .specs-section .spec-row .spec-label {
  color: #666;
  font-size: 14px;
  width: 200px;
}
.specs-table-full .specs-section .spec-row .spec-value {
  color: #333;
  font-size: 14px;
  text-align: left;
  font-weight: 500;
  flex: 1;
}
.specs-table-full .specs-section .spec-row:last-child {
  border-bottom: none;
}

.specs-table .spec-row {
  display: flex;
  padding: 8px 16px;
  border-bottom: 1px solid #f5f5f5;
}
.specs-table .spec-row .spec-label {
  width: 200px;
  color: #666;
  font-size: 14px;
}
.specs-table .spec-row .spec-value {
  flex: 1;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.specs-table .spec-row:last-child {
  border-bottom: none;
}

#specsModal .spec-row {
  border-bottom: 1px dashed #eee;
}

.spec-row {
  display: flex;
  padding: 16px 0;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  flex: 0 0 40%;
  font-weight: 400;
  color: rgb(117, 117, 117);
}

.spec-value {
  flex: 1;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  #specsModal .modal-dialog {
    margin: 10px;
  }
  .spec-label {
    margin-bottom: 5px;
  }
}
.product-description {
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.description-content {
  padding: 16px;
  position: relative;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}
.description-content.collapsed {
  max-height: 500px;
}
.description-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin: 8px 0;
}
.description-content.collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}

.btn-view-more-description {
  display: inline-flex;
  align-items: center;
  padding: 8px 1.5rem;
  margin: 16px auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: #212529;
  background-color: transparent;
  border: 1px solid #212529;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
.btn-view-more-description:hover, .btn-view-more-description:focus {
  background: linear-gradient(71.89deg, #F3801F 2.56%, #F8AD4C 100%);
  color: #fff;
  border-color: #F3801F;
}
.btn-view-more-description .arrow-icon {
  margin-left: 0.5rem;
  transition: transform 0.2s ease-in-out;
}
.btn-view-more-description:hover .arrow-icon {
  transform: translateX(3px);
}
.btn-view-more-description.expanded .expand-text {
  display: none;
}
.btn-view-more-description.expanded .collapse-text {
  display: inline;
}
.btn-view-more-description:not(.expanded) .expand-text {
  display: inline;
}
.btn-view-more-description:not(.expanded) .collapse-text {
  display: none;
}

.toast-add-to-cart {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background-color: #1f9254;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.toast-add-to-cart.show {
  opacity: 1;
  visibility: visible;
}
.toast-add-to-cart .check-icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.toast-add-to-cart .check-icon i {
  font-size: 20px;
}
.toast-add-to-cart .toast-message {
  font-weight: 400;
}

.product-reviews {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 16px;
}
.product-reviews .reviews-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.product-reviews .rating-summary {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 24px;
  padding-bottom: 0;
}
.product-reviews .rating-summary .rating-average .score {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.product-reviews .rating-summary .rating-average .stars {
  color: #ffb800;
  font-size: 24px;
  margin-bottom: 8px;
}
.product-reviews .rating-summary .rating-average .total-reviews {
  color: #666;
  font-size: 14px;
}
.product-reviews .rating-summary .rating-bars {
  flex: 1;
  max-width: 400px;
}
.product-reviews .rating-summary .rating-bars .rating-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.product-reviews .rating-summary .rating-bars .rating-bar-item .star-label {
  width: 24px;
  color: #666;
}
.product-reviews .rating-summary .rating-bars .rating-bar-item .progress {
  flex: 1;
  height: 8px;
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
}
.product-reviews .rating-summary .rating-bars .rating-bar-item .progress .progress-bar {
  height: 100%;
  background-color: #f37021;
  border-radius: 4px;
}
.product-reviews .rating-summary .rating-bars .rating-bar-item .count {
  width: 40px;
  text-align: right;
  color: #666;
}
.product-reviews .review-list {
  padding: 24px;
  padding-top: 0;
}
.product-reviews .review-list .review-item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.product-reviews .review-list .review-item:last-child {
  border-bottom: none;
}
.product-reviews .review-list .review-item .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.product-reviews .review-list .review-item .review-header .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.product-reviews .review-list .review-item .review-header .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-reviews .review-list .review-item .review-header .review-info .reviewer-name {
  font-weight: 500;
  margin-bottom: 4px;
}
.product-reviews .review-list .review-item .review-header .review-info .review-date {
  color: #666;
  font-size: 14px;
}
.product-reviews .review-list .review-item .review-header .review-rating {
  margin-left: auto;
  color: #ffb800;
  font-size: 18px;
}
.product-reviews .review-list .review-item .review-content {
  color: #333;
  line-height: 1.5;
}
.product-reviews .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px;
}
.product-reviews .pagination .page-item {
  margin: 0;
}
.product-reviews .pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
  color: #141414;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  background: transparent;
}
.product-reviews .pagination .page-item .page-link:hover {
  border: none;
  color: #f37021;
  background-color: transparent;
}
.product-reviews .pagination .page-item .page-link.active {
  background-color: transparent;
  border: 1px solid #f37021;
  color: #f37021;
}
.product-reviews .pagination .page-item .page-link i {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-reviews .pagination .page-item .page-link .bi-chevron-left,
.product-reviews .pagination .page-item .page-link .bi-chevron-right {
  transition: transform 0.2s ease;
}
.product-reviews .pagination .page-item .page-link:hover .bi-chevron-left {
  transform: translateX(-2px);
}
.product-reviews .pagination .page-item .page-link:hover .bi-chevron-right {
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .product-reviews .pagination {
    gap: 4px;
    padding: 16px;
  }
  .product-reviews .pagination .page-item .page-link {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

.description-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.description-content h2 {
  font-size: 24px;
}
.description-content p {
  font-size: 16px;
}

.related-products {
  background: white;
  border-radius: 8px;
  margin-top: 32px;
  overflow: hidden;
  position: relative;
}
.related-products .products-slider .swiper-wrapper {
  padding: 8px 4px;
}
.related-products .products-slider .swiper-slide {
  height: auto;
}
.related-products .products-slider .swiper-slide li.product {
  width: 100% !important;
  margin: 0 !important;
}
.related-products .products-slider .swiper-slide li.product .woocommerce-loop-product__link {
  display: block;
}
.related-products .products-slider .swiper-slide li.product img {
  margin: 0;
  width: 100%;
  height: auto;
}
.related-products .products-slider .swiper-slide li.product .onsale {
  z-index: 2;
}
.related-products .products-slider .swiper-button-next,
.related-products .products-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 37%;
  transform: translateY(-50%);
}
.related-products .products-slider .swiper-button-next:after,
.related-products .products-slider .swiper-button-prev:after {
  font-size: 18px;
}
.related-products .products-slider .swiper-button-next:hover,
.related-products .products-slider .swiper-button-prev:hover {
  background: #f37021;
  color: white;
  border-color: #f37021;
}
.related-products .products-slider:hover .swiper-button-next,
.related-products .products-slider:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .related-products .products-slider .swiper-button-next,
  .related-products .products-slider .swiper-button-prev {
    display: none;
  }
}

.woocommerce-product-gallery {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}
.woocommerce-product-gallery .flex-viewport {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 16px;
  background: white;
  aspect-ratio: 1/1;
}
.woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper {
  height: 100%;
}
.woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  height: 100%;
}
.woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image .zoomImg {
  background-color: white;
}
.woocommerce-product-gallery .flex-control-nav {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
  width: 100%;
  margin: 0 auto;
}
.woocommerce-product-gallery .flex-control-nav li {
  flex: 0 0 60px;
  width: 60px !important;
  height: 60px;
  margin: 0 !important;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.woocommerce-product-gallery .flex-control-nav li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.woocommerce-product-gallery .flex-control-nav li.flex-active {
  border-color: #f37021;
}
.woocommerce-product-gallery .flex-control-nav li:hover {
  border-color: rgba(243, 112, 33, 0.5);
}
.woocommerce-product-gallery .gallery-nav-buttons {
  position: relative;
  margin-top: 12px;
  width: 100%;
  height: 28px;
  display: block;
}
.woocommerce-product-gallery .gallery-nav-buttons .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 99;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.woocommerce-product-gallery .gallery-nav-buttons .gallery-nav:hover {
  background: #f37021;
  border-color: #f37021;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.woocommerce-product-gallery .gallery-nav-buttons .gallery-nav.gallery-prev {
  left: -14px;
}
.woocommerce-product-gallery .gallery-nav-buttons .gallery-nav.gallery-next {
  right: -14px;
}
.woocommerce-product-gallery .gallery-nav-buttons .gallery-nav i {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-product-gallery .gallery-nav-buttons .gallery-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
  background: white;
  transform: scale(1.1);
}

.woocommerce-product-gallery .flex-direction-nav {
  display: none;
}

.button-variable-item .selected {
  color: #f37021 !important;
  width: 1000px;
}

.variable-items-wrapper.button-variable-items-wrapper {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item {
  margin: 0;
  padding: 8px 24px !important;
  border: 1px solid #ddd;
  border-radius: 8px !important;
  background: rgb(226, 226, 226);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item .variable-item-contents {
  position: relative;
  z-index: 2;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item .variable-item-span-button {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item:hover {
  border-color: #f37021;
  background-color: rgba(243, 112, 33, 0.04);
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item:hover .variable-item-span-button {
  color: #f37021;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item.selected {
  border: 1px solid #f37021 !important;
  background-color: rgb(253.4615384615, 236.6666666667, 226.5384615385) !important;
  box-shadow: none !important;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item.selected .variable-item-span-button {
  color: black;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item.selected:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(243, 112, 33, 0.2) !important;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item.selected:active {
  transform: translateY(0);
  box-shadow: none !important;
}
.variable-items-wrapper.button-variable-items-wrapper .variable-item:active {
  transform: scale(0.98);
}
.variable-items-wrapper .woocommerce-variation {
  display: none !important;
}

.total-reviews-comment {
  font-size: 20px;
  font-weight: 500;
}

.price {
  display: flex;
  align-items: center;
}

.no-reviews {
  padding: 16px;
  color: rgb(117, 117, 117);
  width: 100%;
  text-align: center;
}

.wp-post-image {
  width: 100%;
  border-radius: 8px;
}

.alert {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: rgba(243, 112, 33, 0.05);
  border: 1px solid rgba(243, 112, 33, 0.1);
}
.alert i {
  font-size: 20px;
  color: #f37021;
  margin-right: 12px;
}
.alert.alert-warning {
  margin: 16px;
}
.alert.alert-info {
  color: #333;
  font-size: 14px;
  margin: 16px;
}
.alert.alert-info a {
  color: #f37021;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.alert.alert-info a:hover {
  color: rgb(213.4615384615, 87.5, 11.5384615385);
  text-decoration: underline;
}
.alert.alert-info a:visited {
  color: #f37021;
}

.mb-4 {
  margin-bottom: 24px;
}

.me-2 {
  margin-right: 8px;
}

/*# sourceMappingURL=single-product.css.map */
