/**
 * Wishlist Icon CSS styles
 * 
 * These styles attempt to match the Motta theme design for header icons
 */

/* Basic structure */
.header-wishlist {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px 0 0;
    position: relative;
    height: 100%;
}

/* Link style */
.wishlist-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Icon style */
.wishlist-icon {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

/* Text style */
.wishlist-text {
    font-size: 11px;
    line-height: 1;
    font-weight: normal;
    text-transform: none;
    padding-top: 2px;
}

/* Hover state */
.wishlist-icon-link:hover .wishlist-icon,
.wishlist-icon-link:focus .wishlist-icon {
    color: #f68872; /* Common accent color, can be adjusted to match theme */
}

/* Match Motta theme specific layout */
.header-items {
    display: flex;
    align-items: center;
}

.header-items .header-wishlist,
.header-items .header-account {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

/* Force specific layout from screenshot */
.header-wishlist {
    margin-right: 20px;
    padding-top: 0;
    vertical-align: top;
}

/* Force alignment with account icon */
.header-account,
.header-wishlist {
    padding-top: 0;
    padding-bottom: 0;
    display: inline-flex;
    vertical-align: top;
}

/* Ensure consistent spacing and positioning */
.wishlist-icon,
.account-icon {
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .header-wishlist {
        margin-right: 10px;
    }
    
    .wishlist-text {
        font-size: 10px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .header-wishlist {
        margin-right: 5px;
    }
    
    .wishlist-icon {
        font-size: 16px;
        margin-bottom: 3px;
    }
} 