/**
 * Wishlist and Compare Styles
 * File: wishlist-compare.css
 */

.product-action-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

.action-icon {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.action-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-icon:active {
  transform: translateY(0);
}

.action-icon img {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.action-icon.in-wishlist,
.action-icon.in-compare {
  /* background: #eff3f3 !important;
  border: 1px solid #191919 !important; */
}

.action-icon.in-wishlist img,
.action-icon.in-compare img {
  filter: brightness(0) invert(1);
}

.action-icon.in-wishlist:hover,
.action-icon.in-compare:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.05);
}

.action-icon.compare-btn:hover {
  background: transparent;
  border: 1px solid #191919;
}

.action-icon.compare-btn:hover img {
  filter: brightness(0) invert(1);
}

.action-icon.wishlist-btn:hover {
  background: transparent;
  border: 1px solid #181818;
}

.action-icon.wishlist-btn:hover img {
  filter: brightness(0) invert(1);
}

.action-icon.wishlist-btn.in-wishlist:hover {
  background: transparent;
}

.action-icon.adding {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.action-icon:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.action-icon.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.action-icon.compare-btn::before {
  content: attr(data-count);
  position: absolute;
  top: 1px;
  right: 2px;
  background: var(--error-color);
  color: white;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  font-size: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.action-icon.compare-btn.has-items::before {
  opacity: 1;
  transform: scale(1);
}

.product-action-icons.horizontal {
  flex-direction: row;
  justify-content: flex-start;
}

.product-action-icons.vertical {
  flex-direction: column;
  align-items: center;
}

.product-action-icons.corner {
  position: relative;
  bottom: 1px;
  right: 2px;
  flex-direction: row-reverse;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.product-action-icons.corner .action-icon {
  width: 35px;
  height: 35px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 6px;
}

.product-action-icons.corner .action-icon img {
  width: 18px;
  height: 18px;
}

@media (prefers-color-scheme: dark) {
  .action-icon {
    background: #2a2a2a;
    color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
  }

  .action-icon img {
    filter: brightness(0) invert(1);
  }

  .action-icon.in-wishlist img,
  .action-icon.in-compare img {
    filter: brightness(0) invert(1);
  }
}

.woocommerce ul.products li.product {
  position: relative;
}

.woocommerce ul.products li.product .product-action-icons.corner {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover .product-action-icons.corner {
  opacity: 1;
}

.single-product .product-action-icons {
  margin: 20px 0;
  justify-content: flex-start;
  display: flex;
  flex-direction: row-reverse;
}

.product-action-icons.large .action-icon {
  width: 55px;
  height: 55px;
}

.product-action-icons.large .action-icon img {
  width: 28px;
  height: 28px;
}

.product-action-icons.small .action-icon svg {
  opacity: 0.9;
}

.product-action-icons.small .action-icon img {
  width: 18px;
  height: 18px;
}

.product-action-icons.square .action-icon {
  border-radius: 8px;
}

.product-action-icons.no-shadow .action-icon {
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.product-action-icons.colored .action-icon.compare-btn {
  background: #2196f3;
}

.product-action-icons.colored .action-icon.compare-btn img {
  filter: brightness(0) invert(1);
}

.product-action-icons.colored .action-icon.wishlist-btn {
  background: var(--error-color);
}

.product-action-icons.colored .action-icon.wishlist-btn img {
  filter: brightness(0) invert(1);
}

@media print {
  .product-action-icons {
    display: none !important;
  }
}

:root {
  --primary-color: #141ab4;
  --primary-hover: #0f1490;
  --success-color: #4caf50;
  --error-color: #f44336;
  --border-color: #e0e0e0;
  --text-color: #333;
  --bg-light: #f8f9fa;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

.product-actions-buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.wishlist-button-container,
.compare-button-container {
  flex: 1;
  min-width: 200px;
}

.wishlist-button,
.compare-button {
  width: 100%;
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 20px;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-sizing: border-box;
}

.wishlist-button:hover,
.compare-button:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 26, 180, 0.3);
}

.wishlist-button.in-wishlist,
.compare-button.in-compare {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.wishlist-button.in-wishlist:hover,
.compare-button.in-compare:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.wishlist-button:disabled,
.compare-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.wishlist-icon,
.compare-icon {
  font-size: 16px;
  line-height: 1;
  border: none;
  cursor: pointer;
}

.remove-from-wishlist:hover,
.remove-from-compare:hover {
  background: #d32f2f;
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

.remove-from-compare {
  position: absolute;
  top: 0px;
  right: -8px;
  width: 25px;
  height: 25px;
  font-size: 16px;
}

.compare-actions {
  margin: 20px 0;
}
button#clearCompare {
  background: var(--main-color-white);
  border: 1px solid var(--main-color-primary);
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 11px;
  font-weight: 700;
  color: var(--main-color-primary);
  cursor: pointer;
  transition: all 0.3s;
  width: 204px;
  height: 45px;
  font-family: "ActayWide", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.clear-compare-btn:hover {
  background: #d32f2f;
  transform: translateY(-2px);
}

.woocommerce-message {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.woocommerce-message p {
  margin: 0 0 10px 0;
  color: #000000;
  font-weight: 500;
  font-size: 15px;
}

.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
  height: 35px;
  background: #ffd50c;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 13px;
  color: #191919;
  transition: all 0.3s ease;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: "ActayWide", sans-serif;
}

.woocommerce-message .button {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.woocommerce-message .button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  color: white;
}

.wishlist-compare-notification {
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.woocommerce-MyAccount-navigation ul li a {
  transition: var(--transition);
}

.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--main-color-primary);
  background: none;
  font-weight: 600;
}

.wishlist-button .wishlist-icon,
.compare-button .compare-icon {
  transition: var(--transition);
}

.wishlist-button.in-wishlist .wishlist-icon {
  animation: heartBeat 0.6s ease;
}

.compare-button.in-compare .compare-icon {
  animation: scaleUp 0.4s ease;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1.25);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.wishlist-loading,
.compare-loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.wishlist-loading::after,
.compare-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.compare_table .star-rating {
  margin: 0 auto;
  font-size: 14px;
}

.compare_table .star-rating span {
  color: #ffb900;
}

.woocommerce ul.products li.product {
  position: relative;
}

.loop-product-actions {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover .loop-product-actions {
  opacity: 1;
}

.wishlist-button:focus,
.compare-button:focus,
.loop-wishlist-button:focus,
.loop-compare-button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.wishlist_table .product-name,
.compare_table .compare-product-header h4 {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loop-product-actions button {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.wishlist_table {
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-color: #e0e0e0;
    --bg-light: #2a2a2a;
    --border-color: #404040;
  }

  .wishlist_table,
  .compare_table,
  .woocommerce-message {
    /* background: #1a1a1a;
    color: var(--text-color); */
    /* background: red; */
  }

  .wishlist_table th,
  .compare_table th.compare-feature,
  .compare_table td.compare-feature {
    background: var(--bg-light);
    color: #1a1a1a;
  }

  .loop-wishlist-button,
  .loop-compare-button {
    background: rgba(26, 26, 26, 0.9);
    border-color: #404040;
  }
}

@media print {
  .remove-from-wishlist,
  .remove-from-compare,
  .clear-compare-btn,
  .wishlist-button,
  .compare-button,
  .loop-product-actions {
    display: none !important;
  }

  .wishlist_table,
  .compare_table {
    box-shadow: none;
    border: 1px solid #000;
  }
}

.loop-product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.loop-wishlist-button,
.loop-compare-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.loop-wishlist-button:hover,
.loop-compare-button:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.loop-wishlist-button.in-wishlist,
.loop-compare-button.in-compare {
  background: var(--primary-color);
  color: #fff;
}

.loop-wishlist-button.in-wishlist:hover,
.loop-compare-button.in-compare:hover {
  background: var(--primary-hover);
}

.wishlist-counter,
.compare-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--error-color);
  color: white;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  font-size: 7px;
  font-weight: 400;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  display: none;
  align-content: center;
}

.wishlist_table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wishlist_table th,
.wishlist_table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.wishlist_table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wishlist_table tbody tr {
  transition: var(--transition);
}

.wishlist_table tbody tr:hover {
  background: #f9f9f9;
}

.wishlist_table .product-remove {
  width: 50px;
  text-align: center;
}

.wishlist_table .product-thumbnail {
  width: 80px;
}

.wishlist_table .product-thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.wishlist_table .product-name {
  min-width: 200px;
}

.wishlist_table .product-name a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.wishlist_table .product-name a:hover {
  color: var(--primary-color);
}

.wishlist_table .product-price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 16px;
}

.wishlist_table .product-stock-status .in-stock {
  color: var(--success-color);
  font-weight: 500;
}

.wishlist_table .product-stock-status .out-of-stock {
  color: var(--error-color);
  font-weight: 500;
}

.wishlist_table .product-add-to-cart .button {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.wishlist_table .product-add-to-cart .button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.wishlist_table .product-add-to-cart .button.disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.compare_table th,
.compare_table td {
  /* padding: 15px; */
  text-align: center;
  border: 1px solid #e4e4e4;
  vertical-align: middle;
  background: #fff;
  color: #191919;
  font-size: 12px;
}

.compare_table th.compare-feature,
.compare_table td.compare-feature {
  background: #ffffff;
  font-weight: 600;
  text-align: left;
  width: 200px;
  /* min-width: 200px; */
}

.compare_table th.compare-product {
  background: #fff;
  min-width: 150px;
}

.compare-product-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.compare-product-header img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.compare-product-header h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

.compare-product-header h4 a {
  color: #000000;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  font-size: 12px;
}

.compare-product-header h4 a:hover {
  color: var(--primary-color);
}

.compare_table .price {
  font-weight: 600;
  color: #2b2b2b;
  font-size: 16px;
}

.compare_table .in-stock {
  color: var(--success-color);
  font-weight: 500;
}

.compare_table .out-of-stock {
  color: var(--error-color);
  font-weight: 500;
}

.compare_table .no-rating {
  color: #999;
  font-style: italic;
}

.remove-from-wishlist,
.remove-from-compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #000000;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  transition: var(--transition);
}

.product-cart-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  margin-left: 10px;
  z-index: 5;
}

.product-cart-actions .cart-action-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  border: 1px solid #a6a6a6;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-cart-actions .cart-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-cart-actions .cart-action-btn:active {
  transform: translateY(0);
}

.product-cart-actions .cart-action-btn svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.product-cart-actions .cart-action-btn.in-wishlist,
.product-cart-actions .cart-action-btn.in-compare {
  background: #eff3f3;
  border: 1px solid #191919;
}

.product-cart-actions .cart-action-btn.in-wishlist svg,
.product-cart-actions .cart-action-btn.in-compare svg {
  color: white;
}

.product-cart-actions .cart-action-btn.in-wishlist:hover,
.product-cart-actions .cart-action-btn.in-compare:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.05);
}

