/* Product View Button Styles */
.product-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.products-thumb:hover .product-view-overlay {
    opacity: 1;
    visibility: visible;
}

.view-product-btn {
    background: #fff;
    color: #111636;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-product-btn:hover {
    background: #cb8161;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.products-thumb {
    position: relative;
    overflow: hidden;
}