@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,500&display=swap');

.product {
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Media Queries pour .product */
@media (max-width: 480px) {
    .product {
        font-size: 1rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .product {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .product {
        font-size: 1.8rem;
    }
}

@media (min-width: 901px) {
    .product {
        font-size: 2rem;
    }
}

.unique-collection {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, var(--orange) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.unique-content {
    height: 30rem;
    width: 20rem;
    background-color: #E6E6E6;
    border: .2rem solid rgba(0, 0, 0, 0.1);
    border-radius: .7rem;
    border-bottom-width: .4rem;
    overflow: hidden;
}

.unique-content img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;
}

.unique-text-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
}

.unique-text-content h3 {
    color: black;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.unique-text-content p {
    color: black;
    max-width: 100%;
    font-size: .8rem;
    font-weight: 400;
    text-align: center;
    margin: 0.5rem 0;
}

.uniq-button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
}

.produit {
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .unique-collection {
        max-height: 35rem;
    }
    .unique-content {
        height: 30rem;
        width: 24rem;
    }
    .unique-content img {
        height: 20rem;
    }
    .unique-text-content h3 {
        font-size: 1.3rem;
    }
    .unique-text-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .unique-collection {
        max-height: 32rem;
    }
    .unique-content {
        height: 25rem;
        width: 16rem;
    }
    .unique-content img {
        height: 18rem;
    }
    .unique-text-content h3 {
        font-size: 1.2rem;
    }
    .unique-text-content p {
        font-size: 0.7rem;
    }
}

@media (min-width: 901px) {
    .unique-collection {
        max-height: 35rem;
    }
    .unique-content {
        height: 32rem;
        width: 25rem;
    }
    .unique-content img {
        height: 25rem;
    }
    .unique-text-content h3 {
        font-size: 1.3rem;
    }
    .unique-text-content p {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .unique-collection {
        max-height: 32rem;
    }
    .unique-content {
        height: 30rem;
        width: 23rem;
    }
    .unique-content img {
        height: 23rem;
    }
    .unique-text-content h3 {
        font-size: 1.3rem;
    }
    .unique-text-content p {
        font-size: 0.8rem;
    }
}
