 
article {
     height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    justify-content:space-evenly;
      gap: 10px;
 

}

.container1 {
    border: 1px solid snow;
    border-radius: 10px;
    background-color: rgba(135, 206, 250, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 2px burlywood;
    width: 210px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 5px;
 }

.productCard {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 5px;

}

.buttonbuyB {
    background-color: lightgreen;
    width: 180px;
    height: 30px;
    border-radius: 5px;
    margin: 10px 0 10px 0;
    background-image: url("../ico/7841414_add_buy.png");
    background-size: 25px;
    background-position: left center;
    background-repeat: no-repeat;
    background-position: 2px;

}

.buttonbuy {
    float: right;
     padding: 0;
    margin: 0;
    width: 150px;
    height: 30px;
    border: 0;
    border-radius: 75% 5px 5px 0;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 0%, 0% 0%);
    background-color: unset;
    background-color: forestgreen;
    color: white;
    text-shadow: 1px 1px 2px black;
    font-weight: bold;
    font-style: italic;
    text-align: right;
    padding-right: 5px;
    font-size: 16px;
}

.card1 {
    background-color: rgba(64, 213, 224, 0.4);
    position: relative;
    width: 200px;
    height: 200px;
 
    /* clip-path: circle(150px at top left); */
    /* clip-path: inset(40px 10px 10px 40px round 8px ); */
    /* clip-path: polygon(75% 0%, 90% 50%, 75% 100%, 50% 100%, 70% 50%, 50% 0%); */
    clip-path: path("M 10,40 L 70,40 A 10,10 0,0,0 80,30 L 80,20 A 10,10 0,0,1 90,10 L 180,10 A 10,10 0,0,1 190,20 L 190,180 A 10,10 0,0,1 180,190 L 20,190 A 10,10 0,0,1 10,180 L 10,50 A 10,10 0,0,1 20,40 Z");
}

.card1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;

}


.options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.color {
    width: 10px;
    height: 10px;
    clip-path: circle(60%);
}

.title {
    position: absolute;
    top: 0;
    left: 0;
    height:22px;
    width: 62px;
 
    background-color: gold;
    clip-path: inset(0.5px round 8px 0);
    font-size: 14px;
    font-weight: bold;
    color: black;
    align-items: center;
    justify-content: center;
    padding: 3%;

}

.price {
    color: lightgreen;
    text-shadow: 1px 1px 1px black;
    font-weight: bold;
    font-style: italic;
}


 