:root {
    --bee1-primary: #171f3b;
    --bee1-primary-dark: #0e1226;
    --bee1-primary-light: #1d2546;
    --bee1-accent: #fbc109;
    --bee1-accent-hover: #fdc730;
    --bee1-accent-light: #fffce8;
    --bee1-bg: #f7f8fa;
    --bee1-card: #ffffff;
    --bee1-text: #171f3b;
    --bee1-text-secondary: #64748b;
    --bee1-border: #e2e8f0;
    --bee1-success: #38a169;
    --bee1-danger: #e53e3e;
    --bee1-shadow: 0 2px 8px rgba(23, 31, 59, 0.08);
    --bee1-shadow-hover: 0 4px 16px rgba(23, 31, 59, 0.12);
    --bee1-radius: 8px;
    --bee1-radius-sm: 4px;
    --bee1-transition: 0.2s ease;
}

.bee1-wl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bee1-card);
    color: var(--bee1-text);
    border: 1px solid var(--bee1-border);
    border-radius: var(--bee1-radius);
    cursor: pointer;
    font-family: 'Rubik', 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--bee1-transition);
    text-decoration: none;
    box-shadow: var(--bee1-shadow);
}

.bee1-wl-btn:hover {
    border-color: var(--bee1-accent);
    box-shadow: var(--bee1-shadow-hover);
    transform: translateY(-1px);
}

.bee1-wl-btn:focus {
    outline: 2px solid var(--bee1-accent);
    outline-offset: 2px;
}

.bee1-wl-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: all var(--bee1-transition);
}

.bee1-wl-btn.bee1-wl-in-list {
    background: var(--bee1-accent);
    color: var(--bee1-primary-dark);
    border-color: var(--bee1-accent);
}

.bee1-wl-btn.bee1-wl-in-list .bee1-wl-icon {
    fill: currentColor;
}

.bee1-wl-btn.bee1-wl-loading {
    pointer-events: none;
    opacity: 0.7;
}

.bee1-wl-btn.bee1-wl-loading .bee1-wl-icon {
    animation: bee1-spin 1s linear infinite;
}

@keyframes bee1-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bee1-wl-counter-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bee1-wl-counter {
    display: none;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--bee1-accent);
    color: var(--bee1-primary-dark);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

.bee1-wl-counter-wrapper.bee1-wl-has-items .bee1-wl-counter {
    display: inline-flex;
}

.bee1-wl-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bee1-card);
    border-radius: var(--bee1-radius);
    box-shadow: 0 8px 32px rgba(23, 31, 59, 0.16);
    font-family: 'Rubik', 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    z-index: 99999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.bee1-wl-toast.bee1-wl-toast-visible {
    opacity: 1;
    transform: translateY(0);
}

.bee1-wl-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.bee1-wl-toast-success .bee1-wl-toast-icon {
    background: var(--bee1-success);
    color: white;
}

.bee1-wl-toast-error .bee1-wl-toast-icon {
    background: var(--bee1-danger);
    color: white;
}

.bee1-wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background: var(--bee1-bg);
    min-height: 60vh;
}

.bee1-wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bee1-border);
}

.bee1-wishlist-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--bee1-primary);
    margin: 0;
}

.bee1-wishlist-count {
    color: var(--bee1-text-secondary);
    font-size: 14px;
}

.bee1-wishlist-actions {
    display: flex;
    gap: 12px;
}

.bee1-wishlist-table {
    width: 100%;
    background: var(--bee1-card);
    border-radius: var(--bee1-radius);
    box-shadow: var(--bee1-shadow);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.bee1-wishlist-table th {
    padding: 16px 20px;
    background: var(--bee1-bg);
    font-size: 12px;
    font-weight: 600;
    color: var(--bee1-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    border-bottom: 1px solid var(--bee1-border);
}

.bee1-wishlist-table td {
    padding: 20px;
    border-bottom: 1px solid var(--bee1-border);
    vertical-align: middle;
}

.bee1-wishlist-table tbody tr:last-child td {
    border-bottom: none;
}

.bee1-wishlist-table tbody tr:hover {
    background: var(--bee1-bg);
}

.bee1-wl-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--bee1-radius-sm);
}

