@charset "UTF-8";
/* ==========================================================================
   WooCommerce Product Image Slider SCSS
   ========================================================================== */
.wc-product-image-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.wc-product-image-slider-wrapper::-webkit-scrollbar {
  display: none;
}
.wc-product-image-slider-wrapper:not(.swiper-loaded) {
  opacity: 0.8;
}
.wc-product-image-slider-wrapper.swiper-loaded {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.wc-product-image-slider-wrapper.alignfull, .alignfull .wc-product-image-slider-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}
.wc-product-image-slider-wrapper.alignwide, .alignwide .wc-product-image-slider-wrapper {
  width: calc(100vw - 40px);
  max-width: calc(100vw - 40px);
  margin-left: calc(50% - 50vw + 20px);
  margin-right: calc(50% - 50vw + 20px);
}
.wc-product-image-slider-wrapper .swiper {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}
.wc-product-image-slider-wrapper .swiper.swiper-fade .swiper-slide {
  background: transparent;
}
.wc-product-image-slider-wrapper .swiper.swiper-cube {
  perspective: 1200px;
}
.wc-product-image-slider-wrapper .swiper.swiper-coverflow {
  padding: 0 20px;
}
.wc-product-image-slider-wrapper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.wc-product-image-slider-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.wc-product-image-slider-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(20px) brightness(0.3);
  transform: scale(1.1);
  z-index: 1;
}
.wc-product-image-slider-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  cursor: grab;
  position: relative;
  z-index: 2;
}
.wc-product-image-slider-wrapper .swiper-slide img:active {
  cursor: grabbing;
}
.wc-product-image-slider-wrapper .swiper-slide .image-overlay {
  position: absolute;
  background: radial-gradient(ellipse 85% 90% at center, transparent 50%, rgba(255, 0, 0, 0.2) 65%, rgba(255, 0, 0, 0.6) 80%, rgb(255, 0, 0) 95%);
  pointer-events: none;
  z-index: 3;
}
.wc-product-image-slider-wrapper .swiper-slide:hover img {
  transform: scale(1.02);
}
.wc-product-image-slider-wrapper .swiper-button-next,
.wc-product-image-slider-wrapper .swiper-button-prev {
  color: #ffffff;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  margin-top: calc(-24px / 2);
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 10;
}
.wc-product-image-slider-wrapper .swiper-button-next:hover,
.wc-product-image-slider-wrapper .swiper-button-prev:hover {
  color: rgb(255, 255, 255);
  transform: scale(1.1);
}
.wc-product-image-slider-wrapper .swiper-button-next::after,
.wc-product-image-slider-wrapper .swiper-button-prev::after {
  font-size: 24px;
  font-weight: bold;
}
.wc-product-image-slider-wrapper .swiper-button-next {
  right: 20px;
}
.wc-product-image-slider-wrapper .swiper-button-prev {
  left: 20px;
}
.wc-product-image-slider-wrapper .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.wc-product-image-slider-wrapper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.wc-product-image-slider-wrapper .swiper-pagination-bullet:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.wc-product-image-slider-wrapper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .wc-product-image-slider-wrapper.hide-nav-mobile .swiper-button-next,
  .wc-product-image-slider-wrapper.hide-nav-mobile .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 768px) {
  .wc-product-image-slider-wrapper .swiper-button-next,
  .wc-product-image-slider-wrapper .swiper-button-prev {
    width: 24px;
    height: 24px;
    margin-top: calc(-24px / 2);
  }
  .wc-product-image-slider-wrapper .swiper-button-next::after,
  .wc-product-image-slider-wrapper .swiper-button-prev::after {
    font-size: 24px;
  }
  .wc-product-image-slider-wrapper .swiper-button-next {
    right: 10px;
  }
  .wc-product-image-slider-wrapper .swiper-button-prev {
    left: 10px;
  }
  .wc-product-image-slider-wrapper .swiper-pagination {
    bottom: 10px;
  }
  .wc-product-image-slider-wrapper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 2px;
  }
}
@media (max-width: 480px) {
  .wc-product-image-slider-wrapper .swiper-slide img {
    max-height: 50vh;
  }
  .alignwide .wc-product-image-slider-wrapper,
  .alignfull .wc-product-image-slider-wrapper {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
  }
}
@media (prefers-color-scheme: dark) {
  .wc-product-image-slider-wrapper {
    background: #1a1a1a;
  }
  .wc-product-image-slider-wrapper .swiper-slide {
    background: #2a2a2a;
  }
  .wc-product-image-slider-wrapper .swiper-button-next,
  .wc-product-image-slider-wrapper .swiper-button-prev {
    color: #fff;
    background: rgba(42, 42, 42, 0.9);
  }
  .wc-product-image-slider-wrapper .swiper-button-next:hover,
  .wc-product-image-slider-wrapper .swiper-button-prev:hover {
    background: rgb(42, 42, 42);
  }
  .wc-product-image-slider-wrapper .swiper-pagination-bullet {
    background: rgba(42, 42, 42, 0.7);
    border-color: #fff;
  }
  .wc-product-image-slider-wrapper .swiper-pagination-bullet-active {
    background: #fff;
  }
}
@media (prefers-contrast: high) {
  .wc-product-image-slider-wrapper .swiper-button-next,
  .wc-product-image-slider-wrapper .swiper-button-prev {
    border: 2px solid;
    background: #fff;
    color: #000;
  }
  .wc-product-image-slider-wrapper .swiper-pagination-bullet {
    border-width: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wc-product-image-slider-wrapper .swiper-slide img {
    transition: none;
  }
  .wc-product-image-slider-wrapper .swiper-slide img:hover {
    transform: none;
  }
  .wc-product-image-slider-wrapper .swiper-button-next,
  .wc-product-image-slider-wrapper .swiper-button-prev,
  .wc-product-image-slider-wrapper .swiper-pagination-bullet {
    transition: none;
  }
  .wc-product-image-slider-wrapper.swiper-loaded {
    transition: none;
  }
}
.wc-product-image-slider-editor {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  background: #f9f9f9;
  min-height: 200px;
}

.wc-product-slider-preview {
  text-align: center;
}
.wc-product-slider-preview .preview-header h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}
.wc-product-slider-preview .preview-header p {
  margin: 0 0 20px 0;
  color: #666;
  font-size: 14px;
}
.wc-product-slider-preview .preview-settings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}
.wc-product-slider-preview .setting-item {
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 13px;
}
.wc-product-slider-preview .preview-note {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 10px;
  color: #155724;
  font-size: 13px;
}
.wc-product-slider-preview .preview-note p {
  margin: 0;
}

