.product-card-wrapper {
    height: 100%;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 15px;
    min-height: 70px;
    /* equal text height */
    margin-bottom: 20px;
}

.download-btn {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 13px;
    background: #086ad8;
    color: white;
    border: none;
}


.download-btn:hover {
    background: #065ebf;
}

/* Mobile footer center */
@media (max-width: 767px) {

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-bottom {
        text-align: center !important;
    }

    .footer-brand .social-links {
        justify-content: center !important;
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .footer-logo {
        margin: 0 auto 15px auto;
        display: block;
    }
}

/* HAMBURGER MENU CSS (kept from before) */
#mobileMenuOpen {
    cursor: pointer;
    z-index: 9999;
    position: absolute;
    right: 15px;
    top: 25px;
    width: 30px;
    height: 25px;
}

#mobileMenuOpen span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 5px;
    background-color: #0079ff !important;
    border-radius: 3px;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    transition: right .3s ease;
    z-index: 100000;
    padding: 20px;
    visibility: hidden;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.open {
    right: 0;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.close-btn {
    font-size: 35px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 0.7;
}

/* ------------------------------------------
MODERN PRODUCT CARDS (NEW DESIGN)
-------------------------------------------*/

/* Outer wrapper for consistent spacing */
.product-card-wrapper {
    height: 100%;
}

/* Card Container – smaller, cleaner, premium */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: visible;

    /* Smooth elegant shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

    transition: all 0.25s ease;
}

/* Hover effect (premium hover) */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ------------------------------------------
IMAGE AREA → Perfectly uniform for all cards
-------------------------------------------*/
.product-card img {
    width: 100%;
    height: 180px;
    /* smaller image height */
    object-fit: contain;
    /* fits all images perfectly */
    padding: 10px;
    border-radius: 12px;

    background: #f8f9fc;
    /* soft BG so images blend well */
    margin-bottom: 15px;
}

/* ------------------------------------------
TITLE & DESCRIPTION
-------------------------------------------*/
.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    min-height: 60px;
    margin-bottom: 20px;
}

/* ------------------------------------------
DOWNLOAD BUTTON
-------------------------------------------*/
.download-btn {
    background: #086ad8;
    border-radius: 10px;
    font-size: 15px;
    padding: 10px 18px;
    color: #fff;
    display: inline-block;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background: #065ebf;
}