.bee1-wl-product-name {
    font-weight: 500;
    color: var(--bee1-text);
    text-decoration: none;
}

.bee1-wl-product-name:hover {
    color: var(--bee1-accent);
}

.bee1-wl-price {
    font-weight: 600;
    color: var(--bee1-primary);
}

.bee1-wl-price del {
    color: var(--bee1-text-secondary);
    font-weight: 400;
    margin-right: 8px;
}

.bee1-wl-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.bee1-wl-stock.in-stock {
    background: #dcfce7;
    color: var(--bee1-success);
}

.bee1-wl-stock.out-of-stock {
    background: #fee2e2;
    color: var(--bee1-danger);
}

.bee1-wl-btn-remove {
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--bee1-text-secondary);
    transition: color var(--bee1-transition);
}

.bee1-wl-btn-remove:hover {
    color: var(--bee1-danger);
}

.bee1-wl-empty {
    text-align: center;
    padding: 60px 20px;
}

.bee1-wl-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    fill: none;
    stroke: var(--bee1-border);
    stroke-width: 1.5;
}

.bee1-wl-empty-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--bee1-text);
    margin-bottom: 8px;
}

.bee1-wl-empty-text {
    color: var(--bee1-text-secondary);
    margin-bottom: 24px;
}

.bee1-wl-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bee1-primary);
    color: white;
    border: none;
    border-radius: var(--bee1-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--bee1-transition);
}

.bee1-wl-btn-primary:hover {
    background: var(--bee1-primary-light);
    color: white;
}

.bee1-wl-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bee1-card);
    color: var(--bee1-text);
    border: 1px solid var(--bee1-border);
    border-radius: var(--bee1-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--bee1-transition);
}

.bee1-wl-btn-secondary:hover {
    border-color: var(--bee1-primary);
    color: var(--bee1-primary);
}

.bee1-wl-share {
    margin-top: 20px;
    padding: 16px;
    background: var(--bee1-card);
    border: 1px solid var(--bee1-border);
    border-radius: var(--bee1-radius);
}

.bee1-wl-share-label {
    font-weight: 600;
    margin-right: 10px;
}

/* Share section */
.bee1-wl-share-section {
    margin-top: 24px;
    padding: 24px;
    background: var(--bee1-card);
    border: 1px solid var(--bee1-border);
    border-radius: var(--bee1-radius);
    box-shadow: var(--bee1-shadow);
}

.bee1-wl-share-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bee1-text-secondary);
    margin-bottom: 14px;
}

.bee1-wl-share-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Shared base for all share/social buttons */
.bee1-wl-share-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 24px;
    font-family: 'Rubik', 'Segoe UI', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    color: #fff !important;
    border: none;
    cursor: pointer;
    transition: opacity var(--bee1-transition), transform var(--bee1-transition);
}

.bee1-wl-share-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.bee1-wl-share-btn svg {
    flex-shrink: 0;
}

.bee1-wl-share-facebook {
    background: #1877f2;
}

.bee1-wl-share-twitter {
    background: #14171a;
}

.bee1-wl-share-whatsapp {
    background: #25d366;
}

.bee1-wl-share-pinterest {
    background: #e60023;
}

.bee1-wl-share-email {
    background: var(--bee1-primary);
}

.bee1-wl-share-copy {
    background: transparent !important;
    border: 1.5px solid var(--bee1-border) !important;
    color: var(--bee1-text) !important;
}

.bee1-wl-share-copy:hover {
    border-color: var(--bee1-primary) !important;
}