.wc-product-slider-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 20px;
  color: #721c24;
  text-align: center;
  font-size: 14px;
}

.wc-product-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex-start;
  justify-content: center;
  align-items: start;
  box-sizing: border-box;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.3s ease;
}
.wc-product-popup-overlay.active {
  opacity: 1;
}
@media (max-width: 768px) {
  .wc-product-popup-overlay {
    align-items: flex-start;
    padding-top: 8vh;
  }
}

.wc-product-popup-container {
  background: transparent;
  border-radius: 12px;
  width: 800px;
  max-width: 100%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: all 0.3s ease;
  margin: auto 0;
}
.wc-product-popup-overlay.active .wc-product-popup-container {
  transform: scale(1);
}
@media (max-width: 768px) {
  .wc-product-popup-container {
    width: 100%;
    margin: 0;
  }
}

.wc-product-popup-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  color: #ffffff;
  border: none;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}
.wc-product-popup-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  transition: transform 0.2s ease;
}
.wc-product-popup-close:hover {
  color: rgb(255, 255, 255);
  transform: scale(1.1);
}
.wc-product-popup-close:hover svg {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .wc-product-popup-close {
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
  }
  .wc-product-popup-close svg {
    width: 24px;
    height: 24px;
  }
}

.wc-product-popup-content {
  display: flex;
  flex-direction: column;
  background-color: black;
}

