/**
 * BOOKIX CART & WISHLIST SYSTEM - STYLES
 * All CSS for cart, wishlist, checkout, and product badges
 */

/* ====================================
   HIDE DEFAULT WOOCOMMERCE CART
   ==================================== */

.wc-block-mini-cart__drawer,
.wp-block-woocommerce-mini-cart-contents,
[class*="wc-block-mini-cart"][class*="drawer"],
.wc-block-mini-cart__drawer-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.wc-block-mini-cart--is-open {
    overflow: auto !important;
}

.wc-block-mini-cart__badge {
    display: none !important;
}

/* ====================================
   CUSTOM CART BADGE
   ==================================== */

.bookix-custom-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    z-index: 10;
    border: 2px solid white;
}

[data-block-name="woocommerce/mini-cart"],
.wc-block-mini-cart {
    position: relative !important;
}

.wc-block-mini-cart__button {
    position: relative !important;
}

/* ====================================
   CUSTOM HEADER CART ICON
   ==================================== */

.bookix-custom-cart-icon {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.bookix-custom-cart-icon:hover {
    transform: scale(1.05);
}

.bookix-custom-cart-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.bookix-custom-cart-badge-icon {
    position: absolute;
    top: 1px;
    right: 2px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    z-index: 10;
}

.bookix-custom-cart-badge-icon.show {
    display: flex;
}

/* ====================================
   MINI CART DROPDOWN
   ==================================== */

.bookix-mini-cart-dropdown {
    position: fixed;
    top: 0;
    left: -420px;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 30px rgba(0,0,0,0.15);
    z-index: 99999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    direction: rtl;
}

.bookix-mini-cart-dropdown.open {
    left: 0;
}

.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
    display: none;
    backdrop-filter: blur(2px);
}

.mini-cart-overlay.active {
    display: block;
}

.mini-cart-header {
    padding: 25px;
    background: linear-gradient(135deg, #1a8f8f, #2ba5a5);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(26, 143, 143, 0.2);
}

.mini-cart-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.mini-cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mini-cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.mini-cart-items::-webkit-scrollbar {
    width: 6px;
}

.mini-cart-items::-webkit-scrollbar-thumb {
    background: #1a8f8f;
    border-radius: 3px;
}

.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.mini-cart-empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.browse-products-btn {
    background: linear-gradient(135deg, #1a8f8f, #2ba5a5);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.browse-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 143, 143, 0.3);
    color: white;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
    padding-left: 35px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.cart-item-price {
    color: #1a8f8f;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item-remove {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff5722, #ff7043);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: linear-gradient(135deg, #d84315, #ff5722);
    transform: scale(1.1) rotate(90deg);
}

.mini-cart-footer {
    padding: 25px;
    background: white;
    border-top: 2px solid #f0f0f0;
}

.cart-balance-check {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.balance-row:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 2px solid #dee2e6;
}

.balance-label {
    color: #6c757d;
    font-weight: 500;
}

.balance-value {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.balance-value.total {
    font-size: 20px;
    color: #1a8f8f;
}

.balance-value.current {
    color: #495057;
}

.balance-value.after {
    color: #28a745;
}

.balance-value.insufficient {
    color: #dc3545;
}

.mini-cart-checkout-btn,
.mini-cart-buy-coins-btn {
    width: 100%;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mini-cart-checkout-btn {
    background: linear-gradient(135deg, #1a8f8f, #2ba5a5);
    margin-bottom: 10px;
}

.mini-cart-checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #2ba5a5, #1a8f8f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 143, 143, 0.35);
}

.mini-cart-checkout-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

.mini-cart-buy-coins-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #203737;
}

.mini-cart-buy-coins-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    color: #203737;
}

/* ====================================
   PRODUCT IN CART HIGHLIGHT
   ==================================== */

.product-in-cart {
    position: relative;
}

.product-in-cart .wc-block-grid__product-image {
    position: relative;
}

.product-in-cart .wc-block-grid__product-image::after {
    content: '✓ في السلة';
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #1a8f8f, #2ba5a5);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(26, 143, 143, 0.4);
    z-index: 6;
}

/* ====================================
   ALREADY PURCHASED MODAL
   ==================================== */

.already-purchased-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.already-purchased-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.modal-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.modal-btn {
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #203737;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-library {
    background: #1a8f8f;
    color: white;
}

.btn-library:hover {
    background: #2ba5a5;
    transform: translateY(-2px);
    color: white;
}

.btn-close-modal {
    background: #e0e0e0;
    color: #666;
}

.btn-close-modal:hover {
    background: #d0d0d0;
}

/* ====================================
   PRODUCT BADGES
   ==================================== */

.custom-product-badges-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.product-action-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: auto;
}

.custom-add-to-cart-icon,
.custom-wishlist-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #1a8f8f;
    position: relative;
}

.custom-add-to-cart-icon:hover,
.custom-wishlist-icon:hover {
    background: #1a8f8f;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(26, 143, 143, 0.3);
}

.custom-add-to-cart-icon.success {
    background: #4CAF50 !important;
    color: white !important;
}

.already-owned-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white !important;
    pointer-events: none;
}