/* Gift section */
.bee1-wl-gift-section {
    margin-top: 24px;
    padding: 24px;
    background: var(--bee1-accent-light);
    border: 1px solid rgba(251, 193, 9, 0.35);
    border-radius: var(--bee1-radius);
    box-shadow: var(--bee1-shadow);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.bee1-wl-gift-badge-wrap {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.bee1-wl-gift-body {
    flex: 1;
    min-width: 0;
}

.bee1-wl-gift-title {
    margin: 0 0 6px;
    color: var(--bee1-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.bee1-wl-gift-text {
    margin: 0 0 14px;
    color: var(--bee1-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.bee1-wl-gift-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bee1-wl-cart-share-panel {
    margin: 0 0 24px;
    padding: 24px;
    background: var(--bee1-accent-light);
    border: 1px solid rgba(251, 193, 9, 0.32);
    border-radius: calc(var(--bee1-radius) + 4px);
    box-shadow: var(--bee1-shadow);
}

.bee1-wl-cart-share-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
}

.bee1-wl-cart-share-badge {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(251, 193, 9, 0.18);
    font-size: 28px;
}

.bee1-wl-cart-share-eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bee1-text-secondary);
}

.bee1-wl-cart-share-title {
    margin: 0 0 8px;
    color: var(--bee1-primary);
    font-size: 22px;
    line-height: 1.2;
}

.bee1-wl-cart-share-text {
    margin: 0;
    color: var(--bee1-text-secondary);
    font-size: 14px;
    line-height: 1.7;
    max-width: 64ch;
}

.bee1-wl-cart-share-cta {
    display: flex;
    justify-content: flex-end;
}

.bee1-wl-cart-share-result {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bee1-border);
}

.bee1-wl-cart-share-result-label {
    display: block;
    margin-bottom: 8px;
    color: var(--bee1-primary);
    font-size: 13px;
    font-weight: 600;
}

.bee1-wl-cart-share-result-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.bee1-wl-cart-share-url {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--bee1-border);
    border-radius: var(--bee1-radius);
    background: var(--bee1-card);
    color: var(--bee1-text);
    font-family: 'Rubik', 'Segoe UI', system-ui, sans-serif;
    font-size: 13px;
}

.bee1-wl-cart-share-url:focus {
    outline: 2px solid var(--bee1-accent);
    outline-offset: 2px;
}

.bee1-wl-cart-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.bee1-wl-pagination {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bee1-wl-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: var(--bee1-radius-sm);
    border: 1px solid var(--bee1-border);
    background: var(--bee1-card);
    color: var(--bee1-text);
    text-decoration: none;
    font-weight: 500;
}

.bee1-wl-page-link.is-active,
.bee1-wl-page-link:hover {
    border-color: var(--bee1-accent);
    background: var(--bee1-accent-light);
}

/* Modern Card Grid Layout - Apple/NASA grade design */
.bee1-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin: 36px 0;
}

.bee1-wishlist-grid-mode-compact {
    grid-template-columns: 1fr;
    gap: 16px;
}

.bee1-wl-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
    border: 1px solid rgba(23, 31, 59, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bee1-wishlist-grid-mode-compact .bee1-wl-card {
    flex-direction: row;
    align-items: stretch;
}

.bee1-wl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
    border-color: var(--bee1-accent);
}

.bee1-wl-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: radial-gradient(circle at top, #faf6ef 0%, #f2f4f7 58%, #eceff3 100%);
    flex-shrink: 0;
}

.bee1-wl-image-swatches {
    position: absolute;
    inset-inline: 10px;
    bottom: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.bee1-wl-card-image::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.28) 100%);
    pointer-events: none;
    z-index: 1;
}

.bee1-wl-image-swatches-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.bee1-wl-image-swatches-label {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--bee1-primary);
    line-height: 1;
}