.wc-product-popup-slider {
  position: relative;
  min-height: fit-content;
  background: transparent;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper {
  height: 100%;
  border-radius: 0;
  margin: 0;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper {
  height: 100%;
  border-radius: 0;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-slide {
  height: 100%;
  background: transparent;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: none;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-prev,
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-next {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  transition: all 0.3s ease;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-prev:hover,
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-next:hover {
  color: rgb(255, 255, 255);
  transform: scale(1.1);
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-prev::after,
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-next::after {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-prev,
  .wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-next {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
  .wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-prev::after,
  .wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-button-next::after {
    font-size: 24px;
  }
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-pagination {
  bottom: 40px;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}
.wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-pagination .swiper-pagination-bullet:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .wc-product-popup-slider .wc-product-image-slider-wrapper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 2px;
  }
}
@media (max-width: 768px) {
  .wc-product-popup-slider {
    min-height: 300px;
  }
}

.wc-product-popup-info {
  background: black;
  padding: 30px 20px 20px;
  z-index: 2;
}

.wc-product-popup-title {
  margin: 0 0 20px 0;
  font-size: 40px;
  font-weight: 400;
  color: rgb(254, 204, 137);
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .wc-product-popup-title {
    font-size: 30px;
  }
}

.wc-product-popup-price {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .wc-product-popup-price {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.wc-product-popup-description {
  font-family: --wp--preset--font-family--voltaire;
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: rgb(254, 204, 137);
  font-size: 1em;
  max-width: 400px;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}
.wc-product-popup-description p {
  margin: 0 0 10px 0;
  text-align: center;
}
.wc-product-popup-description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .wc-product-popup-description {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

.wc-product-popup-actions {
  text-align: center;
  min-height: 60px;
}
.wc-product-popup-actions .wp-block-button__link,
.wc-product-popup-actions button {
  color: white;
  text-transform: uppercase;
  border: none;
  padding: 12px 24px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.wc-product-popup-actions .wp-block-button__link:hover,
.wc-product-popup-actions button:hover {
  background: #555;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .wc-product-popup-actions .wp-block-button__link,
  .wc-product-popup-actions button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.wc-product-popup-actions .wc-view-cart-btn,
.wc-product-popup-actions .added_to_cart {
  display: inline-block !important;
  position: static !important;
  margin-top: 0 !important;
  top: auto !important;
  background: rgb(254, 204, 137) !important;
  color: black !important;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(254, 204, 137, 0.4);
}
.wc-product-popup-actions .wc-view-cart-btn:hover,
.wc-product-popup-actions .added_to_cart:hover {
  background: rgb(254.4285714286, 225.8571428571, 187.5714285714) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 204, 137, 0.5);
}
@media (max-width: 768px) {
  .wc-product-popup-actions .wc-view-cart-btn,
  .wc-product-popup-actions .added_to_cart {
    padding: 8px 16px;
    font-size: 12px;
  }
}

.wc-block-product {
  cursor: pointer;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.wc-block-product .wc-block-components-product-image {
  transition: all 0.3s ease;
  margin: 0;
}
.wc-block-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.wc-block-product .wc-block-components-product-sale-badge,
.wc-block-product .wp-block-woocommerce-product-button,
.wc-block-product .product-buttons,
.wc-block-product .wp-block-button,
.wc-block-product .add-to-cart-button,
.wc-block-product .wc-block-components-product-button,
.wc-block-product button[name=add-to-cart] {
  display: none !important;
}
.wc-block-product .wp-block-post-title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 10px 15px;
  font-size: 30px !important;
  font-weight: 300 !important;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translate(0, calc(-50% - 20px));
  transition: all 0.3s ease;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}
.wc-block-product .wp-block-post-title a {
  text-decoration: none !important;
  text-underline: none !important;
  color: rgb(254, 204, 137) !important;
}
.wc-block-product .wc-block-product-price,
.wc-block-product .price,
.wc-block-product .wc-block-components-product-price {
  position: absolute !important;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 !important;
  padding: 8px 15px;
  color: white;
  font-size: 18px !important;
  font-weight: 400;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translate(0, calc(-50% + 30px));
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.wc-block-product::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 70px));
  font-size: 28px;
  color: rgb(254, 204, 137);
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}
.wc-block-product:hover::before {
  background: rgba(0, 0, 0, 0.5);
}
.wc-block-product:hover .wc-block-components-product-image {
  transform: scale(1.02);
  filter: brightness(0.8);
}
.wc-block-product:hover .wp-block-post-title {
  opacity: 1;
  transform: translate(0, calc(-50% - 20px));
}
.wc-block-product:hover .wc-block-product-price,
.wc-block-product:hover .price,
.wc-block-product:hover .wc-block-components-product-price {
  opacity: 1;
  transform: translate(0, calc(-50% + 30px));
}
.wc-block-product:hover::after {
  opacity: 1;
  transform: translate(-50%, calc(-50% + 70px));
}
@media (max-width: 768px) {
  .wc-block-product .wp-block-post-title {
    font-size: 24px !important;
    padding: 8px 10px;
  }
  .wc-block-product .wc-block-product-price,
  .wc-block-product .price,
  .wc-block-product .wc-block-components-product-price {
    font-size: 16px !important;
    padding: 6px 10px;
  }
}

.wc-block-product-template__responsive {
  grid-gap: 15px;
}

.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open {
  color: rgb(254, 204, 137) !important;
  background-color: black !important;
}
.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open li {
  font-size: 1.8em;
}
.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open li a {
  font-family: var(--wp--preset--font-family--voltaire);
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
}

.wc-block-product {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16);
}

.wc-block-components-product-image {
  height: 100%;
}
.wc-block-components-product-image a {
  height: 100%;
}

.wc-block-components-product-image img {
  max-width: 100%;
  height: 100% !important;
}

.post-type-archive-product .wp-block-query-title {
  display: none;
}

.added_to_cart.wc_forward {
  margin-top: -100px;
  top: -20px;
  position: relative;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.woocommerce-product-gallery .flex-viewport {
  margin-bottom: 10px;
}
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  flex: 1;
  margin: 0;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.woocommerce-product-gallery .flex-control-thumbs li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.woocommerce-product-gallery .flex-control-thumbs li:hover img {
  transform: scale(1.05);
}

.wc-block-components-product-name {
  color: rgb(254, 204, 137) !important;
}

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

table, tr, thead, td, th, tbody, .wc-block-components-totals-wrapper {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.woocommerce-account .wp-block-post-title, .woocommerce-account main .woocommerce, .woocommerce-cart .wp-block-post-title, .woocommerce-cart main .woocommerce, .woocommerce-checkout .wp-block-post-title, .woocommerce-checkout main .woocommerce {
  max-width: 1200px !important;
}

footer .copyright-menu .wp-block-navigation-item__label {
  color: grey;
  font-size: 11px;
  font-family: var(--wp--preset--font-family--roboto);
}

.wc-sold-banner {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgb(254, 204, 137);
  color: black;
  padding: 6px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 100;
  letter-spacing: 1px;
  text-align: center;
  transform: rotate(-45deg) translate(44%, -72%);
  transform-origin: bottom right;
}
@media (max-width: 768px) {
  .wc-sold-banner {
    font-size: 12px;
    padding: 5px 35px;
  }
}

.wc-sold-message {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  background: rgba(220, 38, 38, 0.15);
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: 8px;
  margin: 20px 0;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  .wc-sold-message {
    font-size: 16px;
    padding: 15px;
    margin: 15px 0;
  }
}

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