.product .container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 0px 80px;
}

.product .container .product-card {
    width: 400px;
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    margin: 0 auto;
}

.product .container .product-image-box {
    background: #f7f7f8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.product .container .product-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product .container .product-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: var(---black);
    margin: 0 0 10px 0;
}

.product .container .product-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    color: var(---black);
    letter-spacing: 0.3px;
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

.product .container .shop-btn {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
    border: 1px solid var(---black);
    border-radius: 8px;
    background: #fff;
    color: var(---black);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.product .container .shop-btn:hover {
    background: var(---blue);
    color: var(---white);
    border: none;
}




@media (max-width:1510px) {
    .product .container {
    padding: 0px 0px;
}
}
@media (max-width:1280px) {
    .product .container .product-card {
        width: 350px;
        background: #ffffff;
        border: 1px solid #e9e9e9;
        border-radius: 16px;
        padding: 20px;
        text-align: left;
        margin: 0 auto;
    }

    .product .container .product-image-box {
        background: #f7f7f8;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 220px;
    }

    .product .container .product-image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product .container .product-title {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.3;
        color: var(---black);
        margin: 0 0 10px 0;
    }

    .product .container .product-desc {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        color: var(---black);
        letter-spacing: 0.3px;
        margin: 0 0 18px 0;
        text-transform: uppercase;
    }

    .product .container .shop-btn {
        padding: 20px 0;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width:1120px) {
    .product .container .product-card {
        width: 300px;
        background: #ffffff;
        border: 1px solid #e9e9e9;
        border-radius: 16px;
        padding: 20px;
        text-align: left;
        margin: 0 auto;
    }

    .product .container .product-image-box {
        background: #f7f7f8;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 220px;
    }

    .product .container .product-image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product .container .product-title {
        font-size: 18px;
        font-weight: 800;
        line-height: 1.3;
        color: var(---black);
        margin: 0 0 10px 0;
    }

    .product .container .product-desc {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: var(---black);
        letter-spacing: 0.3px;
        margin: 0 0 18px 0;
        text-transform: uppercase;
    }

    .product .container .shop-btn {
        padding: 15px 0;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width:950px) {
    .product .container .product-card {
        width: 270px;
        background: #ffffff;
        border: 1px solid #e9e9e9;
        border-radius: 16px;
        padding: 20px;
        text-align: left;
        margin: 0 auto;
    }

    .product .container .product-image-box {
        background: #f7f7f8;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 220px;
    }

    .product .container .product-image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product .container .product-title {
        font-size: 16px;
        font-weight: 800;
        line-height: 1.3;
        color: var(---black);
        margin: 0 0 10px 0;
    }

    .product .container .product-desc {
        font-size: 11px;
        font-weight: 500;
        line-height: 1.5;
        color: var(---black);
        letter-spacing: 0.3px;
        margin: 0 0 18px 0;
        text-transform: uppercase;
    }

    .product .container .shop-btn {
        padding: 12px 0;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width:830px) {
    .product .container{
        flex-wrap: wrap;
        gap: 20px;
    }
    .product .container .product-card {
        width: 270px;
        background: #ffffff;
        border: 1px solid #e9e9e9;
        border-radius: 16px;
        padding: 20px;
        text-align: left;
        margin: 0 auto;
    }

    .product .container .product-image-box {
        background: #f7f7f8;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 220px;
    }

    .product .container .product-image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product .container .product-title {
        font-size: 16px;
        font-weight: 800;
        line-height: 1.3;
        color: var(---black);
        margin: 0 0 10px 0;
    }

    .product .container .product-desc {
        font-size: 11px;
        font-weight: 500;
        line-height: 1.5;
        color: var(---black);
        letter-spacing: 0.3px;
        margin: 0 0 18px 0;
        text-transform: uppercase;
    }

    .product .container .shop-btn {
        padding: 12px 0;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width:577px) {
    .product .container .product-card {
        width: 100%;
        background: #ffffff;
        border: 1px solid #e9e9e9;
        border-radius: 16px;
        padding: 20px;
        text-align: left;
        margin: 0 auto;
    }

    .product .container .product-image-box {
        background: #f7f7f8;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 220px;
    }

    .product .container .product-image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product .container .product-title {
        font-size: 26px;
        font-weight: 800;
        line-height: 1.3;
        color: var(---black);
        margin: 0 0 10px 0;
    }

    .product .container .product-desc {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        color: var(---black);
        letter-spacing: 0.3px;
        margin: 0 0 18px 0;
        text-transform: uppercase;
    }

    .product .container .shop-btn {
        padding: 20px 0;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width:415px) {
    .product .container .product-card {
        width: 100%;
        background: #ffffff;
        border: 1px solid #e9e9e9;
        border-radius: 16px;
        padding: 20px;
        text-align: left;
        margin: 0 auto;
    }

    .product .container .product-image-box {
        background: #f7f7f8;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 220px;
    }

    .product .container .product-image-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product .container .product-title {
        font-size: 18px;
        font-weight: 800;
        line-height: 1.3;
        color: var(---black);
        margin: 0 0 10px 0;
    }

    .product .container .product-desc {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: var(---black);
        letter-spacing: 0.3px;
        margin: 0 0 18px 0;
        text-transform: uppercase;
    }

    .product .container .shop-btn {
        padding: 20px 0;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
    }
}