* {
    padding: 0;
    margin: 0;
}

body {
    padding-top: 80PX;
    font-family: 'exo', sans-serif;
    background-color: #fff;
}

.clr {
    clear: both;
}

.container {
    margin: auto;
    max-width: 1200px;
}


/* ----------------------------------------------------------------- */




/* Navigation bar */

.navbar {
    background-color: #F5F3FF;
    padding: 16px 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    border-bottom: 2px solid rgba(66, 64, 64, 0.068);
    ;

}

.logo {
    float: left;
    color: #333333;
    font-size: 1.3rem;
    font-weight: bold;
    width: 50%;
    line-height: 40px;
}

.logo img {
    width: 28px;
    vertical-align: middle;
    margin-right: auto;
    background-color: #8E51FF;
    border-radius: 6px;
}

.links {
    float: left;
    width: 50%;
    text-align: left;
    line-height: 40px;
}

.links a {
    position: relative;
    color: black;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    transition: 0.3s;
}

.links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8E51FF;
    transition: width 0.3s ease;
}

.links a:hover {
    color: #8E51FF;
}

.links a:hover::after {
    width: 100%;
}

/* --------------------------------------------------------------------------------------------------- */





/* Product Section */



.product-section {
    background-color: #fff;
    padding: 70px 80px;
}


.pro {
    color: #8E51FF;
    font-weight: bold;
}

.product-image {
    position: relative;
    float: left;
    width: 35%;
    border: 2px solid #d6dce2;
    border-radius: 15px;
    padding: 20px;
    background-color: #f9f9f9;
}

.discount-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: #8E51FF;
    color: white;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.product-image img {
    width: 100%;
    border-radius: 12px;

}


.product-info {
    float: left;
    width: 50%;
    margin-left: 5%;
}

.tags {
    margin-bottom: 20px;
}

.tag {

    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #fff;
    margin-right: 10px;
    background-color: #A684FF;
}



.product-info h1 {
    font-size: 2.4rem;
    color: #222;
    margin: 10px 0 15px;
}

.product-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.price {
    margin-bottom: 25px;
}

.current-price {
    font-size: 1.8rem;
    color: #333;
    font-weight: bold;
    margin-right: 15px;
}

.original-price {
    font-size: 1.1rem;
    color: #777;
    text-decoration: line-through;
}

.discount {
    font-size: 0.9rem;
    color: #E7000B;
    margin-left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    background-color: #FFE2E2;
}

.price p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}


.actions {
    margin-top: 25px;
}

.actions button {
    width: 100%;
    padding: 14px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 15px;
}

.actions button:hover {
    transform: translatex(-10px);
}

.add-to-cart {
    background-color: #6a5acd;
    color: white;
    border: none;
}


.add-to-wishlist {
    background-color: #ffffff;
    color: black;
    border: 2px solid #393944;
}


button img {
    width: 20px;
}

/* ------------------------------------------------------------------------------------------------ */





/* Compare section */


.compare-section {
    background-color: #f4f4f4;
    padding: 70px 80px;
}

.content-compare {
    text-align: center;
    margin-bottom: 40px;
}

.content-compare h2 {
    font-family: sans-serif;
    font-weight: 700;
    color: rgb(51, 51, 51);
    line-height: 40px;
    font-size: 36px;
}

.content-compare p {
    font-family: sans-serif;
    font-weight: 400;
    color: rgb(51, 51, 51);
    line-height: 28px;
    font-size: 20px;
}

.pro {
    color: #8E51FF;
}

