.wishlist-hero {
    margin-top: 150px;
    padding: 90px 0 70px;
    text-align: center;
}

.wishlist-hero h1 {
    font-size: 72px;
    margin: 20px 0;
    color: #06298b;
}

.header .icons svg{
    stroke: #06298b;
}
.header .menu a{
    color: #06298b;
}
.wishlist-hero small {
    color: #c0392b;
    font-weight: 700;
    letter-spacing: 2px;
}

.wishlist-hero h1 {
    margin: 14px 0;
    font-size: clamp(34px, 5vw, 64px);
}

.wishlist-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

.wishlist-alert {
    margin-bottom: 26px;
    padding: 16px 20px;
    border-radius: 18px;
    background: #eaf7ee;
    color: #237a3b;
    font-weight: 700;
}

.wishlist-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
    align-items: flex-start;
}

.wishlist-form-card,
.wish-card,
.empty-wishlist {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.wishlist-form-card {
    position: sticky;
    top: 120px;
    padding: 32px;
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff1e9;
    color: #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.wishlist-form-card h2 {
    margin-bottom: 24px;
}

.wishlist-form-card label {
    display: block;
    margin-bottom: 18px;
    color: #333;
    font-weight: 700;
}

.wishlist-form-card input,
.wishlist-form-card textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    resize: vertical;
}

.wishlist-form-card input:focus,
.wishlist-form-card textarea:focus {
    border-color: #c0392b;
}

.wishlist-form-card button {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 15px 22px;
    background: #111;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.wishlist-items {
    display: grid;
    gap: 20px;
}

.wish-card {
    padding: 28px;
    border: 1px solid transparent;
}

.wish-top,
.wish-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.wish-status,
.wish-votes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 800;
}

.wish-status {
    background: #f7f7f7;
    color: #333;
}

.wish-votes {
    background: #fff1e9;
    color: #c0392b;
}

.wish-card h3 {
    margin: 20px 0 10px;
    font-size: 24px;
}

.wish-card p {
    color: #666;
    line-height: 1.7;
}

.wish-bottom {
    margin-top: 24px;
    color: #777;
}

.wish-bottom form button {
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    background: #c0392b;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wish-bottom form button:disabled {
    background: #ddd;
    color: #777;
    cursor: not-allowed;
}

.status-preparing {
    border-color: #f1c40f;
}

.status-preparing .wish-status {
    background: #fff8d8;
    color: #9a7700;
}

.status-available {
    border-color: #2ecc71;
}

.status-available .wish-status {
    background: #eaf7ee;
    color: #237a3b;
}

.empty-wishlist {
    padding: 60px 30px;
    text-align: center;
}

.empty-wishlist svg {
    width: 52px;
    height: 52px;
    color: #c0392b;
    margin-bottom: 18px;
}

.empty-wishlist p {
    color: #666;
}

@media (max-width: 1000px) {
    .wishlist-layout {
        grid-template-columns: 1fr;
    }

    .wishlist-form-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .wish-top,
    .wish-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
