* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', 'Poppins', sans-serif;
}

body {
    background: linear-gradient(180deg, #7c4dff, #9575cd);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    text-align: center;
}



.title-card {
    text-align: center;
    left: -50%;
}

.title-card h1 {
    font-size: 62px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;

}

.alpha {
    margin-top: 16px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.title-card p {
    margin-top: 5px;
    color: #555;
    font-size: 18px;
}

.content-card {
    text-align: center;
    margin-bottom: 100px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9999;
    gap: 16px;
    margin: 16px 0;
}

.social img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 6px;
    background: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.tabs {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    background: none;
    transform: scale(0.75);
    padding: 0;
    position: relative;
    z-index: 9999;
}

.tab {
    flex: 1;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000;
    background: #fff;
    transition: all 0.25s ease;
    border: none;
    margin: 0;
}

.tab:first-child {
    border-radius: 0 16px 16px 0;
}

.tab:last-child {
    border-radius: 16px 0 0 16px;
}

.tab img.icon {
    width: 22px;
    height: 22px;
    opacity: 0.7;
    transition: 0.3s;
}

.tab.active {
    background: linear-gradient(135deg, #42a5f5, #5c6bc0);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
    z-index: 1;
}

.tab.active img.icon {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.tab:hover {
    transform: translateY(-2px) scale(1.02);
}

.tab:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-section {
    position: fixed;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 50%;
    width: 100%;
    z-index: 1000;
    max-width: 500px;
}

.product-img {
    position: relative;
    display: flex;
    height: 350px;
    padding-top: 25px;
    transform: scale(1);
    justify-content: center;
    perspective: 1400px;
    z-index: 2;
}

.product-img img {
    width: 260px;

    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    transform: rotateY(15deg) rotateX(10deg) scale(1.1);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}


@keyframes float {
    0% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }

    50% {
        transform: translateY(-40px) rotateX(6deg) rotateY(-6deg);
    }

    100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
}

.price-card {
    position: relative;
    background: linear-gradient(135deg, #f5f9ff, #e8f0ff);
    border-radius: 20px;
    padding: 20px;
    width: 80%;
    height: 170px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
    text-align: center;
}

.price-card h2 {
    font-size: 32px;
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 28px;
    font-weight: bold;
}

/*---------------*/
.product-img {
    width: 100%;
    overflow: visible;
}

.product-swiper {
    overflow: visible;
    height: 400px;
    padding-bottom: -140px;
}

.product-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-swiper .swiper-slide img {
    margin-top: 120px;
    margin-bottom: 90px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.5));
}

.product-swiper .swiper-slide-active img {
    transform: scale(1.6);
    filter: drop-shadow(0 35px 45px rgba(255, 255, 255, 0.6));
}

.product-swiper .swiper-slide img {
    width: 220px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: none;
}

.product-swiper .swiper-slide-active img {
    transform: scale(1.4) translateY(-10px);

    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.7));
}

.product-swiper .swiper-slide-prev img,
.product-swiper .swiper-slide-next img {
    transform: scale(0.9);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));

}

@media (min-width: 500px) and (max-width: 900px) {

    .tabs {
        display: flex;
        justify-content: center;
        margin-top: 16px;
        background: none;
        padding: 0;
        transform: scale(.89);
        position: relative;
        z-index: 9999;
    }

    .tab {
        flex: 1;
        padding: 20px 30px;
        font-size: 21px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        color: #000;
        background: #fff;
        border: none;
        transition: all 0.25s ease;
    }

    .tab img.icon {
        width: 32px;
        height: 32px;
    }

    .tab.active {
        background: linear-gradient(135deg, #42a5f5, #5c6bc0);
        color: #fff;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        transform: scale(1);
        z-index: 1;
    }

    /* السيكشن */
    .product-section {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1000;
        width: 100%;
        max-width: 850px;
        padding: 34px;
    }

    .product-img {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        perspective: 1400px;
        z-index: 2;
        margin-bottom: -60px;
    }

    .product-img img {
        width: 420px;
        animation: float 6s ease-in-out infinite;
        transition: transform 0.5s ease;
        filter: none;
    }

    .product-img::after {
        content: "";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 25px;
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3), transparent 70%);
        border-radius: 50%;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .product-swiper {
        overflow: visible;
        height: 700px;
        width: 100%;
    }

    .product-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        margin-top: 70px;
        align-items: center;
        transition: transform 0.3s ease, filter 0.3s ease;
    }


    .product-swiper .swiper-slide-active img {
        transform: scale(1.8) translateY(-20px);
        filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.846));
    }

    .product-swiper .swiper-slide-active .product-img::after {
        width: 80%;
        height: 35px;
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4), transparent 80%);
    }

    .price-card {
        position: relative;
        background: linear-gradient(135deg, #f5f9ff, #e8f0ff);
        border-radius: 20px;
        width: 85%;
        max-width: 700px;
        height: 240px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        text-align: center;
        z-index: 1;
        padding-top: 40px;
    }

    .price-card h2 {
        font-size: 42px;
        margin-top: 30px;
        font-weight: 600;
    }

    .price-card .price {
        font-size: 36px;
        font-weight: bold;
    }


    .title-card {
        text-align: center;
    }

    .title-card h1 {
        font-size: 100px;
        font-weight: 600;
        font-family: 'Cinzel', serif;
        letter-spacing: 3px;

    }

    .alpha {
        margin-top: 16px;
        color: #555;
        font-size: 24px;
        font-weight: 600;
    }

    .title-card p {
        margin-top: 5px;
        color: #555;
        font-size: 28px;
    }

    .content-card {
        text-align: center;
        margin-bottom: 100px;
    }

    .social {
        display: none !important;
    }


}