/* Compare Button Styles */
.compare-btn {
    width: 100%;
    text-align: center;
    padding: 10px 4px;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 1.125rem;
    border: 2px solid #0288D1;
    color: #0288D1;
    background-color: transparent;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.compare-btn:hover {
    background-color: #0288D1;
    color: white;
}

.compare-btn:active {
    transform: scale(0.98);
}

/* Price section styling */
.product-price-section {
    margin-bottom: 0.25rem;
}

/* Product information section - fixed min height for consistent layout */
.product-information {
    min-height: 216px;
}

/* Mobile adjustments */
@media (max-width: 639px) {
    .product-information {
        min-height: 236px;
    }

    .compare-btn {
        font-size: 0.875rem;
        padding: 8px 4px;
    }
}