.already-owned-badge svg {
    display: none;
}

.already-owned-badge::after {
    content: "✓";
    font-size: 20px;
    font-weight: bold;
}

.custom-wishlist-icon.active {
    background: #ff6b6b;
    color: white;
}

.custom-wishlist-icon.active svg {
    fill: currentColor;
}

/* ====================================
   WISHLIST BADGE
   ==================================== */

.wc-block-customer-wishlist__wishlist-icon {
    position: relative;
}

.wishlist-badge {
    position: absolute;
    top: -20px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.4);
    z-index: 10;
}

.wishlist-badge.hidden {
    display: none !important;
}

.wp-block-woocommerce-customer-wishlist {
    position: relative;
}

.wp-block-woocommerce-customer-wishlist a {
    position: relative;
    display: inline-block;
}

/* ====================================
   RATING SYSTEM
   ==================================== */

.product-rating-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 8px;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.product-rating-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 4px;
}

.rating-star {
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ddd;
}

.rating-star.active {
    color: #FFD700;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.rating-star:hover {
    transform: scale(1.2);
}

.rating-info {
    font-size: 11px;
    text-align: center;
    color: #666;
    font-weight: 600;
}

.rating-average {
    color: #1a8f8f;
}

.wc-block-grid__product-image {
    position: relative !important;
}

/* ====================================
   CHECKOUT PAGE
   ==================================== */

.bookix-checkout-page {
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;
    direction: rtl;
}

.checkout-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.checkout-header {
    background: linear-gradient(135deg, #1a8f8f, #2ba5a5);
    color: white;
    padding: 20px;
    text-align: center;
}

.checkout-header h1 {
    margin: 0 0 3px 0;
    font-size: 22px;
}

.checkout-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 13px;
}

.checkout-items {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    align-items: center;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.checkout-item-details {
    flex: 1;
    min-width: 0;
    padding-right: 30px;
}

.checkout-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: #2c3e50;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-item-price {
    color: #1a8f8f;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.checkout-item-remove {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkout-item-remove:hover {
    background: #d84315;
    transform: scale(1.1);
}

.checkout-summary {
    padding: 15px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
}

.summary-row.total-row {
    padding-top: 10px;
    border-top: 2px solid #1a8f8f;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1a8f8f;
}

.checkout-actions {
    padding: 15px;
}

.confirm-btn,
.buy-coins-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 143, 143, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}

.confirm-btn {
    background: linear-gradient(135deg, #1a8f8f, #2ba5a5);
    color: white;
    margin-bottom: 10px;
}

.confirm-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #2ba5a5, #1a8f8f);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(26, 143, 143, 0.4);
}

.confirm-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

.buy-coins-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #203737;
}

.buy-coins-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    color: #203737;
}

.checkout-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.checkout-notice.error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* ====================================
   WISHLIST PAGE
   ==================================== */

.bookix-wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    direction: rtl;
}

.wishlist-header {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.wishlist-header h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.wishlist-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 16px;
}

.wishlist-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 15px;
    font-weight: 600;
}

.wishlist-empty {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wishlist-empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.wishlist-empty h2 {
    color: #666;
    margin-bottom: 10px;
}

.wishlist-empty p {
    color: #999;
    margin-bottom: 30px;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.wishlist-product {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.wishlist-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.wishlist-product-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.wishlist-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-remove-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff5722, #ff7043);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
    z-index: 10;
}

.wishlist-remove-btn:hover {
    background: linear-gradient(135deg, #d84315, #ff5722);
    transform: scale(1.1) rotate(90deg);
}

.wishlist-product-details {
    padding: 20px;
}

.wishlist-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-product-price {
    color: #ff6b6b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wishlist-product-actions {
    display: flex;
    gap: 10px;
}

.wishlist-add-cart-btn {
    flex: 1;
    background: linear-gradient(135deg, #1a8f8f, #2ba5a5);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wishlist-add-cart-btn:hover {
    background: linear-gradient(135deg, #2ba5a5, #1a8f8f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 143, 143, 0.3);
}

.wishlist-add-cart-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

.wishlist-view-btn {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-view-btn:hover {
    background: white;
    border-color: #1a8f8f;
    color: #1a8f8f;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
    .bookix-mini-cart-dropdown {
        width: 100%;
        left: -100%;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .custom-add-to-cart-icon,
    .custom-wishlist-icon {
        width: 32px;
        height: 32px;
    }

    .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .wishlist-header h1 {
        font-size: 24px;
    }

    .wishlist-product-details {
        padding: 15px;
    }

    .wishlist-product-name {
        font-size: 14px;
    }

    .wishlist-product-actions {
        flex-direction: column;
    }
}
.already-owned-badge::after {
    content: "✓";
    font-size: 20px;
    font-weight: bold;
}