.gyfthint-wishlist-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gyfthint-wishlist-wrapper {
    position: relative;
    display: inline-block;
}

.gyfthint-wishlist-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gyfthint-wishlist-icon {
    color: inherit;
}

.gyfthint-wishlist-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.gyfthint-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
}

.gyfthint-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.gyfthint-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.gyfthint-drawer.open .gyfthint-drawer-overlay {
    opacity: 1;
}

.gyfthint-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
    border-left: 1px solid #e5e5e5;
}

.gyfthint-drawer.open .gyfthint-drawer-content {
    transform: translateX(0);
}

.gyfthint-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.gyfthint-drawer-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #000000 !important;
}

.gyfthint-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.gyfthint-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    color: #000000 !important;
}

.gyfthint-drawer-body p {
    color: #000000 !important;
}

.gyfthint-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666 !important;
}

.gyfthint-wishlist-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.gyfthint-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.gyfthint-item-details {
    flex: 1;
}

.gyfthint-item-details h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #000000 !important;
}

.gyfthint-item-date {
    font-size: 11px;
    color: #999 !important;
    margin: 0 0 8px 0;
}

.gyfthint-item-quantity {
    font-size: 12px;
    color: #333 !important;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.gyfthint-item-price {
    margin: 4px 0;
}

.gyfthint-item-price .current-price {
    font-weight: bold;
    margin-right: 8px;
    color: #000000 !important;
}

.gyfthint-item-price .original-price {
    text-decoration: line-through;
    color: #999 !important;
}

.gyfthint-variant {
    font-size: 12px;
    color: #666;
    margin: 4px 0;
}

.gyfthint-variant-color,
.gyfthint-variant-size {
    font-size: 12px;
    color: #666;
    margin: 4px 0;
}

.gyfthint-item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gyfthint-buy-btn {
    background: #fda329;
    color: black;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.gyfthint-delete-btn,
.gyfthint-edit-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 6px;
    cursor: pointer;
    border-radius: 4px;
}

.gyfthint-delete-btn:hover,
.gyfthint-edit-btn:hover {
    background: #f5f5f5;
}

/* Login Modal Styles */
.gyfthint-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.gyfthint-modal.show {
    display: block;
}

#gyfthintModal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#gyfthintModal .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    text-align: center;
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    height: auto;
    border-radius: 20px;
}

#gyfthintModal .modal-content img {
    height: 300px;
}

.gyfthint-modal-close {
    color: #333;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 0px;
    z-index: 999999;
    cursor: pointer;
}

.gyfthint-modal-close:hover,
.gyfthint-modal-close:focus {
    color: #000;
}

.gyfthint__button_modal {
    background-color: #fda329;
    font-family: inherit;
    color: #fff;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: none !important;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
    border-radius: 10px;
}

#gyfthintModal #signupButton {
    width: 100%;
    background-color: #fda329;
    color: #fff;
    border-radius: 10px;
    margin-top: 5px;
}

#gyfthintModal #loginButton {
    width: 100%;
    margin-top: 0px;
    background: none;
    color: #101b6d;
    text-decoration: underline;
}
