/* Wishlist Styles */
.wishlist-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background-color: #FFFFFF;
}

.wishlist-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.wishlist-header {
    text-align: center;
    margin-bottom: 60px;
}

.wishlist-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.wishlist-subtitle {
    font-size: 18px;
    color: #666666;
    font-weight: 300;
}

/* Empty State */
.wishlist-empty {
    text-align: center;
    padding: 100px 20px;
    display: none;
}

.wishlist-empty.active {
    display: block;
}

.wishlist-empty svg {
    color: #CCCCCC;
    margin-bottom: 30px;
}

.wishlist-empty h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.wishlist-empty p {
    font-size: 16px;
    color: #666666;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.wishlist-shop-btn {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 40px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.wishlist-shop-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 25px;
    margin-bottom: 40px;
}

/* Wishlist Item - Using product card styles */
.wishlist-item {
    background-color: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.wishlist-item-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    background-color: var(--grey-light);
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.wishlist-item:hover .wishlist-item-image img {
    filter: grayscale(80%);
}

.wishlist-item-info {
    padding: 0;
    text-align: left;
}

.wishlist-item-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-transform: none;
}

.wishlist-item-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist-item-title a:hover {
    color: var(--grey-dark);
}

.wishlist-item-price {
    display: block;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.wishlist-item-colors {
    display: flex;
    gap: 8px;
    margin-top: 0;
    align-items: center;
}

.wishlist-item-colors .color-swatch {
    width: 20px;
    height: 20px;
    border: 1px solid var(--grey-medium);
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 0;
    flex-shrink: 0;
}

.wishlist-item-colors .color-swatch:hover {
    transform: scale(1.1);
}

/* Heart icon styling */
.wishlist-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.wishlist-heart:hover {
    background-color: rgba(255, 255, 255, 1);
    opacity: 0.8;
}

.wishlist-heart svg {
    width: 18px;
    height: 18px;
    color: var(--black);
}

.wishlist-heart.active svg {
    fill: var(--black);
    stroke: var(--black);
}

/* Remove button styling */
.wishlist-remove-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--grey-medium);
    color: var(--black);
    padding: 8px 16px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
}

.wishlist-remove-btn:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.wishlist-remove-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.wishlist-remove-btn span {
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .wishlist-section {
        padding: 100px 0 60px;
    }

    .wishlist-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .wishlist-subtitle {
        font-size: 16px;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .wishlist-item-title {
        font-size: 12px;
    }

    .wishlist-item-price {
        font-size: 12px;
    }

    .wishlist-empty h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .wishlist-section {
        padding: 80px 0 40px;
    }

    .wishlist-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .wishlist-subtitle {
        font-size: 14px;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .wishlist-item-title {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .wishlist-item-price {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .wishlist-empty {
        padding: 60px 20px;
    }

    .wishlist-empty svg {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .wishlist-empty h2 {
        font-size: 20px;
    }

    .wishlist-empty p {
        font-size: 14px;
    }

    .wishlist-shop-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