.compare-box {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.compare-table th {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px;
    border-bottom: 2px solid #ddd;
}

.compare-table td {
    padding: 18px;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}


.compare-table .main-col {
    background-color: #f5edff;
    font-weight: 600;
    color: #3c1c94;
}

.compare-table thead .main-col {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.compare-table tbody tr:last-child .main-col {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}


.compare-table tr:last-child td {
    border-bottom: none;
}



.icon {
    float: left;
    width: 20px;
    margin-right: 8px;
    margin-top: 2px;
}

.Competitor {

    font-weight: 700;
    color: #6A7282;
    font-size: 14px;
    line-height: 20px;
}

.orange {
    color: #F86900;
}

.highlight-badge {
    background-color: #8E51FF;
    color: #fff;
    padding: 6px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}


.d {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.competitor1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.rating {
    text-align: center;
    margin-top: 8px;
}

.rating img {
    width: 20px;
}

.rating p {
    margin: 6px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    line-height: 28px;
}







.winner {
    background-color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: left;
    margin: 30px auto;
    width: fit-content;
}


.winner-img {
    float: left;
    margin-right: 10px;
    margin-top: 0px;
}

.winner-img img {
    width: 35px;
    height: auto;
}

.winner-con {
    float: left;
    color: #00A63E;
}

.winner-con p {
    margin: 2px;
    padding: 0;
}

.con1 {

    font-weight: 700;
}

.content-compare {
    text-align: center;
    margin-bottom: 40px;
}

/* ----------------------------------------------------------------------------------------------------------- */


/* reviews sec */




.reviews {
    padding: 70px 80px;
    margin: auto;
    text-align: center;
}

.reviews h2 {
    font-weight: 700;
    color: rgb(51, 51, 51);
    line-height: 40px;
    font-size: 36px;
}

.reviews p {
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-size: 20px;
    line-height: 28px;
}

.review-con-con {
    width: 100%;
}

.reviews-stat {
    float: left;
    width: 32%;
    border-radius: 40px;
    border: #cdd4d0 solid 2px;
    position: sticky;
    top: 80px;

}

.people-reviews-container {
    float: right;
    width: 67%;
}

.people-reviews {
    width: 100%;
    margin: auto;
    border-radius: 40px;
    border: #cdd4d0 solid 2px;
    margin-bottom: 20px;
    margin-left: 20px;
}


p.number {
    font-weight: 700;
    color: rgb(51, 51, 51);
    font-size: 60px;
    line-height: 60px;
    margin-top: 45px;
}

p.after-number {
    font-weight: 500;
    color: rgb(51, 51, 51);
    font-size: 16px;
    line-height: 24px;
}


.rating-bars {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    font-family: sans-serif;
    position: relative;
}

.rating-bars::after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background-color: #bcc9c0;
    margin: 15px auto 0;
}


.bar {

    margin: 15px 15px;

}

.stars {
    float: left;
    width: 30px;
    text-align: left;
    font-size: 14px;

}

.progress {
    float: left;
    width: 250px;
    height: 8px;
    background-color: #eee;
    border-radius: 5px;
    margin: 4px 8px 0 8px;

}

.fill {
    height: 150%;
    background-color: #facc15;
    border-radius: 15px;
}

.percent {
    float: left;
    width: 40px;
    font-size: 13px;
    text-align: left;

}

.quality {
    width: 100%;
    margin-bottom: 100px;
}

.recommend {
    float: left;
    width: 50%;

}

p.recommend {
    float: left;
    width: 50%;

}

.Quality-rating {
    float: left;
    width: 50%;
}

p.num1 {
    font-weight: 700;
    color: rgb(51, 51, 51);
    font-size: 24px;
    line-height: 32px;
}

p.num2 {
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-size: 14px;
    line-height: 20px;
}


.info {
    float: left;
    width: 40%;
    margin: 10px 10px;

}

.info-img {
    float: left;
}

.info-img img {
    width: 60px;
    border-radius: 50%;
    border: 2px solid #3c1c94;
}

.info-name {
    float: left;
    margin-left: 10px;
}

.info-name p {
    margin: 2px 0;
}

.info-name .role {
    color: rgb(51, 51, 51);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.Purchase {
    float: right;
    width: 50%;
    text-align: right;
    margin: 10px 10px;
}


.people-reviews>p {
    clear: both;
    margin-top: 15px;
    font-family: sans-serif;
}

.highlight-bages {
    background-color: #EDE9FE;
    width: fit-content;
    padding: 5px;
    margin-left: 270px;
    border-radius: 20px;
}

p.highlight-bages {
    color: #8E51FF;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
}

p.month {
    color: rgb(51, 51, 51);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

}

p.cont {
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-size: 18px;
    line-height: 29px;
    margin-top: -10px;

}

.btn-more {
    background-color: #8E51FF;
    color: #fff;
    padding: 12px 32px;
    margin-top: 20px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #8E51FF;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-more:hover {
    background-color: #fff;
    color: #8E51FF;
}

/* ----------------------------------------------------------------------- */



/* Related products */

.related-products {
    padding: 70px 80px;
    margin: auto;
    text-align: center;
    background-color: #F7F5FF;
}

.related-products h2 {
    font-weight: 700;
    color: rgb(51, 51, 51);
    line-height: 40px;
    font-size: 36px;
}

.related-products p {
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-size: 20px;
    line-height: 28px;
}

.related-products-con {
    margin-bottom: 30px;
}

.card {
    float: left;
    width: 22%;
    border: #cdd4d0 solid 2px;
    background-color: #fff;
    margin-right: 35px;
    border-radius: 30px;
    padding: 25px;
    box-sizing: border-box;

}

.card-img {
    width: 100%;
    margin: auto;
    position: relative;
    transition: 0.5s ease;

}

.card-img img {
    width: 200px;
    margin: auto;
    border-radius: 30px;
}

.card-img:hover {
    transform: scale(1.1);
}

.card h3 {
    font-weight: 700;
    color: rgb(51, 51, 51);
    line-height: 28px;
    font-size: 20px;
    text-align: left;
}

.card .p1 {
    font-weight: 400;
    color: rgb(51, 51, 51);
    font-size: 16px;
    line-height: 24px;
}

.card .p2 {
    font-weight: 700;
    color: rgb(51, 51, 51);
    font-size: 24px;
    line-height: 32px;
    margin-left: -20px;

}

.price-button {
    width: 100%;
    margin: auto;
}

.price-button-float1 {
    float: left;
    width: 50%;


}

.price-button-float2 {
    float: right;
    width: 50%;


}

.button-design {
    background-color: #8E51FF;
    color: #fff;
    padding: 5px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #8E51FF;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.type {
    position: absolute;
    top: 13px;
    left: 17px;
    background-color: #8E51FF;
    color: white;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.type1 {
    background-color: #00BBA7;
}

.type2 {
    background-color: #00C951;
}

.type3 {
    background-color: #00B8DB;
}

.type4 {
    background-color: #FF6900;
}

.btn-all {
    background-color: #fff;
    color: #8E51FF;
    padding: 12px 32px;
    margin-top: 20px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #8E51FF;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-all:hover {
    background-color: #8E51FF;
    color: #fff;
}

.More span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

/* --------------------------------------------- */




/* Privacy section */


.Privacy-section {
    background-color: #101828;
    padding: 30px 80px;
}

.Privacy-section span {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px
}

.Privacy-section span,
.Privacy-section img,
.column h3 {
    vertical-align: middle;
    margin: auto;
}

.dji-img img {
    width: 28px;
    vertical-align: middle;
    margin-right: 8px;
    background-color: #8E51FF;
    border-radius: 6px;
}

.dji-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin: 10px 0;

}

.column {
    float: left;
    width: 20%;
    margin-right: 5%;
}

.social img {
    width: 20px;
    border-radius: 10px;
    border: #1E2939 2px solid;
    padding: 8px;
    background-color: #1E2939;
    cursor: pointer;
    transition: 0.5s ease;
}

.social {
    width: 100%;
    margin-top: 15px;
}

.left-social {
    float: left;
    width: 25%;
}

ul {
    list-style: none;
    margin-top: 10px;
}

.products li {
    margin-bottom: 15px;

}

ul li a {
    color: #f1e9e92c;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: oklch(0.707 0.022 261.325);
    transition: 0.3s all;
}

ul li a:hover {
    color: #fff;
}

.s1:hover {
    background-color: #1877F2;
}

.s2:hover {
    background-color: #1DA1F2;
}

.s3:hover {
    background-color: #E4405F;
}

.s4:hover {
    background-color: #FF0000;
}

.column h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}


.after::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #6c756f;
    margin: 15px auto 0;
}


.copy {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    box-sizing: border-box;
}

.copy-text {
    float: left;
    width: 50%;
}

.copy-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 10px;
}

