.main {
    min-height: 90vh;
}

.section-title-container {
    padding: 2vh 2vw 0 2vw;
}

.see-all-products {
    display: flex;
    flex-wrap: wrap; /* Add flex-wrap to ensure proper wrapping */
}

.product-card {
    width: 33%; /* Change from 33% to 50% for 2 products per row */
    padding: 2%; /* Slightly reduced padding for better spacing */
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Ensure padding is included in width calculation */
}

.product-card-inner {
    background-color: white;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-inner:hover {
    transform: translateY(-5px);
}

.product-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--secondary);
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0;
}

.product-info {
    flex: 1;
    padding: 1.5rem; /* Slightly reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info .price {
    color: var(--secondary);
    font-size: 20px;
}

.product-info h3 {
    color: var(--secondary);
}


.product-info .get-product-btn {
    width: 100%;
    font-size: clamp(0.8rem, calc(2vw + 7px), 1.3rem);
    padding: clamp(6px, calc(3vw - 3px), 12px) 6px;
    background-color: var(--secondary);
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.2);
}

.product-info .get-product-btn:hover {
    background-color: #0284c7; /* Darker blue */
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.3);
}

.product-info .view-details-btn {
    width: 100%;
    font-size: clamp(0.8rem, calc(2vw + 7px), 1.3rem);
    padding: clamp(6px, calc(3vw - 3px), 12px) 6px;
    background-color: rgb(187, 187, 187);
    box-shadow: 0 4px 6px rgba(71, 71, 71, 0.2);
    margin-bottom: 10px;
}

.product-info .view-details-btn:hover {
    background-color: #d2d2d2; /* Darker blue */
    box-shadow: 0 6px 12px rgba(71, 71, 71, 0.3);
}