/* Wisly Custom Styles - High Priority CSS */

/* Admin Tab Styles */
.tab-content { 
    display: none !important; 
}
.tab-content.active { 
    display: block !important; 
}
.nav-tab.nav-tab-active { 
    font-weight: bold !important; 
}

/* Toast Notification Styles */
.asw-toast {
    position: fixed !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #222 !important;
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 6px !important;
    z-index: 9999 !important;
    font-size: 16px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
    display: none !important;
    max-width: 90% !important;
    text-align: center !important;
}
.asw-toast.success {
    background: #27ae60 !important;
}
.asw-toast.error {
    background: #e74c3c !important;
}
.asw-toast .asw-view-wishlist-link {
    color: #fff !important;
    text-decoration: underline !important;
    margin-left: 10px !important;
    font-weight: bold !important;
}
.asw-toast .asw-view-wishlist-link:hover {
    color: #f0f0f0 !important;
}

/* Wishlist Table Styles */
.asw-wishlist-table-wrapper {
    overflow-x: auto !important;
    margin: 20px 0 !important;
}

.asw-wishlist-table {
    width: 100% !important;
    border-collapse: collapse !important;
    background: white !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.asw-wishlist-table th {
    background: #f8f9fa !important;
    padding: 15px 10px !important;
    text-align: left !important;
    font-weight: 600 !important;
    color: #333 !important;
    border-bottom: 2px solid #e9ecef !important;
}

.asw-wishlist-table td {
    padding: 15px 10px !important;
    border-bottom: 1px solid #e9ecef !important;
    vertical-align: top !important;
}

.asw-wishlist-table tr:hover {
    background: #f8f9fa !important;
}

.asw-wishlist-table tr:last-child td {
    border-bottom: none !important;
}

.asw-product-image img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
}

.asw-product-name h4 {
    margin: 0 0 8px 0 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

.asw-product-name h4 a {
    color: #333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.asw-product-name h4 a:hover {
    color: #e74c3c !important;
}

.asw-product-description {
    margin: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.4 !important;
}

.asw-product-price {
    font-weight: 600 !important;
    font-size: 16px !important;
}

.asw-price-drop {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.asw-old-price {
    text-decoration: line-through !important;
    color: #999 !important;
    font-size: 14px !important;
    font-weight: normal !important;
}

.asw-new-price {
    color: #e74c3c !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.asw-discount-badge {
    background: #e74c3c !important;
    color: white !important;
    padding: 2px 6px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    align-self: flex-start !important;
}

.asw-stock-status {
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}

.asw-stock-status.in-stock {
    background: #d4edda !important;
    color: #155724 !important;
   
}

.asw-stock-status.out-of-stock {
    background: #f8d7da !important;
    color: #721c24 !important;
    white-space: nowrap !important;
}

.asw-stock-status.on-backorder {
    background: #fff3cd !important;
    color: #856404 !important;
}

.asw-product-date {
    font-size: 14px !important;
    color: #666 !important;
}

.asw-action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.asw-add-to-cart-btn {
    background: #28a745 !important;
    color: white !important;
    border: none !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: background 0.3s ease !important;
}

.asw-add-to-cart-btn:hover {
    background: #218838 !important;
}

.asw-remove-wishlist-btn {
    background: #dc3545 !important;
    color: white !important;
    border: none !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: background 0.3s ease !important;
}

.asw-remove-wishlist-btn:hover {
    background: #c82333 !important;
}

/* Wishlist Page Styles */
.asw-wishlist-page {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
}

.asw-wishlist-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 2px solid #e9ecef !important;
}

.asw-wishlist-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 !important;
}

.asw-wishlist-actions {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
}

.asw-share-btn {
    background: #007cba !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.asw-share-btn:hover {
    background: #005a87 !important;
    color: white !important;
    text-decoration: none !important;
}

.asw-add-all-btn {
    background: #28a745 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.asw-add-all-btn:hover {
    background: #218838 !important;
    color: white !important;
    text-decoration: none !important;
}

.asw-wishlist-stats {
    display: flex !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
    padding: 20px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
}

.asw-stat-item {
    text-align: center !important;
}

.asw-stat-number {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #e74c3c !important;
    display: block !important;
}

.asw-stat-label {
    font-size: 14px !important;
    color: #666 !important;
    margin-top: 5px !important;
}

.asw-empty-wishlist {
    text-align: center !important;
    padding: 60px 20px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    margin: 30px 0 !important;
}

.asw-empty-icon {
    font-size: 48px !important;
    color: #ccc !important;
    margin-bottom: 20px !important;
}

