/*
Theme Name: splash-paradise

WooCommerce styles override
*/
/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1180px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 1.25rem;
  /* 3 */
  padding-right: 1.25rem;
  /* 3 */
  width: 100%;
  /* 1 */
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.single-product-wrapper {
  padding: 0 24px;
}

.woocommerce {
  margin: auto;
}

.woocommerce-order {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/**
 * Shop tables
 */
table.shop_table_responsive thead {
  display: none;
}
table.shop_table_responsive tbody th {
  display: none;
}
table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}
table.shop_table_responsive tr td::before {
  content: attr(data-title) ": ";
  float: left;
}
table.shop_table_responsive tr td.product-remove a {
  text-align: left;
}
table.shop_table_responsive tr td.product-remove::before {
  display: none;
}
table.shop_table_responsive tr td.actions::before, table.shop_table_responsive tr td.download-actions::before {
  display: none;
}
table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr th,
  table.shop_table_responsive tr td {
    text-align: left;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td::before {
    display: none;
  }
}
/**
 * Products
 */
ul.products {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(290px, 1fr));
  justify-items: center;
  align-items: start;
  gap: 1rem;
}
ul.products li.product {
  list-style: none;
  position: relative;
  margin-bottom: 2em;
}
ul.products li.product img {
  display: block;
  height: 291px;
  width: 100%;
  object-fit: contain;
}
@media (min-width: 1024px) {
  ul.products li.product img {
    height: 465px;
  }
}
ul.products li.product .button {
  display: block;
}

.related {
  display: flex;
  flex-direction: column;
}

.product-top-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .product-top-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.product-top-wrapper .price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #233a54;
  margin-bottom: 1rem;
}
.product-top-wrapper .price del {
  color: #95a5a6;
  font-weight: 400;
  margin-right: 0.5rem;
}