.product-cart-actions .cart-action-btn.compare-btn:hover {
  background: transparent;
  border: 1px solid #191919;
}

.product-cart-actions .cart-action-btn.compare-btn:hover svg {
  color: white;
}

.product-cart-actions .cart-action-btn.wishlist-btn:hover {
  background: transparent;
  border: 1px solid #191919;
}

.product-cart-actions .cart-action-btn.wishlist-btn:hover svg {
  color: white;
}

.product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist {
  background: #eff3f3;
  border: 1px solid #191919;
}
.product-cart-actions .cart-action-btn.in-wishlist,
.product-cart-actions .cart-action-btn.in-compare svg {
  opacity: 0.9;
}
.product-cart-actions .cart-action-btn.wishlist-btn.in-wishlist:hover {
  background: transparent;
}

.product-cart-actions .cart-action-btn.adding {
  animation: pulse 0.6s ease-in-out;
}

.product-cart-actions .cart-action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.product-cart-actions .cart-action-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.product-cart-actions .cart-action-btn.compare-btn::before {
  content: attr(data-count);
  position: absolute;
  top: 2px;
  right: 1px;
  background: var(--error-color);
  color: white;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  font-size: 7px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.product-cart-actions .cart-action-btn.compare-btn.has-items::before {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-color-scheme: dark) {
  .product-cart-actions .cart-action-btn svg {
    color: #a6a6a6;
  }

  .product-cart-actions .cart-action-btn.in-wishlist svg,
  .product-cart-actions .cart-action-btn.in-compare svg {
    color: white;
  }
}

/* Wishlist Grid Styles */
.wishlist-items-grid {
  margin-top: 0;
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
  /* display: none; */
}

.wishlist-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-color-wishlist);
  border-bottom: 1px solid var(--border-color-wishlist);
  /* margin-bottom: 40px; */
}

