/* Button hover styles for HPM */

.view-btn,
.product-card .view-btn,
.product-buttons .view-btn,
.product-actions .view-btn,
a.view-btn {
    background-color: #f39c12;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    text-align: center;
}

.view-btn:hover,
.product-card .view-btn:hover,
.product-buttons .view-btn:hover,
.product-actions .view-btn:hover,
a.view-btn:hover {
    background-color: white;
    color: #f39c12 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    border: 1px solid #f39c12;
    text-decoration: none;
}

.view-btn:active,
.product-card .view-btn:active,
.product-buttons .view-btn:active,
.product-actions .view-btn:active,
a.view-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

/* Similar style for View Details buttons in product cards */
.deal-btn {
    background-color: #f39c12;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid transparent;
}

.deal-btn:hover {
    background-color: white;
    color: #f39c12 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    border: 1px solid #f39c12;
}

.deal-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}