.related.products,
.related-products-section {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
}
.related.products h2,
.related-products-section h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  position: relative;
}
.related.products h2::after,
.related-products-section h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.woocommerce ul.products,
.related-products-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce ul.products li.product,
.woocommerce ul.products .related-product-item,
.related-products-grid li.product,
.related-products-grid .related-product-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  max-width: 352px;
  height: max-content;
}
.woocommerce ul.products li.product:hover,
.woocommerce ul.products .related-product-item:hover,
.related-products-grid li.product:hover,
.related-products-grid .related-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products .related-product-item .woocommerce-loop-product__link,
.related-products-grid li.product .woocommerce-loop-product__link,
.related-products-grid .related-product-item .woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link img,
.woocommerce ul.products .related-product-item .woocommerce-loop-product__link img,
.related-products-grid li.product .woocommerce-loop-product__link img,
.related-products-grid .related-product-item .woocommerce-loop-product__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  aspect-ratio: 1/1;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link:hover img,
.woocommerce ul.products .related-product-item .woocommerce-loop-product__link:hover img,
.related-products-grid li.product .woocommerce-loop-product__link:hover img,
.related-products-grid .related-product-item .woocommerce-loop-product__link:hover img {
  transform: scale(1.05);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products .related-product-item .woocommerce-loop-product__title,
.related-products-grid li.product .woocommerce-loop-product__title,
.related-products-grid .related-product-item .woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #233a54;
  margin: 1rem;
  line-height: 1.4;
  text-decoration: none;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover,
.woocommerce ul.products .related-product-item .woocommerce-loop-product__title:hover,
.related-products-grid li.product .woocommerce-loop-product__title:hover,
.related-products-grid .related-product-item .woocommerce-loop-product__title:hover {
  color: #2c4a6d;
}
.woocommerce ul.products li.product .price,
.woocommerce ul.products .related-product-item .price,
.related-products-grid li.product .price,
.related-products-grid .related-product-item .price {
  margin: 0 1rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #233a54;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  gap: 0.5rem;
}
.woocommerce ul.products li.product .price del,
.woocommerce ul.products .related-product-item .price del,
.related-products-grid li.product .price del,
.related-products-grid .related-product-item .price del {
  color: #95a5a6;
  font-weight: 400;
  margin-right: 0.5rem;
}
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products .related-product-item .add_to_cart_button,
.woocommerce ul.products .related-product-item .button,
.related-products-grid li.product .add_to_cart_button,
.related-products-grid li.product .button,
.related-products-grid .related-product-item .add_to_cart_button,
.related-products-grid .related-product-item .button {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products .related-product-item .add_to_cart_button:hover,
.woocommerce ul.products .related-product-item .button:hover,
.related-products-grid li.product .add_to_cart_button:hover,
.related-products-grid li.product .button:hover,
.related-products-grid .related-product-item .add_to_cart_button:hover,
.related-products-grid .related-product-item .button:hover {
  background: linear-gradient(135deg, #2980b9, #1f4e79);
  transform: translateY(-1px);
}
.woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products .related-product-item .added_to_cart,
.related-products-grid li.product .added_to_cart,
.related-products-grid .related-product-item .added_to_cart {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #2ecc71;
  color: white;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.woocommerce ul.products li.product .added_to_cart:hover,
.woocommerce ul.products .related-product-item .added_to_cart:hover,
.related-products-grid li.product .added_to_cart:hover,
.related-products-grid .related-product-item .added_to_cart:hover {
  background: #27ae60;
  transform: translateY(-1px);
}

span.onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.5rem 12px;
  background-color: rgba(41, 127, 185, 0.7137254902);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  z-index: 999;
  backdrop-filter: blur(2px) saturate(0.5);
}

@media (max-width: 768px) {
  .woocommerce ul.products,
  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .related.products h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .woocommerce ul.products,
  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .related.products {
    margin: 2rem 0;
    padding: 1rem 0;
  }
}
/**
 * Single product
 */
.single-product div.product {
  position: relative;
}
.single-product div.product .woocommerce-product-gallery {
  position: relative;
  float: left;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 2em;
  right: 1em;
  display: block;
  z-index: 99;
}
.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 1em;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  margin: 0;
  padding: 0;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
  list-style: none;
  cursor: pointer;
  float: left;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
  opacity: 0.5;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
  width: calc(50% - 1.9%);
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
  width: calc(33.33% - 2.5333333333%);
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
  width: calc(25% - 2.85%);
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
  width: calc(20% - 3.04%);
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: both;
}

.stock:empty::before {
  display: none;
}
.stock.in-stock {
  color: #0f834d;
}
.stock.out-of-stock {
  color: #e2401c;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  /* Thumbnail slider styles */
}
.slider-wrap .main-slider {
  max-height: 740px;
}
.slider-wrap .main-slider .swiper-wrapper {
  margin-bottom: 20px;
}
.slider-wrap .main-slider .swiper-slide {
  height: max-content;
  width: 100%;
  max-height: 740px;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
}
.slider-wrap .main-slider .swiper-slide a {
  max-height: 740px;
  height: 100%;
  object-fit: contain;
  display: block;
  text-align: center;
}
.slider-wrap .main-slider .swiper-slide img {
  max-height: 740px;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: middle;
}
.slider-wrap .main-slider .swiper-slide .featured_image img {
  object-fit: contain;
}
.slider-wrap .image-counter {
  padding: 0 24px;
  font: 400 15px/24px Montserrat, sans-serif;
  color: gray;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .slider-wrap .image-counter {
    display: none;
  }
}
.slider-wrap .progress-bar {
  height: 4px !important;
}
@media (min-width: 768px) {
  .slider-wrap .progress-bar {
    display: none;
  }
}
.slider-wrap .thumbs-slider {
  display: none;
  position: relative;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .slider-wrap .thumbs-slider {
    display: block;
  }
}
.slider-wrap .thumbs-slider .swiper-wrapper {
  gap: 20px;
  padding: 0.5rem;
}
.slider-wrap .thumbs-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0;
  width: auto !important;
  flex-shrink: 0;
}
.slider-wrap .thumbs-slider .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  margin: 0;
  aspect-ratio: 1/1;
  max-width: 90px;
}
.slider-wrap .thumbs-slider .swiper-slide:first-child img {
  object-fit: contain;
}
.slider-wrap .thumbs-slider .swiper-slide:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.slider-wrap .thumbs-slider .swiper-slide-thumb-active {
  opacity: 1 !important;
  border: 2px solid #e69b42;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.slider-wrap .thumbs-slider .swiper-slide-thumb-active:hover {
  transform: scale(1.05);
}
.slider-wrap .thumbs-slider .swiper-scrollbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
.slider-wrap .thumbs-slider .swiper-scrollbar-drag {
  background-color: #e8a345;
  border-radius: 2px;
  cursor: grab;
  transition: background-color 0.3s ease;
}
.slider-wrap .thumbs-slider .swiper-scrollbar-drag:active {
  cursor: grabbing;
  background-color: #d5953b;
}
.slider-wrap .thumbs-slider .swiper-slide:focus-within {
  outline: 2px solid #e8a345;
  outline-offset: 2px;
}
.slider-wrap .thumbs-slider .swiper-scrollbar {
  bottom: -10px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
}
.slider-wrap .thumbs-slider .swiper-scrollbar-drag {
  background-color: #e8a345;
}
.slider-wrap .swiper-pagination-progressbar {
  bottom: 0;
  top: unset !important;
  border-radius: 4px;
  overflow: hidden;
}
.slider-wrap .swiper-pagination-progressbar-fill {
  background-color: #e8a345 !important;
}

