.product {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin: 50px 0;
}

.product-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    width: 1200px;
}

.product-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.product-title h2 span {
    color: orange;
}

.product-title p {
    color: gray;
    font-size: 14px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.product-bottom .swiper {
    width: 100%;
    background-color: white;
    padding: 15px 0px;
    display: flex;
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(245, 245, 245, 0.5);
    border: 2px solid rgba(128, 128, 128, 0.1);
    width: 290px;
    padding: 20px;
    position: relative;

    /* Background Code */
    --r: 30px;
    --s: 70px;
    --a: 50deg;
    --p: 50%;
    aspect-ratio: 3/2;
    border-radius: var(--r);
    --_m: calc(100% - var(--r)), #000 calc(100% - 1px), #0000;
    --_d: (var(--s) + var(--r))*cos(var(--a));
    mask:
        radial-gradient(var(--r) at calc(var(--p) + var(--_d)) var(--_m)),
        radial-gradient(var(--r) at calc(var(--p) - var(--_d)) var(--_m)),
        radial-gradient(var(--s) at var(--p) calc(100% + sin(var(--a))*var(--s)),
            #0000 100%, #000 calc(100% + 1px)) 0 calc(var(--r)*(sin(var(--a)) - 1)) no-repeat,
        linear-gradient(90deg, #000 calc(var(--p) - var(--_d)), #0000 0 calc(var(--p) + var(--_d)), #000 0);
}

.darsad-takhfif {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: red;
    width: 30px;
    height: 30px;
    font-size: 10px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    position: relative;
}

.product-card-img #productimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
}

.product-card-img #shadow {
    position: absolute;
    z-index: -1;
    width: 120px;
    opacity: .7;
}

.product-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: #2c3f5d;
    font-size: 16px;
    text-decoration: none;
}

.product-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    border-top: 1px dotted black;
    padding-top: 20px;
}

.product-about-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.product-about-price del {
    color: gray;
    font-size: 13px;
}

.product-about-price p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #2c3f5d;
    font-size: 17px;
}

.product-about-price p span {
    font-size: 12px;
}

.product-about-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #2c3f5d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    transition: all .5s;
}

.product-about-btn:hover {
    background-color: red;
    box-shadow: 0 0 10px red;
}

.product-all {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Download-button {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    padding: 7px 30px;
    color: white;
    background: #2c3f5d;
    position: relative;
    border-radius: 5px;
    transition: all .5s;
}

.Download-button:hover {
    box-shadow: 0 0 20px rgba(44, 63, 93, .5);
}

.Download-button span {
    transform: translateY(-1px);
}

.Download-button::before {
    content: "";
    width: 6px;
    height: 40%;
    background-color: white;
    position: absolute;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    left: 0;
    transition: all 0.2s;
}

.Download-button::after {
    content: "";
    width: 6px;
    height: 40%;
    background-color: white;
    position: absolute;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    right: 0;
    transition: all 0.2s;
}

.Download-button:hover::before,
.Download-button:hover::after {
    height: 60%;
}