  .hso-quantum-login-based-wishlist-share {
    text-align: right;
    margin-bottom: 20px;
  }

  .hso-quantum-login-based-wishlist-shared-banner {
    background: #F8F9FA;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    color: #666;
  }


  /* Move to Cart button */
  .hso-quantum-login-based-wishlist-move-to-cart {
    background: var(--move-to-cart-bg-color, #4A90E2) !important;
    color: var(--move-to-cart-text-color, white) !important;
    border: 1px solid var(--move-to-cart-border-color, #4A90E2);
    padding: 8px 18px;
    border-radius: var(--move-to-cart-border-radius, 8px);
    cursor: pointer;
    font-size: var(--move-to-cart-font-size, 14px);
    font-weight: 500;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    transition: all 0.2s ease;
    width: 100%;
    letter-spacing: 0.5px;
    margin-top: 15px;
    margin-bottom: 10px !important;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .hso-quantum-login-based-wishlist-move-to-cart:hover {
    background: var(--move-to-cart-bg-color-hover, #357ABD) !important;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
    transform: translateY(-1px);
  }
  
  .hso-quantum-login-based-wishlist-move-to-cart:disabled {
    background: #E0E0E0 !important;
    border-color: #E0E0E0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }
  
  .hso-quantum-login-based-wishlist-move-to-cart .button-icon {
    display: inline-block;
    vertical-align: middle;
  }

  /* Bottom action buttons container */
  .hso-quantum-login-based-wishlist-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 32px;
    padding: 0 16px;
  }

  /* Share Wishlist button */
  .hso-quantum-login-based-wishlist-share-button {
    background: var(--share-button-bg-color, white);
    color: var(--share-button-text-color, #4A90E2);
    border: 1px solid var(--share-button-border-color, #4A90E2);
    padding: 8px 18px;
    border-radius: var(--share-button-border-radius, 8px);
    cursor: pointer;
    font-size: var(--share-button-font-size, 14px);
    font-weight: 500;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
  }
  
  .hso-quantum-login-based-wishlist-share-button:hover {
    background: var(--share-button-hover-bg, #F5F9FF);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
  }
  
  .hso-quantum-login-based-wishlist-share-button .button-icon {
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
  }

  /* Move All to Cart button */
  .hso-quantum-login-based-wishlist-move-all {
    background: var(--move-to-cart-bg-color, #4A90E2);
    color: var(--move-to-cart-text-color, white);
    border: 1px solid var(--move-to-cart-border-color, #4A90E2);
    padding: 8px 18px;
    border-radius: var(--move-to-cart-border-radius, 8px);
    cursor: pointer;
    font-size: var(--move-to-cart-font-size, 14px);
    font-weight: 500;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .hso-quantum-login-based-wishlist-move-all:hover {
    background: var(--move-to-cart-bg-color-hover, #357ABD);
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
    transform: translateY(-1px);
  }

  .hso-quantum-login-based-wishlist-move-all:disabled {
    background: #E0E0E0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }

  .hso-quantum-wishlist-page-container {
    position: relative;
    width: 100%;
  }

  /* Adjust existing button styles to look better in the header */
  .hso-quantum-login-based-wishlist-share-button,
  .hso-quantum-login-based-wishlist-move-all {
    padding: 8px 16px;  /* Slightly smaller padding for header placement */
    font-size: 13px;    /* Slightly smaller font size */
  }

  /* Container styles */
  .hso-quantum-login-based-wishlist-actions {
    width: 100%;
    margin: 0 auto;  /* Center the container */
    margin-top: 30px;
  }

  .hso-quantum-login-based-wishlist-sold-out {
    background-color: var(--sold-out-bg-color, #f5f5f5);
    color: var(--sold-out-text-color, #dc2626);
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--sold-out-border-radius, 8px);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--sold-out-border-color, #dc2626);
    letter-spacing: 0.5px;
    font-size: var(--sold-out-font-size, 14px);
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
  }

  /* Apply the same max-width constraints to both wrapper and actions */
  @media (min-width: 1536px) {
    .hso-quantum-login-based-wishlist-actions {
      max-width: 1536px;
    }
  }

  @media (max-width: 1280px) {
    .hso-quantum-login-based-wishlist-actions {
      max-width: 1280px;
    }
  }

  @media (max-width: 1024px) {
    .hso-quantum-login-based-wishlist-actions {
      max-width: 1024px;
    }

  }

  @media (max-width: 768px) {
    .hso-quantum-login-based-wishlist-actions {
      max-width: 768px;
    }
  }

  /* Add this style for the product cards */
  .hso-quantum-login-based-wishlist-product {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
  }

  /* Adjust the content container */
  .hso-quantum-login-based-wishlist-product__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
  }

  /* Style for the top part of the content (title and price) */
  .hso-quantum-login-based-wishlist-product__info {
    flex-grow: 1;
  }

  /* Update the button and sold out styles */
  .hso-quantum-login-based-wishlist-move-to-cart,
  .hso-quantum-login-based-wishlist-sold-out {
    margin-top: auto;
    width: 100%;
  }

    /* Add this style for the product title */
  .hso-quantum-login-based-wishlist-product__content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  /* Make sure the link inherits these properties */
  .hso-quantum-login-based-wishlist-product__content h3 a {
    text-decoration: none;
    color: inherit;
  }

  /* Wishlist Page Guest user Banner */
  .hso-quantum-login-based-wishlist-guest-banner {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    /* border-radius: 12px; */
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .guest-banner-content {
    text-align: center;
  }
  
  .guest-banner-content p {
    font-size: 16px;
    color: #343a40;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  
  .guest-banner-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .guest-banner-content ul li {
    font-size: 15px;
    color: #495057;
    position: relative;
    padding-left: 20px;
    flex: 0 1 auto;
  }
  
  .guest-banner-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
  }
  
  .guest-banner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .guest-banner-button {
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 500;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .guest-banner-button.primary {
    background-color: #0d6efd;
    color: white;
    border: 1px solid #0d6efd;
  }
  
  .guest-banner-button.primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
  }
  
  .guest-banner-button.secondary {
    background-color: white;
    color: #0d6efd;
    border: 1px solid #0d6efd;
  }
  
  .guest-banner-button.secondary:hover {
    background-color: #f8f9fa;
  }
  
  @media (max-width: 768px) {
    .guest-banner-buttons {
      flex-direction: column;
    }
  
    .guest-banner-content ul {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .guest-banner-content ul li {
      margin-bottom: 8px;
    }
  }

  /* --- variant option modal ----  */
  .quantum-variant-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
  }

  .quantum-variant-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .quantum-variant-modal-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
  }

  .quantum-variant-modal-product {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
  }

  .quantum-variant-modal-product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }

  .quantum-variant-product-info h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
  }

  .quantum-variant-product-price {
    font-size: 18px;
    font-weight: 500;
  }

  .quantum-variant-product-price span + span {
    margin-left: 8px;
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
  }

  .quantum-variant-options {
    margin: 20px 0;
  }

  .quantum-variant-option-group {
    margin-bottom: 16px;
  }

  .quantum-variant-option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .quantum-variant-option-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #000;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23000000' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E") no-repeat;
    background-position: right 16px center; /* Adjusted position - increase 16px for more padding */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s;
  }

  .quantum-variant-quantity {
    margin: 20px 0;
  }

  .quantum-variant-quantity-selector {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    margin-top: 8px;
  }

  .quantum-qty-btn {
    width: 62px;
    height: 40px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #quantum-variant-qty {
    width: 100%;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .quantum-variant-add-btn {
    width: 100%;
    padding: 14px;
    background: var(--move-to-cart-bg-color, #5271FF);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    cursor: pointer;
    position: relative;
  }

  .quantum-variant-add-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  .btn-loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  @keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
  }

  /* --- Share wishlist modal --- */
  .quantum-share-wishlist-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .quantum-share-wishlist-modal-content {
    background: white;
    padding: 24px 20px;
    border-radius: 8px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .quantum-share-wishlist-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .quantum-share-wishlist-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    color: #333;
  }

  .quantum-share-wishlist-close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quantum-share-wishlist-close-button:hover svg path {
    fill: #666;
  }

  .quantum-share-wishlist-close-button svg path {
    height: 17px;
    width: 17px;
    fill: #333;
    transition: fill 0.2s ease;
  }

  .share-url-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
  }

  .share-url-container input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: var(--move-to-cart-border-radius, 8px);
    font-size: 16px;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    color: #333;
    background: #f8f8f8;
  }

  .share-url-container input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
  }

  #modalCopyButton {
    padding: 10px 20px;
    border: none;
    border-radius: var(--move-to-cart-border-radius, 8px);
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    transition: background 0.2s ease;
  }

  #modalCopyButton:hover {
    background: #0056b3;
  }

  .expiry-text {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    color: #666;
  }