  :root {
    --green:      #16a34a;
    --green-dark: #166534;
    --green-light:#dcfce7;
    --dark:       #111827;
    --gray:       #6b7280;
    --border:     #e5e7eb;
    --light:      #f9fafb;
    --white:      #ffffff;
    --radius:     14px;
    --tr:         0.2s ease;
  }

  .wl-page {
    background: var(--light);
    min-height: 70vh;
    padding: 40px 0 80px;
    font-family: 'DM Sans', sans-serif;
  }

  .wl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── Header bar ── */
  .wl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
  }

  .wl-title {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .wl-count-badge {
    background: var(--green-light);
    color: var(--green-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
  }

  .wl-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
  }

  .btn:active { transform: scale(0.97); }

  .btn-green {
    background: var(--green);
    color: white;
  }

  .btn-green:hover { background: var(--green-dark); }

  .btn-outline {
    background: white;
    color: var(--dark);
    border: 1.5px solid var(--border);
  }

  .btn-outline:hover { background: var(--light); border-color: #d1d5db; }

  .btn-danger {
    background: #fee2e2;
    color: #991b1b;
    border: none;
  }

  .btn-danger:hover { background: #fecaca; }

  /* ── Share bar ── */
  .share-bar {
    display: none;
    background: white;
    border: 1.5px solid var(--green-light);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 24px;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: slideDown 0.2s ease;
  }

  .share-bar.open { display: flex; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .share-bar input {
    flex: 1;
    min-width: 220px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    outline: none;
    background: var(--light);
  }

  .share-bar input:focus { border-color: var(--green); }

  .copy-feedback {
    font-size: 13px;
    color: var(--green-dark);
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .copy-feedback.show { opacity: 1; }

  /* ── Grid ── */
  .wl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  /* ── Product card ── */
  .wl-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--tr), transform var(--tr);
    position: relative;
    animation: fadeUp 0.3s ease both;
  }

  .wl-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transform: translateY(-3px);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Stagger card animations */
  .wl-card:nth-child(1)  { animation-delay: 0.03s; }
  .wl-card:nth-child(2)  { animation-delay: 0.07s; }
  .wl-card:nth-child(3)  { animation-delay: 0.11s; }
  .wl-card:nth-child(4)  { animation-delay: 0.15s; }
  .wl-card:nth-child(5)  { animation-delay: 0.19s; }
  .wl-card:nth-child(6)  { animation-delay: 0.23s; }
  .wl-card:nth-child(7)  { animation-delay: 0.27s; }
  .wl-card:nth-child(8)  { animation-delay: 0.31s; }

  .wl-card-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: var(--light);
    padding: 16px;
    display: block;
    text-decoration: none;
    transition: transform var(--tr);
  }

  .wl-card:hover .wl-card-img { transform: scale(1.03); }

  .wl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .wl-card-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .wl-card-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .wl-card-name:hover { color: var(--green); }

  .wl-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .wl-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
  }

  .wl-price-original {
    font-size: 13px;
    color: var(--gray);
    text-decoration: line-through;
  }

  .wl-sale-badge {
    font-size: 10px;
    font-weight: 700;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 2px 7px;
    border-radius: 20px;
  }

  .wl-card-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
  }

  .btn-cart {
    flex: 1;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    transition: background var(--tr), transform var(--tr);
  }

  .btn-cart:hover  { background: var(--green-dark); }
  .btn-cart:active { transform: scale(0.97); }

  .btn-remove {
    background: #f9fafb;
    color: #9ca3af;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background var(--tr), color var(--tr);
    line-height: 1;
  }

  .btn-remove:hover { background: #fee2e2; color: #ef4444; border-color: #fca5a5; }

  /* ── Remove overlay animation ── */
  .wl-card.removing {
    animation: cardOut 0.3s ease forwards;
  }

  @keyframes cardOut {
    to { opacity: 0; transform: scale(0.9); }
  }

  /* ── Empty state ── */
  .wl-empty {
    text-align: center;
    padding: 80px 24px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }

  .wl-empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
    opacity: 0.3;
  }

  .wl-empty h2 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .wl-empty p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 24px;
  }

  /* ── Toast ── */
  .wl-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--green);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    max-width: 300px;
  }

  .wl-toast.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Responsive ── */
  @media (max-width: 640px) {
    .wl-title { font-size: 22px; }
    .wl-grid  { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .wl-card-img { height: 150px; }
  }