* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    position: relative;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    background-color: #e6e6e6 !important;
    backdrop-filter: blur(25px) !important;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px !important;
}

body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 45%;
    object-fit: cover;
    padding: 30px;
    border-radius: 40px;
}

.swiper-button-next,
.swiper-button-prev {
    top: 185px !important;
}

.swiper-button-next {
    right: 30px !important;
}

.swiper-button-prev {
    left: 30px !important;
}

.urun-isim {
    display: inline-block;
    margin-bottom: 5px;
    width: 100%;
    font-weight: 600;
    color: #ff0c0c;
    line-height: 22px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

span {
    font-size: 15px;
    color: #666;
}
hr {
    margin: 5px;
    border: 0;
    border-top: 1px solid #eee;
}

.button {
    padding: 10px;
    margin: 20px;
    background-color: rgb(177, 35, 35);
    width: 90%;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
    border: none;
}

.button > span {
    color: white;
}

.rating-stars {
    width: 50%;
    padding: 10px;
    border-radius: 40%;
}

input {
    display: none;
}

label {
    width: 5vmin;
    height: 5vmin;
    background: #000b;
    display: inline-flex;
    cursor: pointer;
    margin: 0.5vmin 0.65vmin;
    transition: all 1s ease 0s;
    clip-path: polygon(
            50% 0%,
            66% 32%,
            100% 38%,
            78% 64%,
            83% 100%,
            50% 83%,
            17% 100%,
            22% 64%,
            0 38%,
            34% 32%
    );
}



label:before {
    width: 90%;
    height: 90%;
    content: "";
    background: orange;
    z-index: -1;
    display: block;
    margin-left: 5%;
    margin-top: 5%;
    clip-path: polygon(
            50% 0%,
            66% 32%,
            100% 38%,
            78% 64%,
            83% 100%,
            50% 83%,
            17% 100%,
            22% 64%,
            0 38%,
            34% 32%
    );
    background: linear-gradient(
            90deg,
            yellow,
            orange 30% 50%,
            #184580 50%,
            70%,
            #173a75 100%
    );
    background-size: 205% 100%;
    background-position: 0 0;
}

label:hover:before {
    transition: all 0.25s ease 0s;
}

input:checked + label ~ label:before {
    background-position: 100% 0;
    transition: all 0.25s ease 0s;
}

input:checked + label ~ label:hover:before {
    background-position: 0% 0;
}