.asw-empty-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
}

.asw-empty-message {
    font-size: 16px !important;
    color: #666 !important;
    margin-bottom: 30px !important;
}

.asw-shop-btn {
    background: #007cba !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: background 0.3s ease !important;
    display: inline-block !important;
}

.asw-shop-btn:hover {
    background: #005a87 !important;
    color: white !important;
    text-decoration: none !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .asw-wishlist-table {
        font-size: 14px !important;
    }
    
    .asw-wishlist-table th,
    .asw-wishlist-table td {
        padding: 10px 8px !important;
    }
    
    .asw-product-image img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .asw-product-name h4 {
        font-size: 14px !important;
    }
    
    .asw-product-description {
        font-size: 12px !important;
    }
    
    .asw-action-buttons {
        flex-direction: row !important;
        gap: 6px !important;
    }
    
    .asw-add-to-cart-btn,
    .asw-remove-wishlist-btn {
        padding: 6px 8px !important;
        font-size: 12px !important;
    }
    
    .asw-wishlist-header {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }
    
    .asw-wishlist-actions {
        justify-content: center !important;
    }
    
    .asw-wishlist-stats {
        flex-direction: column !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .asw-wishlist-table th:nth-child(3),
    .asw-wishlist-table td:nth-child(3),
    .asw-wishlist-table th:nth-child(4),
    .asw-wishlist-table td:nth-child(4) {
        display: none !important;
    }
    
    .asw-product-image img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .asw-action-buttons {
        flex-direction: column !important;
        gap: 4px !important;
    }
    
    .asw-wishlist-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
}

/* Loading states */
.asw-wishlist-row.loading {
    opacity: 0.6 !important;
    pointer-events: none !important;
}

.asw-wishlist-row.loading::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 20px !important;
    height: 20px !important;
    margin: -10px 0 0 -10px !important;
    border: 2px solid #f3f3f3 !important;
    border-top: 2px solid #e74c3c !important;
    border-radius: 50% !important;
    animation: asw-spin 1s linear infinite !important;
}

@keyframes asw-spin {
    0% { transform: rotate(0deg) !important; }
    100% { transform: rotate(360deg) !important; }
}

/* RTL support */
.rtl .asw-wishlist-table th,
.rtl .asw-wishlist-table td {
    text-align: right !important;
}