.bee1-wl-image-swatches-options {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.bee1-wl-stock-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    min-height: 26px;
    border: 1px solid rgba(23, 31, 59, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--bee1-text);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.bee1-wl-stock-swatch-shape-circle {
    border-radius: 999px;
}

.bee1-wl-stock-swatch-shape-square {
    border-radius: 8px;
    padding: 0 7px;
}

.bee1-wl-stock-swatch.is-selected {
    border-color: var(--bee1-accent);
    box-shadow: 0 0 0 2px rgba(251, 193, 9, 0.26), 0 8px 18px rgba(15, 23, 42, 0.12);
}

.bee1-wl-stock-swatch-chip {
    width: 16px;
    height: 16px;
    border-radius: inherit;
    display: block;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.bee1-wl-stock-swatch.is-light {
    border-color: rgba(15, 23, 42, 0.16);
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
}

.bee1-wl-stock-swatch.is-light .bee1-wl-stock-swatch-chip {
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.bee1-wl-stock-swatch-chip-image {
    overflow: hidden;
}

.bee1-wl-stock-swatch-chip-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bee1-wl-stock-swatch-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.bee1-wishlist-grid-mode-compact .bee1-wl-card-image {
    width: min(32%, 260px);
    min-width: 180px;
    aspect-ratio: auto;
}

.bee1-wl-card-image-ratio-3-2 {
    aspect-ratio: 3 / 2;
}

.bee1-wl-card-image-ratio-2-3 {
    aspect-ratio: 2 / 3;
}

.bee1-wl-card-image-ratio-3-4 {
    aspect-ratio: 3 / 4;
}

.bee1-wl-card-image a,
.bee1-wl-card-image .woocommerce-LoopProduct-link,
.bee1-wl-card-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.bee1-wl-card-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transition: transform 0.6s ease, filter 0.35s ease;
}

.bee1-wl-card-image .bee1-wl-product-image {
    width: 100% !important;
    height: 100% !important;
}

.bee1-wl-card-image-fit-cover img {
    object-fit: cover !important;
    object-position: center 24% !important;
}

.bee1-wl-card-image-fit-contain img {
    object-fit: contain !important;
}

.bee1-wl-card:hover .bee1-wl-card-image img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
}

.bee1-wl-card-content {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bee1-wishlist-grid-mode-compact .bee1-wl-card-content {
    justify-content: center;
}

.bee1-wl-card-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bee1-text);
    margin-bottom: 0;
    line-height: 1.2;
}

.bee1-wl-card-title a {
    color: inherit;
    text-decoration: none;
}

.bee1-wl-card-title a:hover {
    color: var(--bee1-accent);
}

.bee1-wl-card-price {
    font-weight: 700;
    color: var(--bee1-primary);
    margin-bottom: 0;
    font-size: 16px;
}

.bee1-wl-card-price .amount {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.bee1-wl-card .bee1-wl-stock {
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

.bee1-wl-card-variation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    font-size: 12px;
    color: var(--bee1-text-secondary);
}

.bee1-wl-variation-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(180deg, #fbfbfc 0%, #f3f5f8 100%);
    border: 1px solid rgba(23, 31, 59, 0.08);
    border-radius: 999px;
    padding: 6px 10px;
    white-space: nowrap;
}

.bee1-wl-variation-label {
    font-weight: 600;
    color: var(--bee1-text);
}

.bee1-wl-variation-value {
    color: var(--bee1-text-secondary);
}

.bee1-wl-variation-swatch {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(23, 31, 59, 0.16);
    overflow: hidden;
    flex: 0 0 18px;
}

.bee1-wl-variation-item.is-light {
    border-color: rgba(15, 23, 42, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
}

.bee1-wl-variation-item.is-light .bee1-wl-variation-swatch {
    border-color: rgba(15, 23, 42, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.bee1-wl-variation-swatch-image {
    border-radius: 6px;
    background: #fff;
}

.bee1-wl-variation-swatch-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bee1-wl-variation-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(23, 31, 59, 0.12);
    color: var(--bee1-text);
    font-weight: 600;
}

.bee1-wl-card-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 0;
    padding: 10px 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
    border: 1px solid rgba(23, 31, 59, 0.06);
}

.bee1-wl-qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 6px 16px rgba(15, 23, 42, 0.04);
}

.bee1-wl-qty-adjust {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 10px;
    background: linear-gradient(180deg, #f7f9fc 0%, #e9eef4 100%);
    color: transparent !important;
    font-size: 0;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.bee1-wl-qty-adjust::before,
.bee1-wl-qty-adjust::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
    transform: translate(-50%, -50%);
}

.bee1-wl-qty-adjust-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.bee1-wl-qty-adjust-minus::after {
    display: none;
}

.bee1-wl-qty-adjust:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
    border-color: rgba(15, 23, 42, 0.18);
}

.bee1-wl-qty-adjust:hover::before,
.bee1-wl-qty-adjust:hover::after {
    background: #020617;
}

.bee1-wl-qty-adjust:active {
    transform: translateY(0);
}

.bee1-wl-qty-input {
    width: 64px;
    max-width: none;
    border: 1px solid rgba(23, 31, 59, 0.1);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Rubik', 'Segoe UI', system-ui, sans-serif;
    color: var(--bee1-text);
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
}

.bee1-wl-qty-input::-webkit-outer-spin-button,
.bee1-wl-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bee1-wl-qty-input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.bee1-wl-qty-input:focus {
    outline: 2px solid var(--bee1-accent);
    outline-offset: 1px;
    border-color: var(--bee1-accent);
}

.bee1-wl-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(23, 31, 59, 0.08);
}