form.cart.simple {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
form.cart.simple .quantity input[type=number] {
  width: 150px;
  height: 60px;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 40px;
}

form.variations_form.cart {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form.variations_form.cart .single_variation_wrap .woocommerce-variation.single_variation {
  margin-bottom: 1rem;
}
form.variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  form.variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
    flex-wrap: nowrap;
  }
}
form.variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity-wrapper .quantity {
  display: flex;
}
form.variations_form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity-wrapper .quantity input[type=number] {
  width: 150px;
  height: 60px;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 40px;
}
form.variations_form.cart table.variations .label {
  text-align: left;
}
form.variations_form.cart table.variations #time {
  height: 60px;
  text-align: center;
  border-radius: 40px;
  margin-right: 1rem;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    margin-right: 3.8%;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
  }
  .col2-set .form-row-first,
  .col2-set .form-row-last {
    width: calc(50% - 1.9%);
  }
}
/**
 * General WooCommerce components
 */
/**
 * Header cart
 */
.site-header-cart {
  position: relative;
  margin: 0;
  padding: 0;
}
.site-header-cart .cart-contents {
  text-decoration: none;
}
.site-header-cart .widget_shopping_cart {
  display: none;
}
.site-header-cart .product_list_widget {
  margin: 0;
  padding: 0;
}

/**
 * Star rating
 */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
}
.star-rating::before {
  content: "SSSSS";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: #4169e1;
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}
p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "S";
  color: #404040;
  text-indent: 0;
  opacity: 0.25;
}
p.stars a:hover ~ a::before {
  content: "S";
  color: #404040;
  opacity: 0.25;
}
p.stars:hover a::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}
p.stars.selected a.active::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}
p.stars.selected a.active ~ a::before {
  content: "S";
  color: #404040;
  opacity: 0.25;
}
p.stars.selected a:not(.active)::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  display: block;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}
.woocommerce-password-strength.strong {
  color: #0f834d;
}
.woocommerce-password-strength.short {
  color: #e2401c;
}
.woocommerce-password-strength.bad {
  color: #e2401c;
}
.woocommerce-password-strength.good {
  color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 #0f834d;
}
.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 #e2401c;
}

.required {
  color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  background-color: #0f834d;
  clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #3d9cd2;
}

.woocommerce-error {
  background-color: #e2401c;
}

.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #3d9cd2;
  z-index: 9999;
}

@media screen and (min-width: 48em) {
  /**
   * Header cart
   */
  .site-header-cart .widget_shopping_cart {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999999;
    left: -999em;
    display: block;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }
  .site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart {
    left: 0;
    display: block;
  }
}
/**
 * WooCommerce widgets
 */
/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
  margin-bottom: 1.5em;
}
.widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
}
.widget_price_filter .price_slider_amount .button {
  float: left;
}
.widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  cursor: ew-resize;
  outline: none;
  background: #4169e1;
  box-sizing: border-box;
  margin-top: -0.25em;
  opacity: 1;
}
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em;
}
.widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background: #4169e1;
}
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  height: 100%;
}

/**
 * WooCommerce My Account
 */
.woocommerce-account .u-columns {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .woocommerce-account .u-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.woocommerce-account .u-columns .u-column1,
.woocommerce-account .u-columns .u-column2 {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}
@media (max-width: 768px) {
  .woocommerce-account .u-columns .u-column1,
  .woocommerce-account .u-columns .u-column2 {
    padding: 1.5rem;
  }
}
.woocommerce-account .u-columns .u-column1 h2,
.woocommerce-account .u-columns .u-column2 h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
  font-weight: 600;
  font-size: 1.5rem;
}