@media (max-width: 1024px) {
  .wishlist-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .wishlist-grid-container {
    grid-template-columns: 1fr;
  }
}

.wishlist-grid-item {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  /* border-right: none; */
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wishlist-grid-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.wishlist-grid-item .grid-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 35px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 300;
  color: #ababab;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-grid-item .grid-remove:hover {
  background: #fff;
  color: #e74c3c;
  border-color: #e74c3c;
  transform: scale(1.1);
}

.wishlist-product-link {
  display: block;
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}

.wishlist-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 25px 0;
  justify-content: center;
}

.wishlist-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.wishlist-grid-item:hover .wishlist-product-image img {
  transform: scale(1.05);
}

.out-of-stock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.wishlist-product-info {
  padding: 16px;
  height: 150px;
  display: flex;
  flex-direction: column;
}

.wishlist-product-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  min-height: 40px;
}

.wishlist-product-stock-status {
  font-weight: 500;
  font-size: 11px;
  display: flex;
  color: #a6a6a6;
  align-content: center;
  padding-top: 3px;
}

.wishlist-product-title a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #191919;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wishlist-product-details {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  margin-top: 20px;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin-top: auto;
}

.wishlist-product-stock-status span {
  font-weight: 500;
  font-size: 12px;
  display: flex;
  color: #a6a6a6;
  justify-content: center;
  gap: 2px;
}