.copy-img {
    float: left;
    width: 50%;
    text-align: right;
}

.pay-img {
    display: inline-block;
    margin-left: 20px;
}

.pay-img img {
    width: 60px;
    height: auto;
    vertical-align: middle;
    border-radius: 6px;
    border: 2px solid #1E2939;
    background-color: #fff;
    padding: 12px;
    cursor: pointer;
}










/* =========================
   RESPONSIVE FIX – MOBILE
   ========================= */

@media (max-width: 992px) {

    .navbar {
        padding: 12px 20px;
    }

    .logo, .links {
        width: 100%;
        text-align: center;
        float: none;
    }

    .links a {
        margin: 0 12px;
    }

    /* PRODUCT SECTION */
    .product-image, 
    .product-info {
        float: none;
        width: 100%;
        margin: auto;
        margin-bottom: 30px;
    }

    .product-section {
        padding: 40px 20px;
    }

    .actions button {
        width: 100%;
    }


    /* COMPARE SECTION */
    .compare-section {
        padding: 40px 20px;
    }

    .compare-box {
        padding: 20px;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .winner {
        width: 100%;
        text-align: center;
    }
     .compare-table {
        display: block;
        overflow-x: auto;   /* ← السكرول هنا فقط */
        white-space: nowrap;
    }


    /* REVIEWS SECTION */
    .reviews {
        padding: 40px 20px;
    }

    
    .people-reviews-container {
        float: none;
        width: 90%;
        margin-bottom: 25px;
    }
.reviews-stat{
    display: none;
}
    .people-reviews {
        margin-left: 0;
        padding: 15px;
    }

    .info, .Purchase {
        float: none;
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .highlight-bages {
        margin-left: 0;
    }


    /* RELATED PRODUCTS */
    .related-products {
        padding: 40px 20px;
    }

    .card {
        float: none;
        width: 100%;
        margin: 0 0 25px 0;
    }

    .card-img img {
        width: 150px;
    }

    .price-button-float1,
    .price-button-float2 {
        width: 100%;
        float: none;
        margin-bottom: 12px;
    }

    /* FOOTER */
    .column {
        float: none;
        width: 100%;
        margin-bottom: 25px;
    }

    .Privacy-section {
        padding: 40px 20px;
        text-align: center;
    }

    .copy-text,
    .copy-img {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

}


/* =============== SMALL MOBILE (≤ 576px) ================= */

@media (max-width: 576px) {

    h1, h2 {
        font-size: 1.6rem !important;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .people-reviews p.cont {
        font-size: 16px;
    }

    .related-products .card {
        padding: 15px;
    }

    .navbar {
        padding: 10px;
    }

}
