@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.product-landing-section {
    padding: 80px 0 !important;
    background: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
}

.product-landing-head {
    margin-bottom: 50px;
}

.product-landing-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #cd0808;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.product-landing-head h2 {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
    line-height: 1.1 !important;
}

.product-landing-head h2 span {
    color: #cd0808;
}

.product-landing-head p {
    font-size: 16px !important;
    color: #666 !important;
    max-width: 800px;
    line-height: 1.6 !important;
}

/* Grid Layout */
.product-landing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.product-landing-card {
    min-height: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    position: relative;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e8edf4;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.product-landing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 8, 8, 0.18);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.product-card-content {
    width: 48%;
    padding: 26px 24px 112px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
    position: relative;
}

.product-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(205, 8, 8, 0.08);
    color: #e00000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.product-card-content h3 {
    font-size: 27px !important;
    font-weight: 800 !important;
    color: #d90000 !important;
    margin-bottom: 12px !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
}

.product-card-content p {
    font-size: 15px !important;
    color: #1f2937 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

.product-card-media {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 72%;
    z-index: 1;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.18) 16%, black 44%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.18) 16%, black 44%);
}

.product-card-points {
    position: absolute;
    left: 0px;
    right: 0;
    bottom: 0;
    min-height: 88px;
    padding: 14px 18px 14px 12px;
    background: rgba(255, 255, 255, 0.829);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    border-top-right-radius: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    z-index: 3;
    /* box-shadow: 0 -8px 22px rgba(255, 255, 255, 0.7); */
    margin-right: 70px;
}

.product-card-points span {
    min-width: 0;
    padding: 0 10px;
    color: #1f2937;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.28;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card-points span + span {
    border-left: 1px solid #e3e8ef;
}

.product-card-points i {
    color: #e00000;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 991px) {
    .product-landing-grid {
        grid-template-columns: 1fr;
    }

    .product-landing-card {
        min-height: 330px;
    }
}

@media (max-width: 575px) {
    .product-landing-section {
        padding: 54px 0 !important;
    }

    .product-landing-head h2 {
        font-size: 34px !important;
    }

    .product-landing-card {
        min-height: 430px;
    }

    .product-card-content {
        width: 68%;
        padding: 20px 18px 150px;
    }

    .product-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
        font-size: 23px;
    }

    .product-card-content h3 {
        font-size: 23px !important;
    }

    .product-card-content p {
        font-size: 14px !important;
    }

    .product-card-media {
        width: 88%;
    }

    .product-card-points {
        left: 14px;
        min-height: 140px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top-right-radius: 24px;
    }

    .product-card-points span:nth-child(3) {
        border-left: 0;
    }

    .product-card-points span:nth-child(n + 3) {
        border-top: 1px solid #e3e8ef;
    }
}