.wishlist-product-title a:hover {
  color: #0066cc;
}

/* ÃƒÂÃ‚Â¦ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â° */
.wishlist-product-price {
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 600;
  color: #191919;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wishlist-product-price ins {
  font-weight: 700;
}

.wishlist-product-price .amount {
  color: #191919;
  /* min-height: 52px; */
}

.wishlist-product-price del {
  opacity: 0.5;
  font-size: 14px;
  margin-right: 5px;
  font-weight: 400;
  text-decoration: line-through;
}

.wishlist-product-rating {
  margin-bottom: 15px;
}

.wishlist-product-rating .star-rating {
  font-size: 14px;
}

.wishlist-product-actions {
  margin-top: 20px;
}

button.button.add_to_cart_button.ajax_add_to_cart:before {
  content: "";
  position: absolute;
  left: 33px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(/wp-content/themes/slava/img/product/shopcart.svg) no-repeat
    center;
  background-size: contain;
}

.wishlist-product-actions .button {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wishlist-product-actions .button:not(.disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.wishlist-product-actions .button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wishlist-total-info {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 18px;
  flex-direction: column-reverse;
}

.wishlist-total-label {
  color: #666;
}

.wishlist-total-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color-primary);
  white-space: nowrap;
}
.wishlist-total-price bdi {
  white-space: nowrap;
}

.wishlist-total-count {
  color: #a6a6a6;
  font-size: 10px;
}

button#clearWishlist:hover {
  color: #dc3545;
}

button#clearWishlist span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.add-all-to-cart {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-all-to-cart:hover:not(:disabled) {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.add-all-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.add-all-to-cart.loading {
  position: relative;
  color: transparent;
}

.add-all-to-cart.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.wishlist-grid-item .add_to_cart_button.added {
  background: #28a745;
}

.wishlist-grid-item .add_to_cart_button.added::after {
  content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
  margin-left: 5px;
}

button.button.add_to_cart_button.ajax_add_to_cart {
  background: #ffd50c;
  color: #191919;
  border: none;
  border-radius: 6px;
  padding: 11px 16px;
  font-size: 11px;
  display: flex;
  font-weight: 400;
  gap: 8px;
  min-width: 136px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  align-items: center;
  position: relative;
  justify-content: center;
}

.woocommerce-MyAccount-navigation-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.myaccount-menu-icon {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.woocommerce-MyAccount-navigation-link a {
  color: #666;
}

.woocommerce-MyAccount-navigation-link .myaccount-menu-icon {
  color: #a6a6a6;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  color: #191919;
  font-weight: 600;
}

.woocommerce-MyAccount-navigation-link.is-active .myaccount-menu-icon {
  color: var(--main-color-primary);
}

.woocommerce-MyAccount-navigation-link a:hover {
  color: #191919;
  background-color: #f5f5f5;
}
table.compare_table strong {
  font-weight: 600;
}

a.button.add_to_cart_button {
  /* height: 35px;
  background: #ffd50c;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  line-height: 13px;
  color: var(--product-color-primary);
  transition: all 0.3s ease;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: "ActayWide", sans-serif; */
}

.woocommerce-MyAccount-navigation-link a:hover .myaccount-menu-icon {
  color: var(--main-color-primary);
  transform: translateX(2px);
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  color: #dc3545;
}

.woocommerce-MyAccount-navigation-link--customer-logout
  a:hover
  .myaccount-menu-icon {
  color: #dc3545;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
  margin: 0;
}

.woocommerce-MyAccount-navigation-link {
  margin-bottom: 4px;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  background: transparent;
  color: var(--main-color-primary);
}

.woocommerce-message.woocommerce-message--info {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-direction: column;
}
.woocommerce-message.woocommerce-message--info p {
  color: #191919 !important;
}
.u-columns.woocommerce-Addresses.col2-set.addresses {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  width: 100%;
  float: none;
  gap: 30px;
  display: flex;
  justify-content: flex-start;
}

.u-column2.col-2.woocommerce-Address {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-direction: row;
}
