/* Стили для кнопок с подсветкой при наведении */

/* Кнопки товара */
.product-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Кнопка "Add to Cart" */
#add-to-cart-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

#add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
}

/* Кнопка "Add to Wishlist" */
#add-to-wishlist-btn {
    background-color: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#add-to-wishlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db !important;
}

#add-to-wishlist-btn:hover svg {
    fill: #374151 !important;
}

#add-to-wishlist-btn svg {
    transition: fill 0.3s ease;
}

/* Кнопки в карточках товаров */
.cursor-product-card__btn,
.item__btn {
    transition: all 0.3s ease;
}

.cursor-product-card__btn:hover,
.item__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Кнопки wishlist в карточках */
.item__like,
.cursor-product-card__like {
    transition: all 0.3s ease;
}

.item__like:hover,
.cursor-product-card__like:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Анимация для всех кнопок */
.btn, button, .product-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover, button:hover, .product-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Кнопка Share с интерактивностью */
#share-product-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #333333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#share-product-btn:hover {
    background: #333333;
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

#share-product-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

#share-product-btn svg {
    transition: transform 0.3s ease;
}

#share-product-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}



