/* ============================================
   WISHLIST PAGE STYLES
   ============================================ */

.wishlist-page-wrapper {
    padding: 40px 0 60px;
    min-height: 60vh;
    background: #F5F5F5;
}

.wishlist-page-wrapper .container_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
}

.wishlist-page-wrapper .container_inner {
    padding-right: 10px !important;
}

.wishlist-header {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wishlist-header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wishlist-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #231F20;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.wishlist-title-icon {
    color: #EE2722;
    flex-shrink: 0;
}

.wishlist-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    background: #EE2722;
    color: #FFFFFF;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    margin-left: auto;
}

.wishlist-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #666666;
    margin: 0;
}

/* Products Grid - используем тот же класс что и на главной, без переопределений */

/* Empty State */
.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.empty-icon-wrapper {
    margin-bottom: 32px;
}

.empty-icon {
    width: 120px;
    height: 120px;
    color: #E5E5E5;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8;
    border-radius: 50%;
}

.empty-icon svg {
    width: 80px;
    height: 80px;
}

.empty-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #231F20;
    margin: 0 0 16px 0;
}

.empty-text {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #666666;
    margin: 0 0 40px 0;
    max-width: 400px;
}

.empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: #EE2722;
    color: #FFFFFF;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(238, 39, 34, 0.2);
}

.empty-button:hover {
    background: #D01E1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 39, 34, 0.3);
    text-decoration: none;
    color: #FFFFFF;
}

.empty-button:active {
    transform: translateY(0);
}

/* Mobile Menu Wishlist Link */
.menu-link-wishlist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.wishlist-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: #EE2722;
    color: #FFFFFF;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    margin-left: 8px;
}

.wishlist-count-badge:empty {
    display: none;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .wishlist-page-wrapper {
        padding: 20px 0 40px;
    }
    
    .wishlist-page-wrapper .container_inner {
        padding: 0 16px;
    }
    
    .wishlist-header {
        padding: 24px 20px;
        margin-bottom: 24px;
        border-radius: 10px;
    }
    
    .wishlist-title {
        font-size: 28px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .wishlist-title-icon {
        width: 28px;
        height: 28px;
    }
    
    .wishlist-count-badge {
        min-width: 28px;
        height: 28px;
        font-size: 13px;
        margin-left: auto;
    }
    
    .wishlist-subtitle {
        font-size: 14px;
    }
    
    .wishlist-page-wrapper .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wishlist-empty {
        padding: 60px 20px;
        border-radius: 10px;
    }
    
    .empty-icon-wrapper {
        margin-bottom: 24px;
    }
    
    .empty-icon {
        width: 100px;
        height: 100px;
    }
    
    .empty-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .empty-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .empty-text {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .empty-button {
        padding: 12px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .wishlist-page-wrapper .container_inner {
        padding: 0 12px;
    }
    
    .wishlist-header {
        padding: 20px 16px;
    }
    
    .wishlist-title {
        font-size: 24px;
    }
    
    .wishlist-title-icon {
        width: 24px;
        height: 24px;
    }
    
    .wishlist-count-badge {
        min-width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .wishlist-page-wrapper .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wishlist-empty {
        padding: 50px 16px;
    }
    
    .empty-icon {
        width: 80px;
        height: 80px;
    }
    
    .empty-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .empty-title {
        font-size: 20px;
    }
    
    .empty-text {
        font-size: 13px;
    }
    
    .empty-button {
        padding: 10px 28px;
        font-size: 14px;
    }
}