.bee1-wishlist-grid-mode-compact .bee1-wl-card-actions {
    margin-top: 8px;
}

.bee1-wishlist-grid-mode-compact .bee1-wl-card-quantity {
    max-width: 140px;
}

.bee1-wl-card .bee1-wl-btn-remove {
    flex: 0 0 auto;
    width: 44px;
    padding: 10px;
    justify-content: center;
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.bee1-wl-card .bee1-wl-btn-remove:hover {
    background: #1e293b;
    color: #fff;
}

.bee1-wl-card .bee1-wl-btn-cart {
    flex: 1;
    justify-content: center;
}

.bee1-wl-card .bee1-wl-btn-secondary,
.bee1-wl-card .bee1-wl-btn-primary {
    min-height: 44px;
    border-radius: 14px;
    font-weight: 700;
    justify-content: center;
}

.bee1-wl-card .bee1-wl-btn-secondary {
    flex: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bee1-wl-card .bee1-wl-btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
    .bee1-wishlist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bee1-wl-image-swatches {
        inset-inline: 8px;
        bottom: 8px;
        gap: 6px;
    }

    .bee1-wl-image-swatches-group {
        align-items: flex-start;
        flex-direction: column;
    }

    .bee1-wl-card-content {
        padding: 16px 16px 18px;
    }

    .bee1-wl-card-title {
        font-size: 18px;
    }

    .bee1-wl-card-quantity {
        align-items: stretch;
        flex-direction: column;
    }

    .bee1-wl-qty-stepper {
        width: 100%;
        justify-content: space-between;
    }

    .bee1-wl-qty-input {
        width: 72px;
    }

    .bee1-wishlist-grid-mode-compact .bee1-wl-card {
        flex-direction: column;
    }

    .bee1-wishlist-grid-mode-compact .bee1-wl-card-image {
        width: 100%;
        min-width: 0;
        aspect-ratio: 1 / 1;
    }

    .bee1-wishlist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bee1-wl-cart-share-shell {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .bee1-wl-cart-share-cta {
        width: 100%;
        justify-content: stretch;
    }

    .bee1-wl-cart-share-cta .bee1-wl-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .bee1-wl-cart-share-result-row {
        flex-direction: column;
    }

    .bee1-wishlist-table {
        display: block;
        overflow-x: auto;
    }

    .bee1-wl-thumb {
        width: 60px;
        height: 60px;
    }

    .bee1-wl-gift-section {
        flex-direction: column;
        gap: 12px;
    }

    .bee1-wl-gift-actions .bee1-wl-share-btn {
        width: 100%;
        justify-content: center;
    }

    .bee1-wl-share-btns {
        flex-direction: column;
    }

    .bee1-wl-share-btn {
        justify-content: center;
    }
}

/* RTL / Hebrew support */
html[dir="rtl"] .bee1-wishlist-page,
.bee1-wishlist-page[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .bee1-wishlist-header {
    text-align: right;
}

html[dir="rtl"] .bee1-wishlist-grid {
    direction: rtl;
}

html[dir="rtl"] .bee1-wl-card-content {
    text-align: right;
}

html[dir="rtl"] .bee1-wl-card-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] .bee1-wl-share-section,
html[dir="rtl"] .bee1-wl-gift-section,
html[dir="rtl"] .bee1-wl-cart-share-panel {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .bee1-wl-gift-section {
    flex-direction: row-reverse;
}

html[dir="rtl"] .bee1-wl-cart-share-shell,
html[dir="rtl"] .bee1-wl-cart-share-actions {
    direction: rtl;
}

html[dir="rtl"] .bee1-wl-share-btns,
html[dir="rtl"] .bee1-wl-gift-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] .bee1-wl-toast {
    right: auto;
    left: 24px;
    animation-name: slideInRight-rtl;
}

@keyframes slideInRight-rtl {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