.woocommerce-form-login .woocommerce-form-row {
  margin-bottom: 1.5rem;
}
.woocommerce-form-login .woocommerce-form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
  font-size: 0.95rem;
}
.woocommerce-form-login .woocommerce-form-row .required {
  color: #dc3545;
}
.woocommerce-form-login .woocommerce-form-row .woocommerce-Input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}
.woocommerce-form-login .woocommerce-form-row .woocommerce-Input:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
  background: #fff;
}
.woocommerce-form-login .woocommerce-form-row .woocommerce-Input::placeholder {
  color: #6c757d;
}
.woocommerce-form-login .woocommerce-form-row--wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .woocommerce-form-login .woocommerce-form-row--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.woocommerce-form-login .woocommerce-form-row--wide .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #495057;
  font-size: 0.9rem;
  cursor: pointer;
}
.woocommerce-form-login .woocommerce-form-row--wide .woocommerce-form__label-for-checkbox .woocommerce-form__input {
  margin: 0;
  accent-color: #007cba;
}
.woocommerce-form-login .woocommerce-form-row--wide .lost_password {
  color: #007cba;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.woocommerce-form-login .woocommerce-form-row--wide .lost_password:hover {
  color: #005a87;
  text-decoration: underline;
}
.woocommerce-form-login .woocommerce-Button {
  width: 100%;
  background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-form-login .woocommerce-Button:hover {
  background: linear-gradient(135deg, #005a87 0%, #004066 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}
.woocommerce-form-login .woocommerce-Button:active {
  transform: translateY(0);
}

.woocommerce-form-register .woocommerce-form-row {
  margin-bottom: 1.5rem;
}
.woocommerce-form-register .woocommerce-form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
  font-size: 0.95rem;
}
.woocommerce-form-register .woocommerce-form-row .required {
  color: #dc3545;
}
.woocommerce-form-register .woocommerce-form-row .woocommerce-Input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}
.woocommerce-form-register .woocommerce-form-row .woocommerce-Input:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
  background: #fff;
}
.woocommerce-form-register .woocommerce-form-row .woocommerce-Input::placeholder {
  color: #6c757d;
}
.woocommerce-form-register .woocommerce-privacy-policy-text {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}
.woocommerce-form-register .woocommerce-privacy-policy-text p {
  margin: 0;
}
.woocommerce-form-register .woocommerce-privacy-policy-text a {
  color: #007cba;
  text-decoration: none;
}
.woocommerce-form-register .woocommerce-privacy-policy-text a:hover {
  text-decoration: underline;
}
.woocommerce-form-register .woocommerce-Button {
  width: 100%;
  background: linear-gradient(135deg, #28a745 0%, #20a03a 100%);
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-form-register .woocommerce-Button:hover {
  background: linear-gradient(135deg, #20a03a 0%, #1e7e34 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.woocommerce-form-register .woocommerce-Button:active {
  transform: translateY(0);
}

.woocommerce-account .entry-header {
  text-align: center;
  margin-bottom: 2rem;
}
.woocommerce-account .entry-header .entry-title {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.woocommerce-account .entry-header .entry-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
}

.woocommerce-social-login {
  margin: 1.5rem 0;
}
.woocommerce-social-login .social-login-separator {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}
.woocommerce-social-login .social-login-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e9ecef;
}
.woocommerce-social-login .social-login-separator span {
  background: white;
  padding: 0 1rem;
  color: #6c757d;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.woocommerce-social-login .social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.woocommerce-social-login .social-login-buttons .social-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  background: white;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.woocommerce-social-login .social-login-buttons .social-login-button:hover {
  border-color: #007cba;
  color: #007cba;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.woocommerce-social-login .social-login-buttons .social-login-button .social-icon {
  width: 20px;
  height: 20px;
}
.woocommerce-social-login .social-login-buttons .social-login-button.google:hover {
  border-color: #db4437;
  color: #db4437;
}
.woocommerce-social-login .social-login-buttons .social-login-button.facebook:hover {
  border-color: #4267B2;
  color: #4267B2;
}

.woocommerce-password-strength {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.woocommerce-password-strength.short {
  background: #f8d7da;
  color: #721c24;
}
.woocommerce-password-strength.bad {
  background: #fff3cd;
  color: #856404;
}
.woocommerce-password-strength.good {
  background: #d1ecf1;
  color: #0c5460;
}
.woocommerce-password-strength.strong {
  background: #d4edda;
  color: #155724;
}

.woocommerce-MyAccount-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-content {
    flex-direction: column;
    gap: 1rem;
  }
}

td.woocommerce-table__product-total.product-total {
  text-align: center;
}

.woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    flex: none;
  }
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid #e9ecef;
}
.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: #007cba;
  color: white;
  font-weight: 600;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 1rem 1.25rem;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background: #e9ecef;
  color: #007cba;
  transform: translateX(4px);
}

