@charset "UTF-8";
/*
Theme Name: Optimized MK Ecommerce Theme

WooCommerce styles override
*/
@font-face {
  font-family: "Raleway";
  src: url("/wp-content/themes/optimized/assets/fonts/raleway-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Raleway";
  src: url("/wp-content/themes/optimized/assets/fonts/raleway-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Raleway";
  src: url("/wp-content/themes/optimized/assets/fonts/raleway-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}
/**
 * Products
 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1/1;
  background: var(--bg, #f6f6f6);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:not(.product-card--no-hover):hover .product-card__img--hover {
  opacity: 1;
  transform: scale(1.04);
}
.product-card:not(.product-card--no-hover):hover .product-card__img--main {
  opacity: 0;
}
.product-card:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}
.product-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}
.product-card__badge {
  font-size: 12px;
  padding: 5px 8px;
  background: var(--primary, #12a9b8);
  color: #fff;
  letter-spacing: 0.08em;
}
.product-card__swatches {
  position: absolute;
  bottom: 60px;
  left: 14px;
  display: flex;
  gap: 6px;
}
.product-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__swatch:hover {
  transform: scale(1.2);
}
.product-card__quick {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__quick .button {
  width: 100%;
  background: var(--primary, #12a9b8);
  color: #fff;
  padding: 13px;
  font-size: 14px;
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
}
.product-card__quick .button.loading {
  color: transparent;
}
.product-card__quick .button.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.6s linear infinite;
}
.product-card__info {
  padding-top: 14px;
}
.product-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color, #333);
  line-height: 1.3;
  text-decoration: none;
}
.product-card__desc {
  font-size: 13px;
  color: var(--text-color, #333);
  line-height: 1.4;
  margin: 4px 0 8px;
}
.product-card__price {
  font-weight: 700;
  font-size: 14px;
}

.added_to_cart {
  display: none !important;
}

.quick-view {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.quick-view.open {
  opacity: 1;
  pointer-events: auto;
}
.quick-view__content {
  background: #fff;
  padding: 30px;
  max-width: 900px;
  width: 100%;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.quick-view.open .quick-view__content {
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.free-shipping-wrapper {
  margin-top: 14px;
}

.free-shipping-bar {
  height: 6px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.free-shipping-progress {
  height: 100%;
  background: var(--primary, #12a9b8);
  width: 0;
  transition: width 0.35s ease;
}

.free-shipping-text {
  font-size: 14px;
}
.free-shipping-text strong {
  font-weight: 700;
}

/**
 * Archive / filters
 */
.cat-nav {
  margin: 50px auto;
}
.cat-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color, #333);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.cat-nav__back:hover {
  color: var(--primary, #12a9b8);
}
.cat-nav__back svg {
  flex-shrink: 0;
}
.cat-nav__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cat-nav__grid .cat-card {
  width: 140px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.cat-card__media {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg, #f6f6f6);
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-card__media {
  border-color: var(--primary, #12a9b8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.cat-card:hover .cat-card__media img {
  transform: scale(1.05);
}
.cat-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color, #333);
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.cat-card:hover .cat-card__name {
  color: var(--primary, #12a9b8);
}

.archive-main {
  min-width: 0;
  margin-top: 50px;
}

.archive-filters {
  position: fixed;
  inset: 0 auto 0 0;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  overflow-y: auto;
  z-index: 500;
  transform: translateX(-110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 150px 24px 24px;
}
@media (max-width: 768px) {
  .archive-filters {
    padding: 100px 24px 24px;
  }
}
.archive-filters.is-open {
  transform: translateX(0);
}
.archive-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.archive-filters__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color, #333);
}
.archive-filters__header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.archive-filters__clear {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--primary, #12a9b8);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.archive-filters__clear:hover {
  opacity: 0.7;
}
.archive-filters__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: var(--text-color, #333);
  transition: border-color 0.2s, color 0.2s;
}
.archive-filters__close:hover {
  border-color: var(--primary, #12a9b8);
  color: var(--primary, #12a9b8);
}
.archive-filters__apply {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 12px;
  background: var(--primary, #12a9b8);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.archive-filters__apply:hover {
  background: var(--secondary, #1290ba);
}

.filters-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.filters-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.filters-open {
  overflow: hidden;
}

.filter-group {
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
}
.filter-group:first-of-type {
  padding-top: 0;
}
.filter-group:last-of-type {
  border-bottom: none;
}
.filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color, #333);
  cursor: pointer;
  text-align: left;
}
.filter-group__toggle:hover {
  color: var(--primary, #12a9b8);
}
.filter-group__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
.filter-group__toggle[aria-expanded=false] .filter-group__chevron {
  transform: rotate(-45deg);
  margin-top: 4px;
}
.filter-group__body {
  padding-top: 14px;
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.filter-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.filter-checkbox__box {
  width: 18px;
  height: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.filter-checkbox__box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}
input:checked ~ .filter-checkbox__box {
  background: var(--primary, #12a9b8);
  border-color: var(--primary, #12a9b8);
}
input:checked ~ .filter-checkbox__box::after {
  opacity: 1;
}
.filter-checkbox:hover .filter-checkbox__box {
  border-color: var(--primary, #12a9b8);
}
.filter-checkbox__label {
  font-size: 13px;
  color: var(--text-color, #333);
  flex: 1;
}
.filter-checkbox__count {
  font-size: 12px;
  color: #999;
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.archive-toolbar__count {
  font-size: 13px;
  color: #888;
}
.archive-toolbar__count .woocommerce-result-count {
  margin: 0;
}
.archive-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.archive-toolbar__filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color, #333);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.archive-toolbar__filter-btn:hover {
  border-color: var(--primary, #12a9b8);
  color: var(--primary, #12a9b8);
}
.archive-toolbar__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--primary, #12a9b8);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.sort-select {
  position: relative;
  display: flex;
  align-items: center;
}
.sort-select__input {
  appearance: none;
  background: var(--bg, #f6f6f6);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 36px 8px 14px;
  font-size: 13px;
  color: var(--text-color, #333);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.sort-select__input:hover, .sort-select__input:focus {
  border-color: var(--primary, #12a9b8);
}
.sort-select__chevron {
  position: absolute;
  right: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg) translateY(-3px);
  pointer-events: none;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.active-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 169, 184, 0.08);
  border: 1px solid rgba(18, 169, 184, 0.25);
  color: var(--primary, #12a9b8);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.active-filters__remove {
  color: var(--primary, #12a9b8);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.active-filters__remove:hover {
  opacity: 1;
}

.archive-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.archive-pagination .woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive-pagination .woocommerce-pagination li {
  display: flex;
}
.archive-pagination .woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color, #333);
  text-decoration: none;
  background: #fff;
}
.archive-pagination .woocommerce-pagination .page-numbers li {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  overflow: hidden;
}
.archive-pagination .woocommerce-pagination .page-numbers li:hover {
  border-color: var(--primary, #12a9b8);
  color: var(--primary, #12a9b8);
}
.archive-pagination .woocommerce-pagination .page-numbers.current {
  background: var(--primary, #12a9b8);
  border-color: var(--primary, #12a9b8);
  color: #fff;
}
.archive-pagination .woocommerce-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
  font-weight: 400;
  color: #aaa;
}
.archive-pagination .woocommerce-pagination .page-numbers.prev, .archive-pagination .woocommerce-pagination .page-numbers.next {
  font-size: 18px;
  font-weight: 400;
}

/**
 * Single product
 */
.product-page {
  background: #f5f1eb;
  min-height: 100vh;
  color: var(--text-color, #333);
}

.product-container .breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: #6b6b6b;
}
.product-container .breadcrumb a {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
}
.product-container .breadcrumb a:hover {
  color: var(--text-color, #333);
}
.product-container .breadcrumb span {
  margin: 0 8px;
  color: #d4cfc7;
}
.product-container .breadcrumb .breadcrumb_last {
  color: var(--text-color, #333);
}
.product-container .product-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .product-container .product-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
.product-container .product-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .product-container .product-gallery__grid {
    display: none;
  }
}
.product-container .product-gallery__swiper {
  width: 100%;
  display: none;
  position: relative;
}
@media (max-width: 768px) {
  .product-container .product-gallery__swiper {
    display: block;
  }
}
.product-container .product-gallery__swiper .swiper-slide {
  width: auto;
}
.product-container .product-gallery__swiper .swiper-button-next,
.product-container .product-gallery__swiper .swiper-button-prev {
  position: absolute;
  top: 40%;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid var(--primary, #12a9b8);
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  z-index: 10;
  transition: all 0.4s ease;
}
.product-container .product-gallery__swiper .swiper-button-next:after,
.product-container .product-gallery__swiper .swiper-button-prev:after {
  font-size: 14px !important;
  color: var(--primary, #12a9b8);
}
.product-container .product-gallery__swiper .swiper-button-next:hover,
.product-container .product-gallery__swiper .swiper-button-prev:hover {
  background: var(--primary, #12a9b8);
}
.product-container .product-gallery__swiper .swiper-button-next:hover:after,
.product-container .product-gallery__swiper .swiper-button-prev:hover:after {
  color: #fff !important;
}
.product-container .product-gallery__swiper .swiper-button-prev {
  left: 0px;
}
.product-container .product-gallery__swiper .swiper-button-next {
  right: 0px;
}
.product-container .product-gallery__swiper .swiper-pagination-bullet {
  background: var(--primary, #12a9b8);
  opacity: 0.3;
}
.product-container .product-gallery__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.product-container .product-gallery__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.3s;
  background: #e8e2d8;
}
@media (max-width: 768px) {
  .product-container .product-gallery__image {
    aspect-ratio: unset;
  }
}
.product-container .product-gallery__image:hover {
  opacity: 0.9;
}
.product-container .product-gallery__image--wide {
  grid-column: 1/-1;
}
.product-container .product-info {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 768px) {
  .product-container .product-info {
    position: static;
  }
}
.product-container .product-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.product-container .product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.product-container .product-price {
  font-size: 18px;
}
.product-container .product-price .amount {
  font-weight: 700;
  font-size: 22px;
}
.product-container .product-rating {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 14px;
}
.product-container .product-rating__stars {
  display: flex;
  gap: 2px;
  margin-right: 6px;
}
.product-container .product-rating__count {
  color: #6b6b6b;
}
.product-container .product-colors {
  margin-bottom: 28px;
}
.product-container .product-colors__label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #6b6b6b;
}
.product-container .product-colors__swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-container .color-swatch {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.product-container .color-swatch--tan {
  background: #c8a278;
}
.product-container .color-swatch--chocolate {
  background: #5c3d2e;
}
.product-container .color-swatch--olive {
  background: #4a5c3a;
}
.product-container .color-swatch--black {
  background: #1a1a1a;
}
.product-container .color-swatch--active {
  border-color: var(--text-color, #333);
}
.product-container .color-swatch--active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.product-container .color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-container .color-swatch:hover, .product-container .color-swatch.is-active {
  border-color: var(--primary, #12a9b8);
}
.product-container .color-swatch.is-oos {
  opacity: 0.55;
}
.product-container .color-swatch__oos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.product-container .color-swatch__oos::before, .product-container .color-swatch__oos::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: #e53935;
  border-radius: 2px;
}
.product-container .color-swatch__oos::before {
  transform: rotate(45deg);
}
.product-container .color-swatch__oos::after {
  transform: rotate(-45deg);
}
.product-container .product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-container .quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.product-container .quantity-wrapper input.qty {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
}
.product-container .quantity-wrapper input.qty::-webkit-outer-spin-button, .product-container .quantity-wrapper input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-container .quantity-wrapper .qty-btn {
  width: 36px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}
.product-container .quantity-wrapper .qty-btn:hover {
  color: #000;
}
.product-container .btn-add-to-cart {
  padding: 10px 20px;
  cursor: pointer;
}
.product-container .btn-buy-now {
  flex: 1;
  padding: 16px 32px;
  background: #5a31f4;
  color: white;
  border: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.product-container .btn-buy-now:hover {
  opacity: 0.9;
}
.product-container .stock {
  margin-top: 0;
}
.product-container .stock.in-stock {
  color: #00b30f;
}
.product-container .stock.in-stock::before {
  content: "✓";
  margin-right: 5px;
}
.product-container .stock.out-of-stock {
  color: red;
}
.product-container .product-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid #d4cfc7;
}

.product-accordion {
  border-bottom: 1px solid #d4cfc7;
}
.product-accordion__item {
  border-top: 1px solid #d4cfc7;
}
.product-accordion__item:first-child {
  border-top: none;
}
.product-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  text-transform: uppercase;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}
.product-accordion__trigger:hover {
  opacity: 0.7;
}
.product-accordion__trigger .icon {
  font-size: 20px;
  transition: transform 0.3s;
  color: #6b6b6b;
}
.product-accordion__trigger--open .icon {
  transform: rotate(45deg);
}
.product-accordion__content {
  padding: 0 0 18px;
  line-height: 1.7;
  color: #6b6b6b;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stock-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.stock-popup.active {
  display: flex;
}
.stock-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.stock-popup__content {
  position: relative;
  max-width: 500px;
  width: 90%;
  background: #fff;
  padding: 40px 40px 20px;
  z-index: 2;
}
.stock-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.sj-related-products .sj-related-header {
  margin-bottom: 50px;
}

/* Swiper */
.sj-related-swiper {
  position: relative;
}
.sj-related-swiper .swiper-slide {
  width: auto;
}
.sj-related-swiper .swiper-button-next,
.sj-related-swiper .swiper-button-prev {
  position: absolute;
  top: 40%;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid var(--primary, #12a9b8);
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  z-index: 10;
  transition: all 0.4s ease;
}
.sj-related-swiper .swiper-button-next:after,
.sj-related-swiper .swiper-button-prev:after {
  font-size: 14px !important;
  color: var(--primary, #12a9b8);
}
.sj-related-swiper .swiper-button-next:hover,
.sj-related-swiper .swiper-button-prev:hover {
  background: var(--primary, #12a9b8);
}
.sj-related-swiper .swiper-button-next:hover:after,
.sj-related-swiper .swiper-button-prev:hover:after {
  color: #fff !important;
}
.sj-related-swiper .swiper-button-prev {
  left: 0px;
}
.sj-related-swiper .swiper-button-next {
  right: 0px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.2s ease;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.lightbox__close:hover {
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#reviews {
  padding-top: 50px;
}
#reviews .woocommerce-Reviews-title {
  display: none;
}
#reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  #reviews {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#reviews #comments h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
#reviews .commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#reviews .commentlist li.review .comment_container {
  display: flex;
  gap: 14px;
}
#reviews .commentlist li.review img.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
#reviews .commentlist li.review .comment-text {
  flex: 1;
}
#reviews .commentlist li.review .comment-text .star-rating {
  float: none;
  margin-bottom: 6px;
  color: #f5c518;
  font-size: 13px;
}
#reviews .commentlist li.review .comment-text .star-rating span::before {
  color: #f5c518;
}
#reviews .commentlist li.review .comment-text p.meta {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 8px;
}
#reviews .commentlist li.review .comment-text p.meta strong.woocommerce-review__author {
  font-weight: 600;
  color: #1a1a1a;
}
#reviews .commentlist li.review .comment-text p.meta time {
  margin-left: 6px;
}
#reviews .commentlist li.review .comment-text .description p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #1a1a1a;
}
#reviews .woocommerce-noreviews {
  color: #6b6b6b;
  font-size: 14px;
  padding: 10px;
}
#reviews #review_form_wrapper {
  border-top: none;
  padding-top: 0;
}
#reviews #reply-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
}
#reviews .comment-form-rating {
  margin-bottom: 18px;
}
#reviews .comment-form-rating label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 8px;
}
#reviews .comment-form-rating .stars {
  display: flex;
  gap: 4px;
}
#reviews .comment-form-rating .stars a {
  font-size: 22px;
  color: #d4cfc7;
  text-decoration: none;
  transition: color 0.2s;
}
#reviews .comment-form-rating .stars a:hover, #reviews .comment-form-rating .stars a.active {
  color: #f5c518;
}
#reviews .comment-form-rating .stars a::before {
  color: #f5c518;
}
#reviews .comment-form-rating .stars:hover a,
#reviews .comment-form-rating .stars a.active ~ a {
  color: #d4cfc7;
}
#reviews .comment-form-rating .stars a:hover ~ a {
  color: #d4cfc7;
}
#reviews .comment-form-comment,
#reviews .comment-form-author,
#reviews .comment-form-email {
  margin-bottom: 14px;
}
#reviews .comment-form-comment label,
#reviews .comment-form-author label,
#reviews .comment-form-email label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 6px;
}
#reviews .comment-form-comment input,
#reviews .comment-form-comment textarea,
#reviews .comment-form-author input,
#reviews .comment-form-author textarea,
#reviews .comment-form-email input,
#reviews .comment-form-email textarea {
  width: 100%;
  border: 1px solid #d4cfc7;
  padding: 12px 16px;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
#reviews .comment-form-comment input:focus,
#reviews .comment-form-comment textarea:focus,
#reviews .comment-form-author input:focus,
#reviews .comment-form-author textarea:focus,
#reviews .comment-form-email input:focus,
#reviews .comment-form-email textarea:focus {
  border-color: var(--primary, #12a9b8);
}
#reviews .comment-form-comment textarea,
#reviews .comment-form-author textarea,
#reviews .comment-form-email textarea {
  resize: vertical;
  min-height: 110px;
}
#reviews .comment-form-author,
#reviews .comment-form-email {
  display: inline-block;
  width: calc(50% - 8px);
}
#reviews .comment-form-author.comment-form-email,
#reviews .comment-form-email.comment-form-email {
  margin-left: 16px;
}
@media (max-width: 480px) {
  #reviews .comment-form-author,
  #reviews .comment-form-email {
    display: block;
    width: 100%;
  }
  #reviews .comment-form-author.comment-form-email,
  #reviews .comment-form-email.comment-form-email {
    margin-left: 0;
  }
}
#reviews .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #6b6b6b;
}
#reviews #submit {
  width: auto;
}

.fbt-section__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color, #333);
  margin-bottom: 24px;
}

/**
 * Checkout
 */
/* Main cart wrapper */
.cart-wrap {
  padding: 50px 20px;
}
.cart-wrap .cart-container {
  max-width: 1200px;
  margin: 0 auto;
}
.cart-wrap .cart-container .woocommerce {
  display: flex;
  gap: 20px;
}
.cart-wrap .cart-container .woocommerce .woocommerce-cart-form {
  background: var(--bg, #f6f6f6);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 70%;
}
.cart-wrap .cart-container .woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.cart-wrap .cart-container .woocommerce table.shop_table th, .cart-wrap .cart-container .woocommerce table.shop_table td {
  padding: 15px;
  vertical-align: middle;
  text-align: left;
}
.cart-wrap .cart-container .woocommerce table.shop_table th {
  font-weight: 700;
  border-bottom: 1px solid #eee;
}
.cart-wrap .cart-container .woocommerce table.shop_table td {
  border-bottom: 1px solid #f0f0f0;
}
.cart-wrap .cart-container .woocommerce table.shop_table .product-thumbnail img {
  max-width: 80px;
  border-radius: 5px;
}
.cart-wrap .cart-container .woocommerce table.shop_table .product-remove a {
  font-size: 20px;
  color: #888;
  transition: color 0.3s;
}
.cart-wrap .cart-container .woocommerce table.shop_table .product-remove a:hover {
  color: #ff5c5c;
}
.cart-wrap .cart-container .woocommerce table.shop_table input.qty {
  width: 60px;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}
.cart-wrap .cart-container .woocommerce {
  /* Cart totals / shipping / order summary */
}
.cart-wrap .cart-container .woocommerce .cart-collaterals {
  width: 30%;
  background: var(--bg, #f6f6f6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.cart-wrap .cart-container .woocommerce .cart-collaterals .woocommerce-shipping-calculator {
  display: none;
}
.cart-wrap .cart-container .woocommerce .cart_totals,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive {
  padding: 20px;
}
.cart-wrap .cart-container .woocommerce .cart_totals h2,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.cart-wrap .cart-container .woocommerce .cart_totals table,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive table {
  width: 100%;
}
.cart-wrap .cart-container .woocommerce .cart_totals table th, .cart-wrap .cart-container .woocommerce .cart_totals table td,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive table th,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive table td {
  padding: 10px 0;
  text-align: left;
}
.cart-wrap .cart-container .woocommerce .cart_totals .shipping-wraps label,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive .shipping-wraps label {
  margin-left: 10px;
  font-weight: 400;
}
.cart-wrap .cart-container .woocommerce .cart_totals .shipping-note a,
.cart-wrap .cart-container .woocommerce .shop_table.shop_table_responsive .shipping-note a {
  color: #1a73e8;
  text-decoration: underline;
}
.cart-wrap .cart-container .woocommerce {
  /* Responsive adjustments */
}
@media (max-width: 992px) {
  .cart-wrap .cart-container .woocommerce table.shop_table,
  .cart-wrap .cart-container .woocommerce .cart_totals table {
    font-size: 14px;
  }
  .cart-wrap .cart-container .woocommerce .product-thumbnail img {
    max-width: 60px;
  }
}
.cart-wrap .woocommerce-cart-form button[name=update_cart] {
  display: none !important;
}

.woocommerce-billing-fields #billing_country_field {
  display: none;
}

.checkout-wrap form.checkout {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .checkout-wrap form.checkout {
    flex-direction: column-reverse;
  }
}
.checkout-wrap .checkout-right,
.checkout-wrap .left-wrap {
  flex: 1;
  padding: 38px;
}
@media (max-width: 768px) {
  .checkout-wrap .checkout-right,
  .checkout-wrap .left-wrap {
    padding: 24px 12px;
  }
}
.checkout-wrap input[type=text],
.checkout-wrap input[type=number],
.checkout-wrap input[type=email],
.checkout-wrap input[type=tel],
.checkout-wrap textarea {
  width: 100%;
  padding: 11px;
}
.checkout-wrap .checkout-left {
  margin-left: auto;
  max-width: 500px;
}
.checkout-wrap .checkout-left h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text-color, #333);
}
.checkout-wrap .checkout-left p.form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 16px 0;
  position: relative;
}
.checkout-wrap .checkout-left p.form-row#woo_ml_subscribe_field .checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.checkout-wrap .checkout-left #billing_first_name_field,
.checkout-wrap .checkout-left #billing_last_name_field,
.checkout-wrap .checkout-left #billing_city_field,
.checkout-wrap .checkout-left #billing_postcode_field {
  width: 48%;
  display: inline-flex;
}
.checkout-wrap .checkout-left #billing_last_name_field,
.checkout-wrap .checkout-left #billing_postcode_field {
  margin-left: 4%;
}
.checkout-wrap .checkout-left .wc_payment_methods {
  border: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-left .wc_payment_methods .payments-wrap {
  padding: 14px;
}
.checkout-wrap .checkout-left .wc_payment_methods .payments-wrap.chosen {
  background-color: var(--primary, #12a9b8);
  display: inline-block;
  width: 100%;
  border: 1px solid var(--primary, #12a9b8);
  color: #fff;
}
.checkout-wrap .checkout-left .wc_payment_methods .payment_box {
  text-align: center;
  background-color: #f4f4f4;
}
.checkout-wrap .checkout-left .wc_payment_methods .payment_box p {
  margin: 0;
  padding: 14px;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods {
  border: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li.chosen {
  width: 100%;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li.chosen .shipping-wraps {
  background-color: var(--primary, #12a9b8);
  border: 1px solid var(--primary, #12a9b8);
  color: #fff;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li .shipping-wraps {
  padding: 14px;
  display: flex;
  flex-direction: row;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li .shipping-wraps label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 5px;
}
.checkout-wrap .checkout-left .woocommerce-shipping-methods li .shipping-note {
  margin: 0;
  padding: 14px;
  text-align: center;
  background-color: #f4f4f4;
}
.checkout-wrap .checkout-left .woocommerce-privacy-policy-text {
  font-size: 12px;
}
.checkout-wrap .checkout-right {
  background-color: #f5f5f5;
  border-left: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order {
  max-width: 400px;
  position: sticky;
  height: fit-content;
  top: 20px;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr.cart_item {
  border-bottom: 1px solid #DEDEDE;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr:last-child {
  border-bottom: none;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .image-info-wrap {
  position: relative;
  width: 70px;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .image-info-wrap img {
  border: 2px solid #fff;
  border-radius: 8px;
  width: 70px;
  height: 70px;
  box-shadow: 0 1px 1.75px 0 rgba(0, 0, 0, 0.12), 0 -0.5px 1.5px 0 rgba(0, 0, 0, 0.09), 0 3px 4px 0 rgba(0, 0, 0, 0.03);
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .image-info-wrap .product-quantity {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 2;
  padding: 0 5px;
  background-color: #000;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .name-info-wrap {
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  width: calc(100% - 70px);
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr td.product-name .name-info-wrap .product-variation {
  font-size: 12px;
  color: #888;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tr .product-total {
  text-align: right;
  color: #000;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tfoot {
  text-align: left;
}
.checkout-wrap .checkout-right .woocommerce-checkout-review-order tfoot td {
  text-align: right;
  color: #000;
}
.checkout-wrap .checkout-right .checkout_coupon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.checkout-wrap #place_order {
  width: 100%;
  padding: 14px;
  background-color: var(--primary, #12a9b8);
  color: #fff;
}
.checkout-wrap .checkout-inline-error-message {
  color: red;
}
.checkout-wrap .support-menu {
  font-size: 14px;
}
.checkout-wrap .support-menu .support-nav {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.checkout-wrap .support-menu .support-nav li {
  margin-right: 10px;
}

/**
 * General WooCommerce components
 */
/**
 * 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: #f5c518;
}

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: var(--bg, #f6f6f6);
  clear: both;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: var(--bg, #f6f6f6);
}

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

/**
 * Account page
 */
.account-page-wrap {
  min-height: 60vh;
  padding: 48px 0 72px;
}
@media (max-width: 768px) {
  .account-page-wrap {
    padding: 24px 0 48px;
  }
}

.account-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1024px) {
  .account-layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 14px;
  }
}

.account-sidebar {
  position: sticky;
  top: 24px;
}
@media (max-width: 768px) {
  .account-sidebar {
    position: static;
  }
}

.account-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.account-user {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--primary, #12a9b8) 0%, var(--secondary, #1290ba) 100%);
  border-radius: 14px 14px 0 0;
}
@media (max-width: 768px) {
  .account-user {
    padding: 14px 16px;
    gap: 10px;
  }
}

.account-user__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .account-user__avatar {
    width: 38px;
    height: 38px;
  }
}
.account-user__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-user__avatar-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
}
.account-user__avatar-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s ease;
}
.account-user__avatar-link:hover img {
  filter: brightness(0.65);
}
.account-user__avatar-link:hover .account-user__avatar-overlay {
  opacity: 1;
}

.account-user__avatar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.account-user__avatar-overlay svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}
@media (max-width: 768px) {
  .account-user__avatar-overlay svg {
    width: 14px;
    height: 14px;
  }
}

.account-user__info {
  min-width: 0;
}

.account-user__name {
  font-weight: 700;
  font-size: 14px;
  display: block;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .account-user__name {
    font-size: 13px;
  }
}

.account-user__email {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .account-user__email {
    font-size: 10.5px;
  }
}

.account-nav {
  padding: 8px 0;
  width: 100%;
}
.account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .account-nav ul {
    display: flex;
    overflow-x: auto;
    padding: 8px 12px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .account-nav ul::-webkit-scrollbar {
    display: none;
  }
}
.account-nav li {
  margin: 0;
}
@media (max-width: 768px) {
  .account-nav li {
    flex-shrink: 0;
  }
}
.account-nav li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px;
  color: #555;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border-left: 3px solid transparent;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .account-nav li a {
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 7px;
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
}
.account-nav li a:hover {
  background: #e5f8fa;
  color: var(--primary, #12a9b8);
  border-left-color: var(--primary, #12a9b8);
}
@media (max-width: 768px) {
  .account-nav li a:hover {
    border-left-color: transparent;
    border-bottom-color: var(--primary, #12a9b8);
  }
}
.account-nav li a:hover svg {
  opacity: 1;
}
.account-nav li a svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: currentColor;
  opacity: 0.6;
  transition: opacity 0.18s ease;
}
.account-nav li.is-active > a {
  background: #e5f8fa;
  color: var(--primary, #12a9b8);
  border-left-color: var(--primary, #12a9b8);
}
@media (max-width: 768px) {
  .account-nav li.is-active > a {
    border-left-color: transparent;
    border-bottom-color: var(--primary, #12a9b8);
  }
}
.account-nav li.is-active > a svg {
  opacity: 1;
}
.account-nav li.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 6px;
  border-top: 1px solid #f2f2f2;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .account-nav li.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
}
.account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #c0392b;
}
.account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: #fff5f4;
  border-left-color: #c0392b;
  color: #c0392b;
}
@media (max-width: 768px) {
  .account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    border-left-color: transparent;
    border-bottom-color: #c0392b;
  }
}

.account-content {
  min-width: 0;
}

.account-content-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 36px 32px;
}
@media (max-width: 768px) {
  .account-content-card {
    padding: 20px 16px;
    border-radius: 10px;
  }
}
.account-content-card .woocommerce {
  width: 100%;
  min-width: 0;
}
.account-content-card h2,
.account-content-card .woocommerce-column__title {
  font-size: 20px;
  font-weight: 900;
  color: #222;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
}
@media (max-width: 768px) {
  .account-content-card h2,
  .account-content-card .woocommerce-column__title {
    font-size: 17px;
    margin-bottom: 18px;
  }
}
.account-content-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 28px 0 16px;
}
@media (max-width: 768px) {
  .account-content-card h3 {
    font-size: 15px;
  }
}

.account-dashboard__greeting {
  margin-bottom: 32px;
}
.account-dashboard__greeting h2 {
  font-size: 22px;
  font-weight: 900;
  color: #222;
  margin: 0 0 6px;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}
.account-dashboard__greeting p {
  color: #888;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.dashboard-stat {
  background: #f7f9fa;
  border: 1px solid #eef0f2;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .dashboard-stat {
    padding: 14px 10px;
    border-radius: 8px;
  }
}
.dashboard-stat .stat-value {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--primary, #12a9b8);
  line-height: 1;
  margin-bottom: 7px;
}
@media (max-width: 768px) {
  .dashboard-stat .stat-value {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.dashboard-stat .stat-value--sm {
  font-size: 18px;
}
@media (max-width: 768px) {
  .dashboard-stat .stat-value--sm {
    font-size: 15px;
  }
}
.dashboard-stat .stat-value--xs {
  font-size: 15px;
}
@media (max-width: 768px) {
  .dashboard-stat .stat-value--xs {
    font-size: 13px;
  }
}
.dashboard-stat .stat-label {
  font-size: 11px;
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
@media (max-width: 768px) {
  .dashboard-stat .stat-label {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
}

.dashboard-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .dashboard-actions {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .dashboard-actions {
    grid-template-columns: 1fr;
  }
}

.dashboard-action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: #f7f9fa;
  border: 1.5px solid #eef0f2;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-color, #333);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
@media (max-width: 768px) {
  .dashboard-action-card {
    padding: 14px 12px;
    gap: 12px;
  }
}
.dashboard-action-card:hover {
  border-color: var(--primary, #12a9b8);
  background: #e5f8fa;
  color: #0e8f9c;
  text-decoration: none;
}
.dashboard-action-card:hover .dashboard-action-card__desc {
  color: #0e8f9c;
}
.dashboard-action-card--logout .dashboard-action-card__icon {
  background: #e74c3c;
}
.dashboard-action-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--primary, #12a9b8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dashboard-action-card__icon svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
  fill: none;
}
.dashboard-action-card__title {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: inherit;
}
.dashboard-action-card__desc {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
  transition: color 0.2s ease;
}

.account-content-card .woocommerce-orders-table,
.account-content-card .shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
@media (max-width: 768px) {
  .account-content-card .woocommerce-orders-table,
  .account-content-card .shop_table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }
}
.account-content-card .woocommerce-orders-table th,
.account-content-card .shop_table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #999;
  border-bottom: 2px solid #f0f0f0;
  white-space: nowrap;
}
.account-content-card .woocommerce-orders-table td,
.account-content-card .shop_table td {
  padding: 14px;
  border-bottom: 1px solid #f5f5f5;
  color: #444;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .account-content-card .woocommerce-orders-table td,
  .account-content-card .shop_table td {
    padding: 10px 12px;
  }
}
.account-content-card .woocommerce-orders-table tr:last-child td,
.account-content-card .shop_table tr:last-child td {
  border-bottom: none;
}
.account-content-card .woocommerce-orders-table tr:hover td,
.account-content-card .shop_table tr:hover td {
  background: #fafafa;
}
.account-content-card .woocommerce-orders-table .button,
.account-content-card .shop_table .button {
  font-size: 12px;
  padding: 6px 14px;
  white-space: nowrap;
}

mark.order-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: #f0f0f0;
  color: #666;
}
mark.order-status.status-completed {
  background: #e8f8ef;
  color: #27ae60;
}
mark.order-status.status-processing {
  background: rgb(206.7227722772, 246.3415841584, 250.2772277228);
  color: var(--primary, #12a9b8);
}
mark.order-status.status-on-hold {
  background: #fef9e7;
  color: #f39c12;
}
mark.order-status.status-cancelled, mark.order-status.status-refunded {
  background: #fdecea;
  color: #e74c3c;
}

.account-content-card .woocommerce-message,
.account-content-card .woocommerce-info {
  border-left: 4px solid var(--primary, #12a9b8);
  background: #e5f8fa;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #444;
  margin-bottom: 24px;
  list-style: none;
}
.account-content-card .woocommerce-error {
  border-left: 4px solid #e74c3c;
  background: #fdecea;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #444;
  margin-bottom: 24px;
  list-style: none;
}

.woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }
}

.woocommerce-Address {
  background: #f7f9fa;
  border: 1px solid #eef0f2;
  border-radius: 10px;
  padding: 24px;
}

.woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.woocommerce-Address-title h3 {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0;
  padding: 0;
  border: none;
}
.woocommerce-Address-title .edit {
  font-size: 12px;
  color: var(--primary, #12a9b8);
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-Address-title .edit:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.woocommerce-EditAccountForm,
.woocommerce-address-fields {
  max-width: 560px;
}
.woocommerce-EditAccountForm fieldset,
.woocommerce-address-fields fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}
.woocommerce-EditAccountForm fieldset legend,
.woocommerce-address-fields fieldset legend {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}
.woocommerce-EditAccountForm .form-row,
.woocommerce-EditAccountForm p.woocommerce-form-row,
.woocommerce-address-fields .form-row,
.woocommerce-address-fields p.woocommerce-form-row {
  margin-bottom: 18px;
  display: block;
}
.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last,
.woocommerce-address-fields .form-row-first,
.woocommerce-address-fields .form-row-last {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 9px);
}
@media (max-width: 768px) {
  .woocommerce-EditAccountForm .form-row-first,
  .woocommerce-EditAccountForm .form-row-last,
  .woocommerce-address-fields .form-row-first,
  .woocommerce-address-fields .form-row-last {
    display: block;
    width: 100%;
    margin-left: 0 !important;
  }
}
.woocommerce-EditAccountForm .form-row-last,
.woocommerce-address-fields .form-row-last {
  margin-left: 16px;
}
@media (max-width: 768px) {
  .woocommerce-EditAccountForm .form-row-last,
  .woocommerce-address-fields .form-row-last {
    margin-left: 0;
  }
}
.woocommerce-EditAccountForm .form-row-wide,
.woocommerce-address-fields .form-row-wide {
  display: block;
  width: 100%;
  clear: both;
}
.woocommerce-EditAccountForm .clear,
.woocommerce-address-fields .clear {
  clear: both;
  height: 0;
}
.woocommerce-EditAccountForm label,
.woocommerce-address-fields label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.woocommerce-EditAccountForm label abbr[title],
.woocommerce-EditAccountForm label .required,
.woocommerce-address-fields label abbr[title],
.woocommerce-address-fields label .required {
  text-decoration: none;
  color: var(--primary, #12a9b8);
  margin-left: 2px;
}
.woocommerce-EditAccountForm input[type=text],
.woocommerce-EditAccountForm input[type=email],
.woocommerce-EditAccountForm input[type=password],
.woocommerce-EditAccountForm input[type=tel],
.woocommerce-EditAccountForm select,
.woocommerce-address-fields input[type=text],
.woocommerce-address-fields input[type=email],
.woocommerce-address-fields input[type=password],
.woocommerce-address-fields input[type=tel],
.woocommerce-address-fields select {
  width: 100%;
  display: block;
}
.woocommerce-EditAccountForm span > em,
.woocommerce-EditAccountForm .woocommerce-Input-description,
.woocommerce-address-fields span > em,
.woocommerce-address-fields .woocommerce-Input-description {
  display: block;
  font-size: 11.5px;
  font-style: normal;
  color: #aaa;
  margin-top: 5px;
  line-height: 1.5;
}
.woocommerce-EditAccountForm #password_strength,
.woocommerce-address-fields #password_strength {
  margin-top: 6px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  background: #f0f0f0;
  color: #888;
  display: inline-block;
}
.woocommerce-EditAccountForm #password_strength.short,
.woocommerce-address-fields #password_strength.short {
  background: #fdecea;
  color: #e74c3c;
}
.woocommerce-EditAccountForm #password_strength.bad,
.woocommerce-address-fields #password_strength.bad {
  background: #fef9e7;
  color: #f39c12;
}
.woocommerce-EditAccountForm #password_strength.good,
.woocommerce-address-fields #password_strength.good {
  background: #e8f8ef;
  color: #27ae60;
}
.woocommerce-EditAccountForm #password_strength.strong,
.woocommerce-address-fields #password_strength.strong {
  background: #e8f8ef;
  color: #1a9147;
}
.woocommerce-EditAccountForm .woocommerce-password-hint,
.woocommerce-address-fields .woocommerce-password-hint {
  display: block;
  font-size: 11.5px;
  color: #aaa;
  margin-top: 5px;
}
.woocommerce-EditAccountForm .woocommerce-Button,
.woocommerce-EditAccountForm button[type=submit],
.woocommerce-EditAccountForm input[type=submit],
.woocommerce-address-fields .woocommerce-Button,
.woocommerce-address-fields button[type=submit],
.woocommerce-address-fields input[type=submit] {
  margin-top: 8px;
}

.account-avatar-section {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 2px solid #f0f0f0;
}

.account-avatar-upload {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .account-avatar-upload {
    gap: 16px;
  }
}
.account-avatar-upload__preview {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
  border: 3px solid #f0f0f0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .account-avatar-upload__preview {
    width: 72px;
    height: 72px;
  }
}
.account-avatar-upload__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s ease;
}
.account-avatar-upload__preview:hover img {
  filter: brightness(0.65);
}
.account-avatar-upload__preview:hover .account-avatar-upload__overlay {
  opacity: 1;
}
.account-avatar-upload__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.account-avatar-upload__overlay svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
}
@media (max-width: 768px) {
  .account-avatar-upload__overlay svg {
    width: 18px;
    height: 18px;
  }
}
.account-avatar-upload__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account-avatar-upload__label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0;
}
.account-avatar-upload__hint {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}
.account-avatar-upload__status {
  font-size: 12.5px;
  font-weight: 600;
  min-height: 18px;
}
.account-avatar-upload__status--success {
  color: #27ae60;
}
.account-avatar-upload__status--error {
  color: #e74c3c;
}
.account-avatar-upload__status--loading {
  color: var(--primary, #12a9b8);
}
.account-avatar-upload__remove {
  margin-top: 4px;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: #e74c3c;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s ease;
}
.account-avatar-upload__remove:hover {
  text-decoration-color: #e74c3c;
}

.dashboard-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  border: 1.5px solid transparent;
}
@media (max-width: 768px) {
  .dashboard-notice {
    gap: 12px;
    padding: 14px 16px;
    flex-wrap: wrap;
  }
}
.dashboard-notice__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dashboard-notice__icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}
.dashboard-notice__body {
  flex: 1;
  min-width: 0;
}
.dashboard-notice__body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.dashboard-notice__body span {
  display: block;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}
