/* styles.css */
body {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.card {
    width: 500px;
    height: 500px;
    background-color: mediumpurple;
    position: relative;
    overflow: hidden;
}

.inner-card{
    margin-top: 5%;
    margin-left: 15%;
    width: 350px;
    height: 450px;
    border: 1px solid black;
    border-radius: 10px;
    background: linear-gradient(to bottom, darkgray 60%, white 40%);
    display: block;
    justify-content: center;
    align-items: center;
}

.badge {
    position: absolute;
    top: 35px;
    left: 70px;
    background-color: lightgoldenrodyellow;
    color: black;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 10px 9px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 10;
}

.product-image {
    width: 100%;
    display: block;
}

.card-content {
    padding: 10px;
    margin-top: 5px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.series {
    font-size: 1rem;
    color: #555;
    font-weight: normal;
}

.product-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Media Queries for Responsiveness */

/* Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    .card {
        width: 90%;
        height: auto;
    }

    .inner-card {
        width: 80%;
        height: auto;
        margin: 5% auto;
        padding: 15px;
    }

    .badge {
        top: 38px;
        left: 35px;
        font-size: 0.8rem;
        padding: 8px 7px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .series {
        font-size: 0.9rem;
    }

    .product-description {
        font-size: 0.85rem;
    }
}

/* Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .card {
        width: 75%;
        height: auto;
    }

    .inner-card {
        width: 65%;
        height: auto;
        margin: 5% auto;
        padding: 10px;
    }

    .badge {
        top: 20px;
        left: 40px;
        font-size: 0.75rem;
        padding: 6px 5px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .series {
        font-size: 0.85rem;
    }

    .product-description {
        font-size: 0.8rem;
    }
}