.woocommerce-MyAccount-main {
  flex: 1;
}
.woocommerce-MyAccount-main .woocommerce-MyAccount-content-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-main .woocommerce-MyAccount-content-wrapper {
    padding: 1rem;
  }
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
  font-weight: 600;
}

.woocommerce-MyAccount-content .woocommerce-form .form-row {
  margin-bottom: 1.5rem;
}
.woocommerce-MyAccount-content .woocommerce-form .form-row.form-row-first, .woocommerce-MyAccount-content .woocommerce-form .form-row.form-row-last {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-content .woocommerce-form .form-row.form-row-first, .woocommerce-MyAccount-content .woocommerce-form .form-row.form-row-last {
    width: 100%;
    display: block;
  }
}
.woocommerce-MyAccount-content .woocommerce-form .form-row.form-row-first {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .woocommerce-MyAccount-content .woocommerce-form .form-row.form-row-first {
    margin-right: 0;
  }
}
.woocommerce-MyAccount-content .woocommerce-form .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}
.woocommerce-MyAccount-content .woocommerce-form .form-row .required {
  color: #dc3545;
}
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=text],
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=email],
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=password],
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=tel],
.woocommerce-MyAccount-content .woocommerce-form .form-row select,
.woocommerce-MyAccount-content .woocommerce-form .form-row textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=text]:focus,
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=email]:focus,
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=password]:focus,
.woocommerce-MyAccount-content .woocommerce-form .form-row input[type=tel]:focus,
.woocommerce-MyAccount-content .woocommerce-form .form-row select:focus,
.woocommerce-MyAccount-content .woocommerce-form .form-row textarea:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}
.woocommerce-MyAccount-content .woocommerce-form .form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.woocommerce-MyAccount-content .woocommerce-form .form-submit {
  margin-top: 2rem;
}
.woocommerce-MyAccount-content .woocommerce-form .form-submit .button {
  background: #007cba;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.woocommerce-MyAccount-content .woocommerce-form .form-submit .button:hover {
  background: #005a87;
}

.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.woocommerce-orders-table thead {
  background: #f8f9fa;
}
.woocommerce-orders-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #e9ecef;
}
.woocommerce-orders-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background 0.3s ease;
}
.woocommerce-orders-table tbody tr:hover {
  background: #f8f9fa;
}
.woocommerce-orders-table tbody tr:last-child {
  border-bottom: none;
}
.woocommerce-orders-table tbody tr td {
  padding: 1rem;
  vertical-align: middle;
}
.woocommerce-orders-table tbody tr td .button {
  background: #28a745;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.3s ease;
}
.woocommerce-orders-table tbody tr td .button:hover {
  background: #218838;
}
.woocommerce-orders-table tbody tr td .button.cancel {
  background: #dc3545;
}
.woocommerce-orders-table tbody tr td .button.cancel:hover {
  background: #c82333;
}
@media (max-width: 768px) {
  .woocommerce-orders-table thead {
    display: none;
  }
  .woocommerce-orders-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
  }
  .woocommerce-orders-table tbody tr td {
    display: block;
    padding: 0.5rem 0;
    border: none;
  }
  .woocommerce-orders-table tbody tr td:before {
    content: attr(data-title) ": ";
    font-weight: 600;
    color: #495057;
  }
}

.woocommerce-order-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}
.woocommerce-order-status.status-pending {
  background: #ffc107;
  color: #856404;
}
.woocommerce-order-status.status-processing {
  background: #17a2b8;
  color: white;
}
.woocommerce-order-status.status-completed {
  background: #28a745;
  color: white;
}
.woocommerce-order-status.status-cancelled {
  background: #dc3545;
  color: white;
}
.woocommerce-order-status.status-refunded {
  background: #6c757d;
  color: white;
}

