/**
 * AlanDog — Account & Wishlist Enhancements
 * Sprint 6+7 styles for reorder, suggestions, order filters,
 * wishlist bulk actions, empty state, share, and badges.
 *
 * @version 1.0.0
 */

/* ─────────────────────────────────────────────
 * 1. REORDER SECTION (Dashboard)
 * ───────────────────────────────────────────── */

.alandog-reorder-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.alandog-reorder-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-heading, #1a1a2e);
    margin: 0 0 1rem;
}

.alandog-reorder-title svg {
    color: var(--color-primary, #085d91);
    flex-shrink: 0;
}

.alandog-reorder-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alandog-reorder-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.alandog-reorder-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.alandog-reorder-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.alandog-reorder-info {
    flex: 1;
    min-width: 0;
}

.alandog-reorder-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-heading, #1a1a2e);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alandog-reorder-name:hover {
    color: var(--color-primary, #085d91);
}

.alandog-reorder-price {
    font-size: 0.85rem;
    color: var(--color-text-light, #495260);
}

.alandog-reorder-btn {
    flex-shrink: 0;
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
    white-space: nowrap;
}

/* ─────────────────────────────────────────────
 * 2. PET SUGGESTIONS (Dashboard)
 * ───────────────────────────────────────────── */

.alandog-pet-suggestions {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #EFF8FF 0%, #E6F4FE 100%);
    border: 1px solid #B3DFFC;
    border-radius: 12px;
}

.alandog-pet-suggestions-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary, #085d91);
    margin: 0 0 1rem;
}

.alandog-pet-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.alandog-suggestion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.alandog-suggestion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alandog-suggestion-image img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.alandog-suggestion-info {
    margin-top: 0.5rem;
}

.alandog-suggestion-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-heading, #1a1a2e);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.alandog-suggestion-name:hover {
    color: var(--color-primary, #085d91);
}

.alandog-suggestion-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-heading, #1a1a2e);
    margin-top: 0.25rem;
}

.alandog-suggestion-btn {
    margin-top: 0.5rem;
    font-size: 0.75rem !important;
    padding: 0.35rem 0.7rem !important;
}

/* ─────────────────────────────────────────────
 * 3. ORDER FILTERS
 * ───────────────────────────────────────────── */