/* Accessibility */
.asw-wishlist-table:focus-within {
    outline: 2px solid #e74c3c !important;
    outline-offset: 2px !important;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .asw-wishlist-table {
        border: 2px solid currentColor !important;
    }
    
    .asw-wishlist-table th,
    .asw-wishlist-table td {
        border: 1px solid currentColor !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .asw-wishlist-table tr {
        transition: none !important;
    }
    
    .asw-wishlist-table tr:hover {
        background: inherit !important;
    }
}

/* Wishlist Page Styles */
.asw-wishlist-manager {
    background: #f8f9fa !important;
    padding: 20px !important;
    border-radius: 8px !important;
    margin-bottom: 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.asw-wishlist-selector select {
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    min-width: 200px !important;
}

.asw-wishlist-actions {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.asw-wishlist-actions button {
    padding: 8px 16px !important;
    border: 1px solid #007cba !important;
    background: #007cba !important;
    color: white !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.asw-wishlist-actions button:hover {
    background: #005a87 !important;
    border-color: #005a87 !important;
}

.asw-price-drops-section {
    background: #fff3cd !important;
    border: 1px solid #ffeaa7 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 30px !important;
}

.asw-wishlist-content {
    background: white !important;
    border-radius: 8px !important;
    padding: 30px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.asw-wishlist-title {
    margin: 0 0 30px 0 !important;
    color: #333 !important;
    font-size: 28px !important;
}

.asw-empty-wishlist {
    text-align: center !important;
    padding: 60px 20px !important;
}

.asw-empty-wishlist p {
    font-size: 18px !important;
    color: #666 !important;
    margin-bottom: 20px !important;
}

.asw-wishlist-actions-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 30px !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.asw-add-all-to-cart {
    background: #28a745 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    transition: background 0.3s ease !important;
}

.asw-add-all-to-cart:hover {
    background: #218838 !important;
}

.asw-share-wishlist {
    position: relative !important;
}

.asw-share-btn {
    background: #6c757d !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    transition: background 0.3s ease !important;
}

.asw-share-btn:hover {
    background: #5a6268 !important;
}

.asw-share-options {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 1000 !important;
    min-width: 150px !important;
}

.asw-share-options a {
    display: block !important;
    padding: 10px 15px !important;
    text-decoration: none !important;
    color: #333 !important;
    border-bottom: 1px solid #eee !important;
    transition: background 0.3s ease !important;
}

.asw-share-options a:last-child {
    border-bottom: none !important;
}

.asw-share-options a:hover {
    background: #f8f9fa !important;
}

/* Modal Styles */
.asw-modal {
    display: none !important;
    position: fixed !important;
    z-index: 1000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    background-color: rgba(0,0,0,0.4) !important;
}

.asw-modal-content {
    background-color: #fefefe !important;
    margin: 15% auto !important;
    padding: 20px !important;
    border: 1px solid #888 !important;
    width: 80% !important;
    max-width: 500px !important;
    border-radius: 8px !important;
    position: relative !important;
}

.asw-modal-close {
    color: #aaa !important;
    float: right !important;
    font-size: 28px !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

.asw-modal-close:hover,
.asw-modal-close:focus {
    color: black !important;
    text-decoration: none !important;
}

.asw-form-group {
    margin-bottom: 15px !important;
}

.asw-form-group label {
    display: block !important;
    margin-bottom: 5px !important;
    font-weight: bold !important;
}

.asw-form-group input {
    width: 100% !important;
    padding: 8px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
}

.asw-form-actions {
    display: flex !important;
    gap: 10px !important;
    justify-content: flex-end !important;
    margin-top: 20px !important;
}

.asw-delete-btn {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
}

.asw-delete-btn:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
}

/* Social Sharing Styles */
.asw-share-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.asw-share-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 16px !important;
}

.asw-share-facebook {
    background-color: #3b5998 !important;
}

.asw-share-twitter {
    background-color: #1da1f2 !important;
}

.asw-share-whatsapp {
    background-color: #25d366 !important;
}

.asw-share-email {
    background-color: #ea4335 !important;
}

.asw-share-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Alternative social sharing styles */
.asw-share-buttons.asw-share-square .asw-share-btn {
    border-radius: 6px !important;
    width: 45px !important;
    height: 45px !important;
}

.asw-share-buttons.asw-share-text .asw-share-btn {
    border-radius: 20px !important;
    width: auto !important;
    height: 35px !important;
    padding: 0 15px !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
}

.asw-share-buttons.asw-share-text .asw-share-icon {
    margin-right: 5px !important;
}

/* Share bar redesign for bottom section */
.asw-share-buttons-bottom {
    border-top: 1px solid #eee !important;
    padding-top: 24px !important;
    margin-top: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.asw-share-buttons-bottom > span {
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
}

.asw-share-buttons-bottom > div {
    display: flex !important;
    gap: 16px !important;
    justify-content: center !important;
}

.asw-share-btn .dashicons {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 1 !important;
}

.asw-share-btn.asw-share-facebook { 
    background: #1877f2 !important; 
}

.asw-share-btn.asw-share-twitter { 
    background: #1da1f2 !important; 
}

.asw-share-btn.asw-share-whatsapp { 
    background: #25d366 !important; 
}

.asw-share-btn.asw-share-email { 
    background: #ea4335 !important; 
}

.asw-share-btn:hover {
    transform: translateY(-2px) scale(1.08) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
    filter: brightness(1.1) !important;
}

/* Responsive social sharing */
@media (max-width: 768px) {
    .asw-share-buttons {
        gap: 8px !important;
    }
    
    .asw-share-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    
    .asw-share-buttons.asw-share-square .asw-share-btn {
        width: 40px !important;
        height: 40px !important;
    }
    
    .asw-share-buttons.asw-share-text .asw-share-btn {
        height: 30px !important;
        padding: 0 12px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 600px) {
    .asw-share-buttons-bottom > div {
        gap: 10px !important;
    }
    
    .asw-share-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
    }
    
    .asw-share-btn .dashicons {
        font-size: 18px !important;
        width: 18px !important;
        height: 18px !important;
    }
}

@media (max-width: 480px) {
    .asw-share-buttons {
        justify-content: center !important;
    }
    
    .asw-share-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
    }
    
    .asw-share-buttons.asw-share-square .asw-share-btn {
        width: 36px !important;
        height: 36px !important;
    }
    
    .asw-share-buttons.asw-share-text .asw-share-btn {
        height: 28px !important;
        padding: 0 10px !important;
        font-size: 10px !important;
    }
}

/* Wishlist Products Grid Styles */
.asw-wishlist-products-grid {
    display: grid !important;
    gap: 20px !important;
    margin: 20px 0 !important;
}

.asw-wishlist-products-grid.columns-1 {
    grid-template-columns: 1fr !important;
}

.asw-wishlist-products-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.asw-wishlist-products-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.asw-wishlist-products-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

.asw-wishlist-products-grid.columns-5 {
    grid-template-columns: repeat(5, 1fr) !important;
}

.asw-wishlist-products-grid.columns-6 {
    grid-template-columns: repeat(6, 1fr) !important;
}

/* Product card styling */
.asw-wishlist-products-grid .product {
    background: white !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    position: relative !important;
}

.asw-wishlist-products-grid .product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

.asw-wishlist-products-grid .product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

.asw-wishlist-products-grid .product .woocommerce-loop-product__title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 15px 15px 10px 15px !important;
    line-height: 1.4 !important;
    color: #333 !important;
}

.asw-wishlist-products-grid .product .woocommerce-loop-product__title a {
    color: #333 !important;
    text-decoration: none !important;
}

.asw-wishlist-products-grid .product .woocommerce-loop-product__title a:hover {
    color: #e74c3c !important;
}

.asw-wishlist-products-grid .product .price {
    margin: 0 15px 15px 15px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #e74c3c !important;
}

.asw-wishlist-products-grid .product .price del {
    color: #999 !important;
    font-size: 14px !important;
    margin-right: 8px !important;
}

.asw-wishlist-products-grid .product .price ins {
    color: #e74c3c !important;
    text-decoration: none !important;
}

.asw-wishlist-products-grid .product .button {
    margin: 0 15px 15px 15px !important;
    width: calc(100% - 30px) !important;
    background: #007cba !important;
    color: white !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
}

.asw-wishlist-products-grid .product .button:hover {
    background: #005a87 !important;
    color: white !important;
}

.asw-wishlist-products-grid .product .button.added {
    background: #28a745 !important;
}

.aswishlist-products-grid .product .button.added:hover {
    background: #218838 !important;
}

/* Star rating styling */
.asw-wishlist-products-grid .product .star-rating {
    margin: 0 15px 10px 15px !important;
    font-size: 14px !important;
}

.asw-wishlist-products-grid .product .star-rating:before {
    color: #ddd !important;
}

.asw-wishlist-products-grid .product .star-rating span:before {
    color: #ffc107 !important;
}

/* Responsive grid */
@media (max-width: 1200px) {
    .asw-wishlist-products-grid.columns-6 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .asw-wishlist-products-grid.columns-5 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .asw-wishlist-products-grid.columns-4,
    .asw-wishlist-products-grid.columns-5,
    .asw-wishlist-products-grid.columns-6 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .asw-wishlist-products-grid.columns-3,
    .asw-wishlist-products-grid.columns-4,
    .asw-wishlist-products-grid.columns-5,
    .asw-wishlist-products-grid.columns-6 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .asw-wishlist-products-grid {
        gap: 15px !important;
    }
    
    .asw-wishlist-products-grid .product img {
        height: 150px !important;
    }
    
    .asw-wishlist-products-grid .product .woocommerce-loop-product__title {
        font-size: 14px !important;
        margin: 10px 10px 8px 10px !important;
    }
    
    .asw-wishlist-products-grid .product .price {
        margin: 0 10px 10px 10px !important;
        font-size: 16px !important;
    }
    
    .asw-wishlist-products-grid .product .button {
        margin: 0 10px 10px 10px !important;
        width: calc(100% - 20px) !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .asw-wishlist-products-grid.columns-2,
    .asw-wishlist-products-grid.columns-3,
    .asw-wishlist-products-grid.columns-4,
    .asw-wishlist-products-grid.columns-5,
    .asw-wishlist-products-grid.columns-6 {
        grid-template-columns: 1fr !important;
    }
    
    .asw-wishlist-products-grid {
        gap: 10px !important;
    }
    
    .asw-wishlist-products-grid .product img {
        height: 200px !important;
    }
}

/* Empty state styling */
.asw-empty-wishlist {
    text-align: center !important;
    padding: 60px 20px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    margin: 30px 0 !important;
}

.asw-empty-wishlist p {
    font-size: 18px !important;
    color: #666 !important;
    margin: 0 !important;
}

/* Print styles */
@media print {
    .asw-wishlist-table {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .asw-action-buttons {
        display: none !important;
    }
    
    .asw-wishlist-actions {
        display: none !important;
    }
    
    .asw-share-buttons {
        display: none !important;
    }
    
    .asw-wishlist-products-grid .product .button {
        display: none !important;
    }
}
