* {
    margin: 0;
    /* padding: 0; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* For dummy data and details design */

#display_sv {
    display: flex;
    border-top: 2px solid lightgray;
    border-bottom: 2px solid lightgray;
}

#dummy_sv {
    width: 18%;
    /* border: 1px solid pink; */
    margin-top: 50px;
    margin-left: 10px;
    padding: 10px;
    border: 3px solid blue;
    border-radius: 15px;
    height: 600px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background-color: rgb(213, 213, 224);
}

#details_sv {
    width: 80%;
    /* border: 1px solid pink; */
    margin-top: 50px;
}


#dummy_sv>div>h4:nth-child(1) {
    margin-bottom: 10px;
    margin-top: 10px;
}

#dummy_sv>div>h4:nth-child(5) {
    margin-top: 50px;
}

#dummy_sv>div>h4:nth-child(12) {
    margin-top: 50px;
}

#dummy_sv>div>p {
    margin-bottom: 15px;
    margin-top: 15px;
    color: rgb(232, 102, 102);
    font-size: 14px;
}

#details_sv>p {
    font-size: 30px;
    margin-bottom: 10px;
    color: navy;
}

#filter {
    display: flex;
    justify-content: space-between;
    width: 100;
    height: 100px;
    /* border: 1px solid blue; */
    border-top: 1px solid black;
    border-bottom: 2px solid lightgray;
    align-items: center;
    margin-bottom: 20px;
}

#filter+img {
    /* border: 1px solid red; */
    margin-left: 30%;
}

#product_sv {
    width: 100%;
    /* border: 1px solid blue; */
    border-top: 2px solid lightgray;
    border-bottom: 1px solid black;
    margin-top: 10px;
    margin-bottom: 50px;
}

#filter1 {
    display: flex;
    width: 70%;
    height: 50%;
    /* border: 1px solid orange; */
    background-color: #F2F2F2;
    align-items: center;
    justify-content: space-evenly;
}

#type_sv {
    border: none;
    border-bottom: 2px solid black;
    background-color: #F2F2F2;
    margin-right: 70px;
    padding: 5px;
    cursor: pointer;
    outline: none;
}

#subtype_sv {
    border: none;
    border-bottom: 2px solid black;
    background-color: #F2F2F2;
    padding: 5px;
    cursor: pointer;
    outline: none;
}

#filter1>h4 {
    margin-left: 10px;
}

#filter2 {
    display: flex;
    width: 25%;
    height: 50%;
    /* border: 1px solid orangered; */
    align-items: center;
    justify-content: center;
}

#price_sv {
    border: none;
    padding: 5px 20px;
    border-bottom: 2px solid black;
    background-color: white;
    outline: none;
}

/* Data append */

#container_sv {
    width: 99%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    /* justify-content: center; */
    /* border: 1px solid blue; */
    margin-top: 20px;
}

#container_sv>div {
    /* border: 1px solid; */
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 15px;
    /* padding-bottom: 1px; */
}

.proImg_sv {
    width: 100%;
    transition: transform 0.6s;

}

#container_sv>div:hover {
    box-shadow: rgba(99, 99, 99, 0.6) 0px 2px 8px 0px;
}

.proImg_sv:hover {
    transform: scale(1.1);
}

.proImg_sv:hover {
    background: url("https://cdn.shopify.com/s/files/1/0054/6665/2718/products/KumkumadiFaceOil-02_360x.jpg?v=1652341175") no-repeat;
}

.name_sv {
    position: relative;
    display: block;
    font-weight: 500;
}

.namediv_sv {
    /* border: 1px solid blue; */
    height: 20px;
    overflow: hidden;
}

.probtn_sv:hover {
    margin-bottom: 10px;
    width: 95%;
    border: 1px solid black;
    color: rgb(255, 255, 255);
    background-color: rgb(137, 144, 131);
    padding: 5px;
}

.probtn_sv {
    margin-bottom: 10px;
    width: 90%;
    padding: 5px;
    font-size: 20px;
    font-weight: bolder;
    border: 2px solid black;
    border-radius: 10px;
    color: rgb(243, 242, 238);
    background-color: rgb(71, 93, 75);
    cursor: pointer;
    padding: 5px;
}