/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    /* background-color: #f8f8f8; */
    color: #333;
    line-height: 1.6;
}

.dividerrr{
    max-width: auto !important;
    height: 1.5px;
    background-color: #e1eaea;

}

.main_nav{
    max-width: 1300px;
    margin: auto;
        padding: 10px 20px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

/* Image gallery */
.product-images {
    position: relative;
    width: 100%;
}

footer {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.image-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.image-gallery img {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    scroll-snap-align: start;
}

.image-thumbnails {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.thumbnail {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail.active {
    background-color: #333;
}

.like-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.like-button i {
    color: #777;
    font-size: 1.2rem;
}

.like-button span {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Product details */
.product-details {
    padding: 20px;
}

h1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.brand-link {
    color: #0077cc;
    text-decoration: none;
}

.product-price {
    margin-bottom: 20px;
}

.original-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0077cc;
}

.protection {
    font-size: 0.8rem;
    margin-top: 5px;
}

.protection-link {
    color: #0077cc;
    text-decoration: none;
}

/* Specifications */
.product-specs {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 15px;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.spec-label {
    color: #666;
}

.spec-value {
    font-weight: 500;
}

.spec i {
    color: #ccc;
    cursor: pointer;
}

.additional-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.shipping {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-weight: 500;
}

/* Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

button {
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.buy-button {
    background-color: #008080;
    color: white;
}

.offer-button, .message-button {
    background-color: white;
    color: #008080;
    border: 1px solid #008080;
}

/* Protection info */
.protection-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.protection-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.protection-header i {
    color: #008080;
}

.protection-info p {
    font-size: 0.85rem;
    color: #666;
}

.protection-info a {
    color: #0077cc;
    text-decoration: none;
}

/* Seller info */
.seller-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.seller-profile {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.seller-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.seller-details h3 {
    font-size: 1rem;
    font-weight: 600;
}

.seller-details p {
    font-size: 0.8rem;
    color: #888;
}

.seller-profile i {
    margin-left: auto;
    color: #ccc;
}

.seller-stats {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 15px 0;
}

.stats-icon {
    background-color: #e6f7f7;
    color: #008080;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stats-details h3 {
    font-size: 0.9rem;
    font-weight: 600;
}

.stats-details p {
    font-size: 0.8rem;
    color: #666;
}

.seller-location {
    font-size: 0.85rem;
    color: #666;
}

.seller-location p {
    margin: 5px 0;
}

.seller-location i {
    margin-right: 5px;
    color: #888;
}

/* Media queries */
@media (min-width: 950px) {
    .product-container {
        flex-direction: row;
    }
    
    .product-images {
        flex: 1;
    }
    
    .product-details {
        flex: 1;
        padding: 30px;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (min-width: 1024px) {
    .product-images {
        flex: 0 0 45%;
    }
    
    .product-details {
        flex: -1 0 55%;
        padding: 15px;
    }
}




/* --------------------------------------------------- header ............................................................ */



        /* Header styles */

        .header_wrapper{
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            background-color: white;
        }

        .header {
            display: flex;
            flex-direction: column;
            padding: 8px 20px;
            max-width: 1300px;
            padding-bottom: 0px;
            margin: auto;
            
        }
        
        /* Top header section */
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        /* Logo styling */
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #09B1BA;
            text-decoration: none;
        }
        
        /* Search bar container */
        .search-container {
            flex-grow: 1;
            margin: 0 20px;
            position: relative;
        }
        
        .search-container input {
            width: 80%;
            padding: 10px 30px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #f7f7f7;
            font-size: 14px;
        }
        
        .searchicon {
            position: absolute;
            left: 10px;
            top: 44%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
        }


        
        /* User actions container */
        .user-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .button {
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
        }
        
        .button-outline {
            border: 1px solid #007580;
            color: #09B1BA;
            background-color: white;
        }
        
        .button-filled {
            background-color: #007580;
            color: white;
            border: 1px solid #007580;
        }
        
        .language-selector {
            font-size: 14px;
            display: flex;
            align-items: center;
            margin-left: 10px;
        }
        
        /* Navigation menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
            overflow-x: auto;
            white-space: nowrap;
            padding-bottom: 5px;
            margin-bottom: 0px !important;
        }
        
        .nav-menu li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            line-height: 21px;
            padding: 5px 0;
            position: relative;
        }
        
        .nav-menu li a:hover {
            color: #09B1BA;
        }
        
        /* Mobile menu button - hidden by default */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
        }
        
        /* Responsive styles */
       
        
        @media (max-width: 768px) {

            .search-container input {
                width: 99%;
            }

            .header-top {
                flex-wrap: wrap;
            }

            .main_nav{
                display: none;
            }

            .dividerrr,.mobili{
                display: none;
            }
            
            .search-container {
                order: 3;
                margin: 15px 0 0 0;
                max-width: 100%;
                width: 100%;
            }
            
            .user-actions .button-outline {
                display: none;
            }

              .mobile-menu-button {
                display: block;
            }
        }
        
        @media (max-width: 576px) {
          
            
            .nav-menu {
                flex-direction: column;
                position: absolute;
                background-color: white;
                width: 100%;
                left: 0;
                top: 120px;
                padding: 15px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
                display: none;
                z-index: 100;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .button-filled {
                padding: 8px 10px;
                font-size: 12px;
            }
            
            .language-selector {
                margin-left: 5px;
            }
        }






   /* ----------------------------------------- footer ---------------------------------------------------      */

                /* Footer styles */
                .footer {
                    background-color: #fff;
                    padding: 40px 20px 20px;
                    margin-top: auto;
                }
                
                .footer-container {
                    max-width: 1300px;
                    margin: 0 auto;
                }
                
                .footer-columns {
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    margin-bottom: 30px;
                }
                
                .footer-column {
                    flex: 1;
                    min-width: 200px;
                    margin-bottom: 20px;
                }
                
                .footer-title {
                    font-size: 20px;
                    color: rgb(90, 101, 102);
                    margin-bottom: 15px;
                    font-weight: 500;
                    line-height: 23px;
                }
                
                .footer-links {
                    list-style: none;
                }
                
                .footer-links li {
                    margin-bottom: 12px;
                }
                
                .footer-links a {
                    color: rgb(90, 101, 102);
                    text-decoration: none;
                    font-size: 16px;
                    transition: color 0.2s ease;
                    line-height: 26px;
                    font-weight: 400;
                }
                
                .footer-links a:hover {
                    color: #09B1BA;
                }
                
                .divider {
                    height: 1px;
                    background-color: #eee;
                    margin: 20px 0;
                }
                
                .social-media {
                    display: flex;
                    gap: 15px;
                    margin-bottom: 30px;
                }
                
                .social-icon {
                    width: 35px;
                    height: 35px;
                    background-color: #eee;
                    border-radius: 4px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #666;
                    text-decoration: none;
                }
                
                .app-download {
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    gap: 10px;
                    flex-wrap: wrap;
                }
                
                .app-button {
                    display: block;
                    max-width: 140px;
                }
                ll
                .app-button img {
                    width: 100%;
                    height: auto;
                }
                
                .bottom-links {
                    display: flex;
                    gap: 20px;
                    flex-wrap: wrap;
                    margin-top: 20px;
                }
                
                .bottom-links a {
                    color: #666;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 15px;
                    line-height: 24px;
                }
                
                .bottom-links a:hover {
                    color: #09B1BA;
                }

                .zzz{
                    padding-top: 15px;
                    border-top: 1px solid rgb(182, 190, 191);
                    max-width: 1300px !important;
                    margin: auto;
                }

                .zzz a {
                    color: rgb(182, 190, 191) !important;
                    text-decoration: underline !important;

                }

                .socialside{
                    display: flex; justify-content: space-between; flex-wrap: wrap;
                }
                
                /* Responsive styles */
                @media (max-width: 768px) {
                    .footer-columns {
                        flex-direction: column;
                    }
                    
                    .footer-column {
                        width: 100%;
                        margin-bottom: 30px;
                    }
                    
                    .app-download {
                        justify-content: flex-start;
                        margin-top: 20px;
                    }
                    .socialside{
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                    }
                    .bottom-links{
                        justify-content: center;
                    }
                }
                
                @media (max-width: 576px) {
                    .social-media, .app-download, .bottom-links {
                        justify-content: center;
                    }
                    .remove{
                        display: none;
                    }
                   
                }

                




     
                



 /* ------------------------------------ necessary pages ------------------------------                */


 
@font-face {
    font-family: 'soleil';
    src: url("/font/SoleilRegular.otf");
}


*{
    margin: 0px;
    font-family: 'soleil', serif;

}















/* --------------------------------------  contact us page -------------------------------- */

.find-more {
    width: 150px;
    border: none;
    background-color: #5356ee !important;
    color: #fff;
    padding: 8px 0;
    font-weight: bolder;
    border-radius: 5px
}


/* .searchicon{
    padding-top: 6px !important;
    width: 28px !important;
} */



/* ---------------------------------------------- thank you  ----------------------------------------------- */


.body_thanks_container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
    /* width: 100%; */
    padding-left: 12px;
    padding-right: 15px;
  }
  
  .valid_img {
    width: 80px;
    margin: 25px;
  }
  
  .thanks_title {
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
  }
  
  .cmd_details {
    text-align: center;
    margin: 15px;
    font-size: 18px;
  }
  
  .bold_green {
    color: green;
    font-weight: bolder;
  }
  
  .redirect_home_ > a {
    color: white;
    background-color: #5356ee;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .redirect_home_ > a > div {
    margin: 5px;
  }
  
  .redirect__container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
  }






  /* ----------------------------------------- checkout page ------------------------------------- */

  
  .checkout__container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.checkout__panel {
    background-color: #fff;
    /* border-radius: 8px; */
    padding: 20px;
    margin-bottom: 25px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
}

.checkout__section-heading {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #555;
}

/* Order section */
.checkout__order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkout__item-details {
    display: flex;
    align-items: center;
}

.checkout__item-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: fill;
    margin-right: 15px;
}

.checkout__item-info {
    display: flex;
    flex-direction: column;
}

.checkout__item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.checkout__item-meta {
    font-size: 12px;
    color: #777;
}

.checkout__item-price {
    font-weight: 500;
}

/* Address section */
.checkout__address-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #333;
}

.checkout__btn-icon {
    font-size: 20px;
    color: #555;
}

/* Delivery section */
.checkout__delivery-option {
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
}

.checkout__delivery-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkout__delivery-logo {
    width: 60px;
    margin-right: 10px;
}

.checkout__delivery-provider {
    font-size: 14px;
}

.checkout__delivery-price {
    font-weight: 500;
    margin-bottom: 10px;
}

.checkout__delivery-time {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.checkout__time-icon {
    margin-right: 5px;
    color: #888;
}

/* Payment section */
.checkout__payment-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #333;
}

/* Order summary */
.checkout__summary {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
}

.checkout__summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.checkout__summary-row:last-child {
    margin-bottom: 0;
}

.checkout__info-icon {
    margin-left: 5px;
    color: #999;
}

.checkout__total-row {
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.checkout__pay-button {
    width: 100%;
    padding: 14px 0;
    margin-top: 20px;
    background-color: #3b8f5c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.checkout__pay-button:hover {
    background-color: #2f724a;
}

.checkout__secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.checkout__lock-icon {
    margin-right: 5px;
}

/* Media queries */
@media (min-width: 768px) {
    .checkout__container {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 767px) {
     .checkout__container {
        display: flex;
        flex-direction: column-reverse;
        gap: 0px;
    }
    
    .checkout__panel {
        padding: 15px;
        margin-bottom: 8px;
    }
}





/* ------------------------- right side carousel ----------------- */


.first_row_nav_bar_{
    margin-bottom: 30px;
}


.left_side_carousel_container_ {
    display: flex
}

.carousel-indicators .list-inline-item>a>img {
    width: 90px;
    height: 120px;
    border: 1px solid #000;
    object-fit: contain
}

#productCarousel .carousel-inner .carousel-item>img {
    width: 500px;
    height: 600px;
    object-fit: fill;
    padding-left: 10px
}

.carousel-indicators-wrapper>ol {
    list-style: none;
    overflow-y: scroll;
    height: 550px
}

#productCarousel {
    display: flex;
    width: 750px;
    height: 600px
}

.carousel-indicators::-webkit-scrollbar {
    width: 4px
}

.carousel-indicators::-webkit-scrollbar-thumb {
    background-color: gainsboro;
    display: none
}

.carousel-indicators::-webkit-scrollbar-track {
    background-color: #efefef;
    display: none
}

.carousel-item>img {
    display: block;
    position: absolute;
    transition: opacity 0.5s linear
}

.hidden {
    opacity: 0
}

.onesection_row_container {
    margin: 45px 0 45px -25px;
    display: flex;
    flex-direction: row
}

.product_purchase_container {
    width: 500px
}



/* ------------------------------------------ COMMENT SECTION ------------------------------------------------- */

.comment_wrapper{
    max-width: 1300px;
    margin: auto;
    padding: 15px;
}


.tp-header_titles{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: rgb(25, 25, 25);margin-right: 15px;
    align-items: center;
}

.lernmr{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgb(25, 25, 25);
    margin-left: 25px;
    cursor: pointer;
    text-decoration: underline;
}

.top_heaader{
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* width: 70%; */
    padding-bottom: 18px;
    margin-bottom: 20px;
}



.bot_header{
    display: flex;  
    justify-content: space-around;
    align-items: center;
    /* gap: 20px; */

}


.bt_left-header{
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.revvnumb{
    font-weight: 700;
    font-size: 3.5rem ;
    line-height: 1;
}
.nnumberstr{
    font-weight: 700;
    font-size: 14px;
    line-height: 2px;
    color: rgb(25, 25, 25);
}

.tootalrevv{
    font-weight: 400;
    font-size: 14px;
    line-height: 2px;
    color: rgb(112, 112, 112); 
}


.centre_left_header{
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.line_rev_counter{
    display: flex;
    gap: 7px;
    align-items: center;
}

.barprogress{
    background: transparent;
    background-color: #e5e5e5;
    border-radius: 30px;
    display: inline-block;
    height: 10px;
    max-width: 184px;
    overflow: hidden;
    width: 184px;
    position: relative
}






.right_left_header{
    display: flex;
    justify-content: space-between;
    gap: 10px;

}

.circleflx{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 70%;
    align-items: center;
}

.centpercent{
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

.under_cent{
    display: flex;
    text-align: center;
}

.centpercent{
    border: 3px solid black;
    border-radius: 50%;
    padding: 12PX 5PX;
}


.tp_maain{
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #cccccc;
    margin-bottom: 30px;
    margin-top: 20px;
}

.most_relev{
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: rgb(25, 25, 25);
}

.all_rvw{
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: rgb(38, 38, 38) ;
}

.main_rrev{
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.left_rvv{
    display: flex;
    flex-direction: column;
    width: 24%;
    /* margin-right: 35px; */
}


.byuser,.date_posted{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgb(112, 112, 112);
}


.right_rvvwe{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 60%;
}

.title_rvw{
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.main_cmnt{
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}

.verif_purch{
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    color: rgb(112, 112, 112);
}






.carousel-indicators-wrapper>ol{
    padding-left: 0px !important;
}



#productCarousel {
    display: flex;
    width: 650px;
    height: 600px
}

@media screen and (max-width:680px) {
    #productCarousel .carousel-inner .carousel-item>img{
        width: 450px;
    height: 550px;
    margin-top: 50px;
    }
}

@media screen and (max-width:560px) {
    #productCarousel .carousel-inner .carousel-item>img{
        width: 400px;
    height: 500px;
    }
}

@media screen and (max-width:500px) {
    #productCarousel .carousel-inner .carousel-item>img{
        width: 300px;
    height: 400px;
    }
}

@media screen and (max-width:450px) {
    #productCarousel .carousel-inner .carousel-item>img{
        width: 250px;
    height: 350px;
    }
}