.dashboard-notice__cta {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.dashboard-notice__cta:hover {
  opacity: 0.85;
  text-decoration: none;
}
@media (max-width: 768px) {
  .dashboard-notice__cta {
    width: 100%;
    text-align: center;
  }
}
.dashboard-notice--offer {
  background: #e5f8fa;
  border-color: rgb(113.8118811881, 229.6782178218, 241.1881188119);
  color: rgb(13.4554455446, 126.3316831683, 137.5445544554);
}
.dashboard-notice--offer .dashboard-notice__icon {
  background: var(--primary, #12a9b8);
}
.dashboard-notice--offer .dashboard-notice__cta {
  background: var(--primary, #12a9b8);
  color: #fff;
}
.dashboard-notice--loyalty {
  background: #fffbe6;
  border-color: #f5c842;
  color: #7a5c00;
}
.dashboard-notice--loyalty .dashboard-notice__icon {
  background: #f5c842;
}
.dashboard-notice--loyalty .dashboard-notice__icon svg {
  stroke: #7a5c00;
}
.dashboard-notice--loyalty-progress {
  background: #f7f9fa;
  border-color: #e0e4e8;
  color: #555;
}
.dashboard-notice--loyalty-progress .dashboard-notice__icon {
  background: #cfd6de;
}
.dashboard-notice--loyalty-progress .dashboard-notice__icon svg {
  stroke: #fff;
}

.dashboard-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.dashboard-recently-viewed .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .dashboard-recently-viewed .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .dashboard-recently-viewed .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 380px) {
  .dashboard-recently-viewed .product-grid {
    grid-template-columns: 1fr;
  }
}

.review-page-intro {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.review-products-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-product-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: #f7f9fa;
  border: 1.5px solid #eef0f2;
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
@media (max-width: 768px) {
  .review-product-row {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px;
  }
}
.review-product-row:hover {
  border-color: var(--primary, #12a9b8);
}
.review-product-row__img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
}
.review-product-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-product-row__info {
  flex: 1;
  min-width: 0;
}
.review-product-row__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-product-row__name:hover {
  color: var(--primary, #12a9b8);
}
.review-product-row__meta {
  font-size: 12px;
  color: #999;
}
.review-product-row__stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.review-product-row__stars svg {
  width: 18px;
  height: 18px;
  stroke: #f5c842;
  fill: none;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .review-product-row__stars {
    display: none;
  }
}
.review-product-row__btn {
  flex-shrink: 0;
  font-size: 12px !important;
  padding: 8px 18px !important;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .review-product-row__btn {
    width: 100%;
    text-align: center;
  }
}

.btn-google-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  border: 1.5px solid #dadce0;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3c4043;
  text-decoration: none;
  transition: background 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  margin-bottom: 4px;
}
.btn-google-login:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #3c4043;
}
.btn-google-login svg {
  flex-shrink: 0;
}

.account-panel__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: #bbb;
  font-size: 12px;
}
.account-panel__divider::before, .account-panel__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}
.account-panel__divider span {
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-pagination {
  margin-top: 24px;
}
.woocommerce-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}
.woocommerce-pagination ul li a:hover, .woocommerce-pagination ul li a.current,
.woocommerce-pagination ul li span:hover,
.woocommerce-pagination ul li span.current {
  background: var(--primary, #12a9b8);
  border-color: var(--primary, #12a9b8);
  color: #fff;
}

/**
 * Thank you page
 */
/**
 * Thank You Page
 */
.thankyou-wrap {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 20px;
  font-family: inherit;
}
@media (max-width: 768px) {
  .thankyou-wrap {
    margin: 24px auto;
  }
}

.thankyou-hero {
  text-align: center;
  padding: 48px 32px 40px;
  background: linear-gradient(135deg, var(--primary, #12a9b8) 0%, var(--secondary, #1290ba) 100%);
  border-radius: 16px;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.thankyou-hero::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.thankyou-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.thankyou-hero h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
@media (max-width: 768px) {
  .thankyou-hero h2 {
    font-size: 1.4rem;
  }
}
.thankyou-hero p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}
.thankyou-hero--failed {
  background: linear-gradient(135deg, #e2401c 0%, #c0392b 100%);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.thankyou-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
}
.thankyou-icon--failed svg {
  width: 32px;
  height: 32px;
}

.thankyou-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .thankyou-details {
    grid-template-columns: 1fr 1fr;
  }
}

.thankyou-detail-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.thankyou-detail-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thankyou-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary, #12a9b8);
  display: block;
}

.thankyou-detail-label {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.thankyou-detail-value {
  font-size: 1rem;
  color: var(--text-color, #333);
  font-weight: 600;
  word-break: break-all;
}

.thankyou-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  padding: 28px 24px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #efefef;
}
@media (max-width: 768px) {
  .thankyou-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.thankyou-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .thankyou-step {
    flex-direction: row;
    gap: 12px;
  }
}
.thankyou-step span {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 500;
  white-space: nowrap;
}
.thankyou-step--done .thankyou-step-icon {
  background: var(--accent, #11ec5c);
  border-color: var(--accent, #11ec5c);
}
.thankyou-step--done .thankyou-step-icon svg {
  color: #fff;
}
.thankyou-step--done span {
  color: var(--text-color, #333);
  font-weight: 600;
}

.thankyou-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.thankyou-step-icon svg {
  width: 18px;
  height: 18px;
  color: #ccc;
}

.thankyou-step-connector {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  min-width: 24px;
  max-width: 60px;
  margin: 0 4px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .thankyou-step-connector {
    width: 2px;
    height: 24px;
    min-width: unset;
    max-width: unset;
    margin: 0 0 0 21px;
  }
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.thankyou-btn--primary {
  background: var(--primary, #12a9b8);
  color: #fff;
  border-color: var(--primary, #12a9b8);
}
.thankyou-btn--primary:hover {
  background: #0f8f9c;
  border-color: #0f8f9c;
  color: #fff;
}
.thankyou-btn--outline {
  background: transparent;
  color: var(--primary, #12a9b8);
  border-color: var(--primary, #12a9b8);
}
.thankyou-btn--outline:hover {
  background: var(--primary, #12a9b8);
  color: #fff;
}

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