.woocommerce-MyAccount-downloads .download-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.woocommerce-MyAccount-downloads .download-item .download-product {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.woocommerce-MyAccount-downloads .download-item .download-file {
  display: inline-block;
  background: #007cba;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.3s ease;
}
.woocommerce-MyAccount-downloads .download-item .download-file:hover {
  background: #005a87;
}
.woocommerce-MyAccount-downloads .download-item .download-remaining {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.woocommerce-Address {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.woocommerce-Address .woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.woocommerce-Address .woocommerce-Address-title h3 {
  margin: 0;
  color: #2c3e50;
}
.woocommerce-Address .woocommerce-Address-title .edit {
  color: #007cba;
  text-decoration: none;
  font-size: 0.875rem;
}
.woocommerce-Address .woocommerce-Address-title .edit:hover {
  text-decoration: underline;
}
.woocommerce-Address address {
  font-style: normal;
  line-height: 1.6;
  color: #495057;
}

.woocommerce-PaymentMethod {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-details {
  flex: 1;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-details .woocommerce-PaymentMethod-card-number {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-details .woocommerce-PaymentMethod-expires {
  font-size: 0.875rem;
  color: #6c757d;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-actions {
  display: flex;
  gap: 0.5rem;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-actions .button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-actions .button.edit {
  background: #007cba;
  color: white;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-actions .button.edit:hover {
  background: #005a87;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-actions .button.delete {
  background: #dc3545;
  color: white;
}
.woocommerce-PaymentMethod .woocommerce-PaymentMethod-actions .button.delete:hover {
  background: #c82333;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid;
}
.woocommerce-message.woocommerce-message,
.woocommerce-error.woocommerce-message,
.woocommerce-info.woocommerce-message {
  background: #d4edda;
  border-color: #28a745;
  color: #155724;
}
.woocommerce-message.woocommerce-error,
.woocommerce-error.woocommerce-error,
.woocommerce-info.woocommerce-error {
  background: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}
.woocommerce-message.woocommerce-info,
.woocommerce-error.woocommerce-info,
.woocommerce-info.woocommerce-info {
  background: #d1ecf1;
  border-color: #17a2b8;
  color: #0c5460;
}

.woocommerce-Message {
  text-align: center;
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 2rem 0;
}
.woocommerce-Message .woocommerce-Message-icon {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.woocommerce-Message p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.woocommerce-Message .button {
  background: #007cba;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.woocommerce-Message .button:hover {
  background: #005a87;
}

td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a {
  height: max-content;
  display: inline;
}

.woocommerce-order-details {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}
.woocommerce-order-details .woocommerce-order-details__title {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #2c3e50;
  padding: 1.5rem 2rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid #e9ecef;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-order-details__title {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
}
.woocommerce-order-details .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.woocommerce-order-details .woocommerce-table thead {
  background: #f8f9fa;
}
.woocommerce-order-details .woocommerce-table thead th {
  padding: 1.5rem 2rem;
  text-align: left;
  font-weight: 600;
  color: #495057;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e9ecef;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table thead th {
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
  }
}
.woocommerce-order-details .woocommerce-table thead th.product-name {
  width: 70%;
}
.woocommerce-order-details .woocommerce-table thead th.product-total {
  width: 30%;
  text-align: right;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table thead th.product-total {
    text-align: left;
  }
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item {
  border-bottom: 1px solid #f1f3f4;
  transition: background-color 0.3s ease;
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item:hover {
  background: #f8f9fa;
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item:last-child {
  border-bottom: 2px solid #e9ecef;
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item td {
  padding: 1.5rem 2rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td {
    padding: 1rem 1.5rem;
    display: block;
    border: none;
  }
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-name {
    padding-bottom: 0.5rem;
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-name::before {
    content: "Product: ";
    font-weight: 600;
    color: #495057;
    display: inline-block;
    margin-right: 0.5rem;
  }
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-name a {
  color: #007cba;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-name a:hover {
  color: #005a87;
  text-decoration: underline;
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-name .product-quantity {
  display: inline-block;
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-name .product-quantity {
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    display: inline-block;
  }
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-total {
  text-align: right;
  font-weight: 600;
  color: #28a745;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-total {
    text-align: left;
    padding-top: 0.5rem;
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-total::before {
    content: "Total: ";
    font-weight: 600;
    color: #495057;
    display: inline-block;
    margin-right: 0.5rem;
  }
}
.woocommerce-order-details .woocommerce-table tbody tr.order_item td.product-total .woocommerce-Price-amount {
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-table tfoot {
  background: #f8f9fa;
}
.woocommerce-order-details .woocommerce-table tfoot tr {
  border-bottom: 1px solid #e9ecef;
}
.woocommerce-order-details .woocommerce-table tfoot tr:last-child {
  border-bottom: none;
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}
.woocommerce-order-details .woocommerce-table tfoot tr:last-child th, .woocommerce-order-details .woocommerce-table tfoot tr:last-child td {
  font-size: 1.125rem;
  font-weight: 700;
  color: #155724;
}
.woocommerce-order-details .woocommerce-table tfoot tr th {
  padding: 1rem 2rem;
  text-align: left;
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
  width: 70%;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table tfoot tr th {
    padding: 0.75rem 1.5rem 0.25rem;
    display: block;
    width: 100%;
    font-size: 0.875rem;
  }
}
.woocommerce-order-details .woocommerce-table tfoot tr td {
  padding: 1rem 2rem;
  text-align: right;
  font-weight: 600;
  color: #2c3e50;
  width: 30%;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table tfoot tr td {
    padding: 0.25rem 1.5rem 0.75rem;
    text-align: left;
    display: block;
    width: 100%;
  }
}
.woocommerce-order-details .woocommerce-table tfoot tr td strong {
  color: #007cba;
}
.woocommerce-order-details .woocommerce-table tfoot tr td br + br {
  display: none;
}
.woocommerce-order-details .woocommerce-table tfoot tr td .woocommerce-Price-amount:contains("-") {
  color: #28a745;
}
.woocommerce-order-details .woocommerce-table tfoot tr td span:first-child:contains("-") {
  color: #28a745;
}
.woocommerce-order-details .woocommerce-table tfoot tr:nth-child(1) th, .woocommerce-order-details .woocommerce-table tfoot tr:nth-child(1) td {
  font-weight: 500;
}
.woocommerce-order-details .woocommerce-table tfoot tr:nth-child(2) td {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #495057;
  font-weight: 500;
}
.woocommerce-order-details .woocommerce-table tfoot tr:nth-child(2) td strong {
  color: #007cba;
  font-weight: 600;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table tfoot tr:nth-child(2) td {
    font-size: 0.85rem;
  }
}
.woocommerce-order-details .woocommerce-table tfoot tr:nth-child(3) th {
  color: #28a745;
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-table tfoot tr:nth-child(3) td {
  color: #28a745;
  font-weight: 700;
}
.woocommerce-order-details .woocommerce-table tfoot tr:nth-child(3) td .woocommerce-Price-amount {
  color: #28a745;
}
.woocommerce-order-details .woocommerce-table tfoot tr:nth-child(5) td {
  color: #495057;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 768px) {
  .woocommerce-order-details .woocommerce-table thead {
    display: none;
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item:hover {
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item:last-child {
    border-bottom: 1px solid #e9ecef;
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td {
    border: none;
  }
  .woocommerce-order-details .woocommerce-table tfoot tr {
    display: block;
    margin-bottom: 0.5rem;
    padding: 0;
  }
  .woocommerce-order-details .woocommerce-table tfoot tr:last-child {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-radius: 8px;
    margin-top: 1rem;
    padding: 0.5rem 0;
  }
  .woocommerce-order-details .woocommerce-table tfoot tr th, .woocommerce-order-details .woocommerce-table tfoot tr td {
    border: none;
  }
}
.woocommerce-order-details .woocommerce-Price-currencySymbol {
  color: #28a745;
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-Price-amount {
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-Price-amount bdi {
  font-weight: inherit;
}

@media (max-width: 480px) {
  .woocommerce-order-details {
    margin: 0 -1rem 2rem;
    border-radius: 0;
  }
  .woocommerce-order-details .woocommerce-order-details__title {
    padding: 1rem;
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item td,
  .woocommerce-order-details .woocommerce-table tfoot tr th,
  .woocommerce-order-details .woocommerce-table tfoot tr td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media print {
  .woocommerce-order-details {
    box-shadow: none;
    border: 1px solid #000;
  }
  .woocommerce-order-details .woocommerce-table tbody tr.order_item:hover {
    background: transparent;
  }
}
.woocommerce-breadcrumb {
  padding-block: 1rem;
}
.woocommerce-breadcrumb a {
  color: #404040;
  text-decoration: none;
  transition: color 0.3s ease;
}
.woocommerce-breadcrumb a:hover {
  color: #383838;
}
.woocommerce-breadcrumb a:visited {
  color: #404040;
}

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