.alandog-order-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.alandog-order-filter {
    padding: 0.45rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    background: #fff;
    color: var(--color-text, #374151);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.alandog-order-filter:hover {
    border-color: var(--color-primary, #085d91);
    color: var(--color-primary, #085d91);
}

.alandog-order-filter.active {
    background: var(--color-primary, #085d91);
    color: #fff;
    border-color: var(--color-primary, #085d91);
}

/* ─────────────────────────────────────────────
 * 4. WISHLIST BULK ACTIONS
 * ───────────────────────────────────────────── */

.alandog-wishlist-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.alandog-wishlist-add-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--color-cta, #963B1A);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.alandog-wishlist-add-all:hover {
    background: #d45a3d;
}

.alandog-wishlist-add-all:active {
    transform: scale(0.98);
}

.alandog-wishlist-add-all:disabled {
    opacity: 0.7;
    cursor: wait;
}

.alandog-wishlist-add-all--done {
    background: var(--color-primary, #085d91) !important;
}

/* ─────────────────────────────────────────────
 * 5. WISHLIST EMPTY STATE (Enhanced)
 * ───────────────────────────────────────────── */

.alandog-wishlist-empty-enhanced {
    text-align: center;
    padding: 2rem 1rem;
}

.alandog-wishlist-empty-enhanced .wishlist-empty-icon svg {
    width: 64px;
    height: 64px;
    color: #495260;
    margin-bottom: 1rem;
}

.alandog-wishlist-empty-enhanced h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-heading, #1a1a2e);
    margin: 0 0 0.5rem;
}

.alandog-wishlist-empty-enhanced > p {
    color: var(--color-text-light, #495260);
    margin-bottom: 1.5rem;
}

.alandog-wishlist-suggestions {
    margin: 2rem 0;
}

.alandog-wishlist-suggestions h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading, #1a1a2e);
    margin-bottom: 1rem;
}

.alandog-wishlist-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.alandog-wishlist-suggestion-card {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: box-shadow 0.2s;
}

.alandog-wishlist-suggestion-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alandog-wishlist-suggestion-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 1;
    object-fit: cover;
}

.alandog-wishlist-suggestion-card .suggestion-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-heading, #1a1a2e);
    text-decoration: none;
    margin-top: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.alandog-wishlist-suggestion-card .suggestion-name:hover {
    color: var(--color-primary, #085d91);
}

.alandog-wishlist-suggestion-card .suggestion-price {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* ─────────────────────────────────────────────
 * 6. WISHLIST SHARE
 * ───────────────────────────────────────────── */

.alandog-wishlist-share {
    position: relative;
    display: inline-block;
}

.alandog-wishlist-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text, #374151);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.alandog-wishlist-share-btn:hover {
    border-color: var(--color-primary, #085d91);
    color: var(--color-primary, #085d91);
}

.alandog-wishlist-share-popup {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    margin-top: 0.5rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 300px;
}

.alandog-wishlist-share-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--color-text, #374151);
}

.alandog-wishlist-copy-btn {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background: var(--color-primary, #085d91);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 0.5rem;
}

.alandog-wishlist-copy-btn:hover {
    background: #0A6DB0;
}

.alandog-wishlist-share-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.alandog-wishlist-share-social a {
    font-size: 0.8rem;
    color: var(--color-primary, #085d91);
    text-decoration: none;
    font-weight: 500;
}

.alandog-wishlist-share-social a:hover {
    text-decoration: underline;
}

/* ─────────────────────────────────────────────
 * 7. WISHLIST PAGE — Brand-aligned layout
 *    Matches the brand landing page UI:
 *    centered header, 4-col grid, card hover lift
 * ───────────────────────────────────────────── */

/* --- Page-level: hide WP default title, add spacing --- */
.page-template-default .page-header-page:has(+ .site-content .alandog-wishlist-page),
body.page-id-406 .page-header-page {
    display: none;
}

body.woocommerce-account .alandog-wishlist-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.woocommerce-account .alandog-wishlist-page .wishlist-header {
    text-align: left;
    margin-bottom: 24px;
}

body.woocommerce-account .alandog-wishlist-page .alandog-wishlist-actions {
    justify-content: flex-start;
    margin-bottom: 24px;
    padding: 14px 16px;
}

body.woocommerce-account .alandog-wishlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.woocommerce-account .wishlist-product-card {
    min-width: 0;
}

body.woocommerce-account .wishlist-product-card .wishlist-product-image {
    background: #fff;
}

body.woocommerce-account .wishlist-product-card .wishlist-product-image img {
    object-fit: contain;
    padding: 16px;
    background: #fff;
}

.alandog-wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* --- Section Header — matches brand-section-header --- */
.alandog-wishlist-page .wishlist-header {
    text-align: center;
    margin-bottom: 48px;
}

.alandog-wishlist-page .wishlist-header h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.2;
}

.alandog-wishlist-page .wishlist-count {
    display: inline-block;
    font-size: 16px;
    color: #495260;
    font-weight: 400;
}

/* --- Login hint banner --- */
.alandog-wishlist-page .wishlist-login-hint {
    max-width: 640px;
    margin: 0 auto 32px;
    padding: 14px 20px;
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 12px;
    font-size: 14px;
    color: #78350F; /* FIX-UI-186: AAA 8.15:1 on #FEF3C7 (was #92400e 6.37:1) */
    text-align: center;
    line-height: 1.6;
}

.alandog-wishlist-page .wishlist-login-hint a {
    color: #064d78; /* FIX-UI-186: AAA 8.06:1 on #FEF3C7 (was #0B6DAF 4.94:1) */
    font-weight: 600;
    text-decoration: underline;
}

.alandog-wishlist-page .wishlist-login-hint a:hover {
    color: #0A6099;
}

/* --- Product Grid — matches brand-products__grid --- */
.alandog-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- Product Card --- */
.wishlist-product-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wishlist-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Remove button (X) */
.wishlist-product-card .alandog-wishlist-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    color: #495260;
}

.wishlist-product-card .alandog-wishlist-remove:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #a61d1d;
}

/* Product image */
.wishlist-product-card .wishlist-product-image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f9fafb;
}

.wishlist-product-card .wishlist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Product info */
.wishlist-product-card .wishlist-product-info {
    padding: 16px;
}

.wishlist-product-card .wishlist-product-name {
    margin: 0 0 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.wishlist-product-card .wishlist-product-name a {
    color: #1a1a2e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-product-card .wishlist-product-name a:hover {
    color: #085d91;
}

/* Price */
.wishlist-product-card .wishlist-product-price {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.wishlist-product-card .wishlist-product-price del {
    font-size: 13px;
    font-weight: 400;
    color: #495260;
}

.wishlist-product-card .wishlist-product-price ins {
    text-decoration: none;
    color: #a61d1d;
}

/* Stock */
.wishlist-product-card .wishlist-product-stock {
    margin-bottom: 12px;
    font-size: 13px;
}

.wishlist-product-card .wishlist-product-stock .in-stock {
    color: #059669;
    font-weight: 500;
}

.wishlist-product-card .wishlist-product-stock .out-of-stock {
    color: #a61d1d;
    font-weight: 500;
}

/* Add to cart button */
.wishlist-product-card .wishlist-add-to-cart {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    background: #963B1A;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    line-height: 1.4;
}

.wishlist-product-card .wishlist-add-to-cart:hover {
    background: #d45a3c;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(231, 111, 81, 0.3);
}

/* --- Badges (Sale + Low Stock) --- */
.alandog-wishlist-badge-sale,
.alandog-wishlist-badge-stock {
    position: absolute;
    left: 12px;
    z-index: 2;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    pointer-events: none;
}

.alandog-wishlist-badge-sale {
    top: 12px;
    background: #a61d1d;
    color: #fff;
}

.alandog-wishlist-badge-stock {
    top: 40px;
    background: #f59e0b;
    color: #fff;
}

/* When only stock badge, position at top */
.wishlist-product-card .alandog-wishlist-badge-stock:first-of-type {
    top: 12px;
}

/* --- Empty State — brand-aligned --- */
.alandog-wishlist-empty-enhanced {
    text-align: center;
    padding: 60px 24px;
    max-width: 540px;
    margin: 0 auto;
}

.alandog-wishlist-empty-enhanced .wishlist-empty-icon {
    margin-bottom: 20px;
}

.alandog-wishlist-empty-enhanced .wishlist-empty-icon svg {
    width: 72px;
    height: 72px;
    color: #d1d5db;
}

.alandog-wishlist-empty-enhanced h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.alandog-wishlist-empty-enhanced > p {
    font-size: 16px;
    color: #495260;
    line-height: 1.6;
    margin-bottom: 24px;
}

.alandog-wishlist-empty-enhanced .wishlist-login-hint {
    margin-bottom: 24px;
    font-size: 14px;
    color: #78350F; /* FIX-UI-186: AAA */
}

.alandog-wishlist-empty-enhanced .alandog-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #963B1A;
    color: #fff !important;
    border: 2px solid #963B1A;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.alandog-wishlist-empty-enhanced .alandog-btn-cta:hover {
    background: #d45a3c;
    border-color: #d45a3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 111, 81, 0.3);
}

/* --- Bulk Actions bar — brand-aligned --- */
.alandog-wishlist-page .alandog-wishlist-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

/* --- Card Remove Animation --- */
.alandog-wishlist-card-removing {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s;
}

/* ─────────────────────────────────────────────
 * 9. ACCOUNT MENU BADGES
 * ───────────────────────────────────────────── */

.alandog-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--color-cta, #963B1A);
    color: #fff;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 0.25rem;
    vertical-align: middle;
}

/* ─────────────────────────────────────────────
 * 10. ACCOUNT BENEFITS (Login page)
 * ───────────────────────────────────────────── */

.alandog-account-benefits {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #EFF8FF;
    border: 1px solid #B3DFFC;
    border-radius: 10px;
}

.alandog-account-benefits h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-heading, #1a1a2e);
    margin: 0 0 1rem;
}

.alandog-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.alandog-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text, #374151);
}

.alandog-benefits-list li svg {
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
 * 11. LOGIN FORM TITLES
 * ───────────────────────────────────────────── */

.alandog-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-heading, #1a1a2e);
    margin: 0 0 0.5rem;
}

.alandog-register-incentive {
    font-size: 0.9rem;
    color: var(--color-primary, #065282);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hide Super Socializer errors */
.the-champ-login-container .the-champ-error,
.the-champ-social-login-container .the-champ-error {
    display: none !important;
}

.the-champ-login-container:has(.the-champ-error) {
    display: none !important;
}

/* ─────────────────────────────────────────────
 * 12. SHARED WISHLIST
 * ───────────────────────────────────────────── */

.alandog-wishlist-shared .wishlist-header {
    margin-bottom: 1.5rem;
}

.alandog-wishlist-shared .wishlist-product-card .alandog-wishlist-remove {
    display: none;
}

/* ─────────────────────────────────────────────
 * RESPONSIVE
 * ───────────────────────────────────────────── */

/* Tablet: 3 columns */
@media (max-width: 1024px) {
    .alandog-wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .alandog-wishlist-page {
        padding: 48px 20px 60px;
    }

    .alandog-wishlist-page .wishlist-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    body.woocommerce-account .alandog-wishlist-page .wishlist-header {
        margin-bottom: 18px;
    }

    body.woocommerce-account .alandog-wishlist-page .wishlist-header h2 {
        text-align: left;
    }

    body.woocommerce-account .alandog-wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    /* Wishlist: 2 columns */
    .alandog-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .alandog-wishlist-page {
        padding: 32px 16px 48px;
    }

    .alandog-wishlist-page .wishlist-header {
        margin-bottom: 32px;
    }

    .alandog-wishlist-page .wishlist-header h2 {
        font-size: 24px;
    }

    .alandog-wishlist-page .wishlist-count {
        font-size: 14px;
    }

    .wishlist-product-card .wishlist-product-info {
        padding: 12px;
    }

    .wishlist-product-card .wishlist-product-name {
        font-size: 13px;
    }

    .wishlist-product-card .wishlist-product-price {
        font-size: 14px;
    }

    .wishlist-product-card .wishlist-add-to-cart {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* Suggestions grid */
    .alandog-pet-suggestions-grid {
        grid-template-columns: 1fr;
    }

    .alandog-suggestion-item {
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }

    .alandog-suggestion-image img {
        width: 60px;
        height: 60px;
    }

    .alandog-suggestion-info {
        flex: 1;
        margin-top: 0;
    }

    /* Wishlist suggestions grid */
    .alandog-wishlist-suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Wishlist actions */
    .alandog-wishlist-page .alandog-wishlist-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .alandog-wishlist-add-all {
        justify-content: center;
    }

    /* Order filters */
    .alandog-order-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .alandog-order-filters::-webkit-scrollbar {
        display: none;
    }

    .alandog-order-filter {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Share popup */
    .alandog-wishlist-share-popup {
        min-width: 250px;
        right: 0;
        left: auto;
    }

    /* Reorder items */
    .alandog-reorder-item {
        flex-wrap: wrap;
    }

    .alandog-reorder-btn {
        width: 100%;
        text-align: center;
    }

    /* Empty state */
    .alandog-wishlist-empty-enhanced {
        padding: 40px 16px;
    }

    .alandog-wishlist-empty-enhanced h3 {
        font-size: 20px;
    }
}

/* Small mobile: 1 column */
@media (max-width: 480px) {
    body.woocommerce-account .alandog-wishlist-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }

    body.woocommerce-account .wishlist-product-card .wishlist-product-info {
        padding: 14px;
    }

    .alandog-wishlist-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .alandog-wishlist-suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .alandog-wishlist-suggestion-card {
        padding: 0.75rem;
    }
}
