.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 120px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 64px;
}

.header-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pink-line {
    width: 4px;
    height: 48px;
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.main-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: #111827;
    letter-spacing: -0.025em;
}

.subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 576px;
    margin: 0 auto;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 12px;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 32px;
    text-decoration: none;
}

.back-button:hover {
    background: #f9fafb;
    border-color: #00b894;
    color: #00b894;
    transform: translateX(-4px);
}

/* Layout */
.wishlist-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .wishlist-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Wishlist Items */
.wishlist-items {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.wishlist-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.items-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.clear-wishlist {
    color: #ef4444;
    background: none;
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.clear-wishlist:hover {
    opacity: 0.7;
}

.wishlist-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.wishlist-item:last-child {
    border-bottom: none;
}

.wishlist-item:hover {
    background: rgba(249, 250, 251, 0.5);
    margin: 0 -16px;
    padding: 24px 16px;
    border-radius: 12px;
}

.item-image img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    font-weight: 600;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 8px;
}

.item-name a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.item-name a:hover {
    color: #00b894;
}

.item-description {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 12px;
    line-height: 1.5;
}

.item-price {
    font-weight: 600;
    color: #00b894;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.item-added-date {
    color: #9ca3af;
    font-size: 0.75rem;
}

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.remove-wishlist-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
}

.remove-wishlist-btn:hover {
    background: #fef2f2;
    color: #ef4444;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    min-width: 140px;
    justify-content: center;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.3);
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Summary */
.wishlist-summary {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    height: fit-content;
    position: sticky;
    top: 32px;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    color: #6b7280;
}

.add-all-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-all-to-cart-btn:hover {
    background: #00a085;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 184, 148, 0.3);
}

.wishlist-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.wishlist-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wishlist-actions a:hover {
    background: #f3f4f6;
}

/* Empty Wishlist */
.empty-wishlist {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.empty-wishlist-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.empty-wishlist-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.empty-wishlist-description {
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.shop-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.shop-button:hover {
    background: #00a085;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 184, 148, 0.3);
}

/* Notifications */
#notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
}

.notification {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    animation: slideInRight 0.3s ease;
}

.notification.success {
    border-left-color: #00a085;
}

.notification.error {
    border-left-color: #e74c3c;
}

.notification.info {
    border-left-color: #00b894;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding-top: 100px;
    }

    .wishlist-item {
        flex-direction: column;
        gap: 16px;
    }

    .item-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .wishlist-items, .wishlist-summary {
        padding: 24px;
    }

    .add-to-cart-btn {
        min-width: auto;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wishlist-item {
    animation: slideIn 0.3s ease;
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.9); }
}

.removing {
    animation: fadeOut 0.3s ease-out forwards;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}