body {
    color: #4f5d77;
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    font-family: "Quicksand", sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Updated color reference (doesn't affect styles) */
#colors {
    /* Green replaced */
    color: #FFB8E0; /* Was #046963 */
    color: #EC7FA9; /* Was #088178 */
    color: #1a1a1a;
    color: #212529;
    color: #3547B3;
    color: #3547B3;
    color: #465b52; /* Kept dark green text */
    color: #4f5d77;
    color: #63a2c1;
    color: #d77f7a;
    color: #fff;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.container {
    max-width: 1340px !important;
    direction: rtl;
}

a {
    text-decoration: none !important;
}

li {
    list-style: none;
}

/* ******************************************************* */

/* Start Loading */

.box-loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999999999;
}

.loader {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
  }

  .inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #FFB8E0; /* Green replaced */
  }

  .inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #3547B3;
  }

  .inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #d77f7a;
  }

  @keyframes rotate-one {
    0% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
  }

  @keyframes rotate-two {
    0% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
  }

  @keyframes rotate-three {
    0% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

.over-lay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.541);
    z-index: 33;
    opacity: 1;
}

/* End Loading */

/* ******************************************************** */

/* Start Header */

    /* Start Top Bar */
    .header .top-bar {
        padding: 13px 0;
        border-bottom: 3px solid #EC7FA9 !important; /* Green replaced */
        font-size: 14px;
        line-height: 1;
        position: relative;
    }

    .header .top-bar img {
        width: 100%;
        z-index: 0;
        position: absolute;
        left: 0;
        top: 0px;
    }

    .header .top-bar {
        color: #1a1a1a;
        font-weight: 500;
    }

    .header .top-bar a{
        color: #1a1a1a;
        text-decoration: none;
    }

    .header .left span:first-child {
        padding-right: 21px;
        position: relative;
    }

    .header .left span:first-child:after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background: #dedfe2;
    }

    .header .right span {
        margin: 0 4px;
    }

    @media(max-width: 574px){
        .top-bar .left{
            padding-bottom: 10px;
        }
    }
    /* End Top Bar */

    /* ---------------------- */

    /* Start Search bar */
    .header .search-bar {
        padding: 10px 0;
    }

    .header .search-bar .logo {
        width: 50px;
        min-width: 50px;
    }

    .header .search-bar .search .input-group {
        position: relative;
    }

    .header .search-bar .search form{
        margin-bottom: 0 !important;
    }

    .header .search-bar .search .input-group i {
        position: absolute;
        right: 15px;
        font-size: 22px;
        top: 23%;
        z-index: 2;
        color: #1a1a1a6b;
    }

    .header .search-bar .search .input-group input {
        padding-right: 35px;
        padding-left: 10px;
        border-radius: 4px !important;
    }

    .header .search-bar .right a {
        position: relative;
        text-decoration: none;
    }

    .header .search-bar .right a:nth-child(2n) {
        margin: 0 8px;
    }

    .header .search-bar .right a i {
        font-size: 33px;
        color: #000;
    }

    .header .search-bar .right a .number {
        position: absolute;
        right: -4px;
        top: -14px;
        color: #fff;
        height: 18px;
        width: 18px;
        border-radius: 100%;
        font-weight: 500;
        font-size: 11px;
        text-align: center;
        line-height: 18px;
        background-color: #EC7FA9; /* Green replaced */
    }

    @media(max-width: 650px){
        .header .search-bar .search {
            display: none;
        }
        .header .search-bar .search .input-group i {
            display: none;
        }
    }
    /* End Search bar */

    /* -------------------------- */

    /* Start Navbar */
    .header nav {
        /* border-bottom: 1px solid #d8f4e2; */ /* Light green border removed/kept default */
        border-bottom: 1px solid #eee; /* Replaced with light grey or keep original */
        padding: 20px 0;
        transition: all .5s ease;
        transform-origin: top;
    }

    .animate {
        -webkit-transform: perspective(400px) rotateX(-90deg);
        transform: perspective(400px) rotateX(-90deg);
    }

    .header .active-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0px 4px 11px 2px #63a2c126; /* Kept original blue shadow */
        z-index: 99;
        background-color: #fff;
        margin: 0 !important;
        padding: 20px 15px;
        border-bottom: 2px solid #FFB8E0; /* Green replaced */
    }

    .header nav form {
        display: none;
    }

    .header nav .active .nav-link {
        color: #EC7FA9 !important; /* Green replaced */
    }

    .header nav .nav-link {
        padding: 0 23px !important;
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .header nav .left {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 0 !important;
    }

    .header nav .left i {
        font-size: 25px;
        position: relative;
        top: 5px;
    }

    .header nav .left span {
        color: #EC7FA9; /* Green replaced */
    }

    @media(max-width: 992px) {
        nav {
            margin: 0 30px;
        }

        .navbar-light .navbar-nav .nav-link {
            padding: 11px 3px !important;
        }

        .header nav .left {
            margin-top: 10px;
        }
    }

    @media(max-width: 650px) {
        nav form {
            display: block !important;
        }
    }
    /* End Navbar */

    /* ------------------------------------- */

    /* Start Carousel */
    .owl-carousel .row {
        height: 400px;
    }

    .owl-carousel .item h4 {
        font-size: 26px;
        margin: 0 0 18px;
    }

    .owl-carousel .item h3 {
        font-size: 36px;
        line-height: 44px;
        font-weight: 700;
        margin: 0 0 10px 0px;
        color: #1a1a1a;
    }

    .owl-carousel .item h2 {
        font-size: 48px;
        line-height: 54px;
        font-weight: 900;
        margin: 0 0 0px;
    }

    .owl-carousel .item .title-2 {
        color: #EC7FA9; /* Green replaced */
    }

    .owl-carousel .item .title-1 {
        color: #d77f7a;
    }

    .owl-carousel .item .title-3 {
        color: #63a2c1;
    }

    .owl-carousel .item p {
        font-size: 18px;
        line-height: 36px;
        margin: 7px 0 22px;
        width: 80%;
    }

    .owl-carousel .item a {
        position: absolute;
        left: 0;
        top: -12px;
        background-color: rgba(255, 255, 255, 0);
        color: #EC7FA9; /* Green replaced */
        border: 0;
        padding: 14px 80px 14px 65px;
        font-family: "Spartan", sans-serif;
        font-size: 18px;
        font-family: 800;
        z-index: 2;
    }

    .owl-carousel .item .shop {
        position: relative;
    }

    .owl-carousel .item .shop img {
        position: absolute;
        left: 0;
        top: -8px;
        z-index: 0;
        width: 218px;
    }

    .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd !important;
    }

    .owl-dot.active {
        background-color: #EC7FA9 !important; /* Green replaced */
    }

    .owl-dots {
        text-align: center;
        margin-top: -40px;
        position: relative;
        z-index: 3;
    }


    @media(max-width: 992px) {
        .owl-carousel .item {
            margin-top: 35px;
        }

        .owl-carousel .item .shop {
            margin-bottom: 50px;
        }

        .owl-dots {
            text-align: center;
            margin-top: 35px;
        }
    }

    @media(max-width: 500px) {
        .owl-carousel .item h4 {
            font-size: 22px;
        }

        .owl-carousel .item h2 {
            font-size: 30px;
        }

        .owl-carousel .item h1 {
            font-size: 35px;
        }
    }
    /* End Carousel */

/* End Header */

/* Start Chat - Assuming var(--primary) was green, replace it */
:root {
  --primary: #EC7FA9; /* Assuming this was green */
  /* Keep other variables or adjust if they were also green */
  /* --primaryGradient: linear-gradient( to right, #088178, #046963 ); */ /* Example if gradient was used */
  --primaryGradient: linear-gradient( to right, #EC7FA9, #FFB8E0 ); /* New Pink Gradient */

  /* You might need to adjust shadow colors if they were based on green */
   --primaryBoxShadow: 0 2px 10px rgba(236, 127, 169, 0.3); /* Example adjusted shadow */
   --secondaryBoxShadow: 0 -2px 10px rgba(0,0,0, 0.1); /* Example */
   /* --secondaryGradient: linear-gradient(to bottom, #f9f9f9, #e0e0e0); */ /* Example */
}

.chatbox__support {
    background: #f9f9f9;
    height: 450px;
    width: 350px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* HEADER */
.chatbox__header {
    background: var(--primaryGradient);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: var(--primaryBoxShadow);
}

.chatbox__image--header {
    margin-right: 10px;
}

.chatbox__heading--header {
    font-size: 1.2rem;
    color: white;
}

.chatbox__description--header {
    font-size: .9rem;
    color: white;
}

/* Messages */
.chatbox__messages {
    padding: 0 20px;
    /* Added for scrollability */
    height: calc(100% - 130px); /* Adjust based on header/footer height */
    overflow-y: auto;
}

.messages__item {
    margin-top: 10px;
    background: #E0E0E0;
    padding: 8px 12px;
    max-width: 70%;
    word-wrap: break-word; /* Ensure long messages wrap */
}

.messages__item--visitor,
.messages__item--typing {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-left: auto; /* Align visitor messages to the right */
    margin-right: 0;
}

.messages__item--operator {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--primary); /* Uses the new pink */
    color: white;
    margin-right: auto; /* Align operator messages to the left */
    margin-left: 0;
}

/* FOOTER */
.chatbox__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px; /* Adjusted padding */
    background: var(--secondaryGradient); /* Check if this needs changing */
    box-shadow: var(--secondaryBoxShadow);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    /* margin-top: 20px; Remove fixed margin */
    border-top: 1px solid #ddd; /* Add separator */
}

.chatbox__footer input {
    flex-grow: 1; /* Allow input to take available space */
    border: none;
    padding: 10px 15px; /* Adjust padding */
    border-radius: 30px;
    /* text-align: center; */ /* Removed center align */
    margin-right: 10px; /* Add space between input and button */
    background-color: #eee; /* Lighter background */
}

.chatbox__send--footer {
    color: var(--primary); /* Use pink for the send icon */
    background: none;
    border: none;
    font-size: 1.5rem; /* Make icon larger */
    cursor: pointer;
}

/* Chat Button Styles (Assuming this controls the toggle button) */
.chatbox__button button,
.chatbox__button button:focus,
.chatbox__button button:visited {
    padding: 10px;
    background: white;
    border: none;
    outline: none;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
/* End Chat */


/* ************************************************** */

/* Start Featured */
.featured {
    margin: 40px 0;
}

.featured .box {
    text-align: center;
    padding: 25px 15px;
    border-radius: 4px;
    border: 1px solid #fddde4; /* Light Green border replaced */
    box-shadow: 20px 20px 54px rgb(0 0 0 / 3%);
    transition: all 0.25s ;
}

.featured .box:hover {
    box-shadow: 20px 20px 54px rgb(0 0 0 / 5%);
    transform: translateY(-7px);
}

.featured .box img {
    margin-bottom: 15px;
    max-width: 100%;
}

.featured .box .title {
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #EC7FA9; /* Green replaced */
}

.featured .bg-1 {
    background-color:  #fddde4 !important; /* This is already pinkish */
}
.featured .bg-2 {
    background-color:  #d1e8f2 !important; /* Blueish */
}
.featured .bg-3 {
    /* background-color:  #cdebbc  !important; */ /* Light Green */
    background-color: #fff0f6 !important; /* Replaced with very light pink */
}
.featured .bg-4 {
    background-color:  #cdd4f8  !important; /* Purplish */
}
.featured .bg-5 {
    background-color:  #f6dbf6 !important; /* Light Purple/Pink */
}
.featured .bg-6 {
    background-color:  #fff2e5  !important; /* Cream */
}
/* End Featured */

/* ************************************************* */

/* Start New-added */
.new-added {
    padding: 25px 0;
}

.new-added .title {
    margin-right: 15px;
    font-size: 27px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: right;
}

.new-added .title span {
    color: #EC7FA9; /* Green replaced */
}

.new-added .box {
    position: relative;
    background-color: #fff;
    border: 1px solid #fddde4; /* Light Green border replaced */
    border-radius: 25px;
    box-shadow: 20px 20px 54px rgb(0 0 0 / 3%);
    transition: all 0.25s ;
}

.new-added .box:hover {
    box-shadow: 20px 20px 54px rgb(0 0 0 / 6%);
    transform: translateY(-5px);
}

.new-added .box .image-box {
    position: relative;
    overflow: hidden;
    max-height: 320px;
    background-color: #f1f1f1;
    border-radius: 20px;
    margin: 10px 12px;
}

.new-added .box .image-box .persentage {
    position: absolute;
    left: 10px;
    top: 12px;
    font-size: 12px;
    line-height: 1;
    border-radius: 40px;
    color: #fff;
    padding: 5px 10px;
    background-color: #ff75a0; /* Kept existing pink */
}

.new-added .box .image-box img {
    width: 100%;
    transition: all 2s;
}

.new-added .box .image-box:hover img {
    opacity: 1;
}
.new-added .box .image-box .img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .2s;
}

.new-added .box .info-box {
    position: relative;
    padding: 0 20px 15px 20px;
    text-align: right;
}

.new-added .box .info-box .category a {
    text-decoration: none;
    color: #90908e;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.new-added .box .info-box .category a:hover {
    color: #EC7FA9; /* Green replaced */
}

.new-added .box .info-box .category span {
    color: #1a1a1a;
}

.new-added .box .info-box .name {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.new-added .box .info-box .name:hover {
    color: #EC7FA9; /* Green replaced */
}

.new-added .box .info-box .rating svg {
    font-size: 11px;
    letter-spacing: 2px;
    color: #ffb300; /* Kept yellow for stars */
}

.new-added .box .info-box .rating span {
    margin-left: 5px;
}

.new-added .box .info-box .rating .price {
    padding-top: 5px;
}

.new-added .box .info-box .price .new-price {
    font-size: 19px;
    font-weight: bold;
    color: #EC7FA9; /* Green replaced */
}

.new-added .box .info-box .price .old-price {
    font-size: 14px;
    font-weight: 400;
    color: #90908e;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}

/* Button add to Cart */
.new-added .box .info-box .cart {
    position: absolute;
    left: 12px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 44px;
    border-radius: 50px;
    background-color: #fff0f6; /* Light Green bg replaced */
    display: inline-block;
    border: 1px solid #fddde4; /* Light Green border replaced */
    text-decoration: none;
    transition: all .3s;
}
.new-added .box .info-box .cart:hover {
    bottom: 25px;
    background-color: #EC7FA9; /* Green replaced */
    border: 1px solid #0000;
}

.new-added .box .info-box .cart .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.new-added .box .info-box .cart .content:before {
    content: '';
    position: absolute;
    left: calc(50% - 7px);
    bottom: 100%;
    border: 7px solid #0000;
    border-top-color: #EC7FA9; /* Green replaced */
    z-index: 9;
    margin-bottom: -13px;
    transition: all .4s;
    opacity: 0;
}
.new-added .box .info-box .cart .content:hover:before {
    bottom: 118%;
    opacity: 1;
}

.new-added .box .info-box .cart .content:after {
    bottom: 100%;
    left: -19px;
    position: absolute;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    padding: 7px 10px;
    color: #fff;
    background-color: #EC7FA9; /* Green replaced */
    content: 'اضافة للسلة';
    line-height: 1.3;
    -webkit-box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);
    box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);
    transition: all .5s;
    opacity: 0;
}
.new-added .box .info-box .cart .content:hover:after {
    bottom: 118%;
    opacity: 1;
}

.new-added .box .info-box .cart .content i {
    color: #EC7FA9; /* Green replaced */
    font-size: 23px;
    transition: all .3s;
}

.new-added .box .info-box .cart .content:hover i {
    color: #ffffffe8;
}

/* Button add to Cart Favourit Page */
.new-added .box .info-box .fav-cart {
    position: absolute;
    left: 60px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 44px;
    border-radius: 50px;
    background-color: #fff0f6; /* Light Green bg replaced */
    display: inline-block;
    border: 1px solid #fddde4; /* Light Green border replaced */
    text-decoration: none;
    transition: all .3s;
}
.new-added .box .info-box .fav-cart:hover {
    bottom: 25px;
    background-color: #EC7FA9; /* Green replaced */
    border: 1px solid #0000;
}

.new-added .box .info-box .fav-cart .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.new-added .box .info-box .fav-cart .content:before {
    content: '';
    position: absolute;
    left: calc(50% - 7px);
    bottom: 100%;
    border: 7px solid #0000;
    border-top-color: #EC7FA9; /* Green replaced */
    z-index: 9;
    margin-bottom: -13px;
    transition: all .4s;
    opacity: 0;
}
.new-added .box .info-box .fav-cart .content:hover:before {
    bottom: 118%;
    opacity: 1;
}

.new-added .box .info-box .fav-cart .content:after {
    bottom: 100%;
    left: -19px;
    position: absolute;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    padding: 7px 10px;
    color: #fff;
    background-color: #EC7FA9; /* Green replaced */
    content: 'اضافة للسلة';
    line-height: 1.3;
    -webkit-box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);
    box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);
    transition: all .5s;
    opacity: 0;
}
.new-added .box .info-box .fav-cart .content:hover:after {
    bottom: 118%;
    opacity: 1;
}

.new-added .box .info-box .fav-cart .content i {
    color: #EC7FA9; /* Green replaced */
    font-size: 23px;
    transition: all .3s;
}

.new-added .box .info-box .fav-cart .content:hover i {
    color: #ffffffe8;
}

/* Button Delete from Favourite - Kept red theme */
.new-added .box .info-box .delete {
    position: absolute;
    left: 12px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 44px;
    border-radius: 50px;
    background-color: #f6e8e8;
    display: inline-block;
    border: 1px solid #e7cccc;
    text-decoration: none;
    transition: all .3s;
}
.new-added .box .info-box .delete:hover {
    bottom: 25px;
    background-color: #812408;
    border: 1px solid #0000;
}
.new-added .box .info-box .delete .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.new-added .box .info-box .delete .content:before {
    content: '';
    position: absolute;
    left: calc(50% - 7px);
    bottom: 100%;
    border: 7px solid #0000;
    border-top-color: #812a08;
    z-index: 9;
    margin-bottom: -13px;
    transition: all .4s;
    opacity: 0;
}
.new-added .box .info-box .delete .content:hover:before {
    bottom: 118%;
    opacity: 1;
}
.new-added .box .info-box .delete .content:after {
    bottom: 100%;
    left: -19px;
    position: absolute;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    padding: 7px 10px;
    color: #fff;
    background-color: #810808;
    content: 'حذف من المفضلة';
    line-height: 1.3;
    -webkit-box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);
    box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);
    transition: all .5s;
    opacity: 0;
}
.new-added .box .info-box .delete .content:hover:after {
    bottom: 118%;
    opacity: 1;
}
.new-added .box .info-box .delete .content i {
    color: #810808;
    font-size: 23px;
    transition: all .3s;
}
.new-added .box .info-box .delete .content:hover i {
    color: #ffffffe8;
}
/* End Delete Button */

@media(max-width: 510px) {
    .new-added .title {
        font-size: 20px;
    }
}

/* End New-added */

/* ************************************************ */

/* Start Bannar */

.bannar {
    height: 300px;
}

.bannar .content {
    position: relative;
    margin: 0 15px;
    text-align: right;
}

.bannar .content img {
    position: absolute;
    left: 0;
    top: 0;
    height: 300px;
    width: 100%;
    z-index: 0;
}

.bannar .content .info {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 20px 30px;
}

.bannar .content .info .title {
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 22px;
    color: #EC7FA9; /* Green replaced */
    line-height: 1.2;
}

.bannar .content .info h1 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.bannar .content .info a {
    background: #EC7FA9 !important; /* Green replaced */
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    padding: 12px 22px;
    border: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
}
.bannar .content .info a:hover {
    background-color: #FFB8E0 !important; /* Green hover replaced */
}

.bannar .content .info a i {
    position: relative;
    top: 2px;
    transition: all .3s;
}
.bannar .content .info a:hover i {
    padding-left: 7px;
}


@media (max-width: 675px) {
    .bannar .content img {
        position: relative;
        width: 100%;
        height: auto !important;
    }
    .bannar .content .info {
        display: none;
    }
    .bannar {
        height: auto;
    }
}
/* End Bannar */

/* ************************************************ */

/* Start categories */
.categories {
    padding: 25px 0;
}

.categories .container {
    position: relative;
}

.categories .slider {
    width: 100%;
    max-height: 255px;
}

.categories .slider .item {
    margin: 0 10px;
}

.categories .slider .item .box {
    background: #fff;
    text-align: center;
    border: 1px solid #fddde4; /* Light Green border replaced */
    border-radius: 20px;
}

.categories .slider .item .box:hover {
    transform: translateY(0) !important; /* Keep hover effect minimal */
}

.categories .slider .item .box .name {
    margin: 15px 0;
}
.categories .slider .item .box .name a {
    color: #4f5d77;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.categories .slider .item .box .name a:hover {
    color: #EC7FA9; /* Green replaced */
}

.categories .prev-arrow {
    position: absolute;
    left: 11px;
    top: -45px;
    font-size: 20px;
    color: #EC7FA9; /* Green replaced */
    font-weight: 600;
    cursor: pointer;
    background-color: #fff0f6; /* Light Green bg replaced */
    width: 35px;
    border-radius: 50%;
    text-align: center;
    height: 35px;
    padding: 7.2px 2px 0 0px;
    transition: all 0.3s;
}
.categories .prev-arrow:hover {
    background-color: #EC7FA9; /* Green replaced */
    color: #fff;
}

.categories .next-arrow {
    position: absolute;
    left: 52px;
    top: -45px;
    font-size: 20px;
    color: #EC7FA9; /* Green replaced */
    font-weight: 600;
    cursor: pointer;
    background-color: #fff0f6; /* Light Green bg replaced */
    width: 35px;
    border-radius: 50%;
    text-align: center;
    height: 35px;
    padding: 7.2px 0px 0 2px;
     transition: all 0.3s;
}
.categories .next-arrow:hover {
    background-color: #EC7FA9; /* Green replaced */
    color: #fff;
}

@media(max-width: 510px) {
    .categories {
        padding-top: 0 !important;
    }
    .categories .next-arrow {
        top: -49px;
    }
    .categories .prev-arrow {
        top: -49px;
    }
}

@media(max-width: 350px) {
    .categories .title {
        font-size: 18px;
    }
}
/* End categories */

/* *************************************************** */

/* Start Offers */
.offers {
    padding: 10px 0 25px 0;
}

.offers .box {
    position: relative;
}

.offers .box img {
    min-height: 140px;
    max-height: 200px;
    border-radius: 4px; /* Added for consistency */
}

.offers .box .info {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    padding: 35px 20px;
}

.offers .box .info p {
    margin-bottom: 0;
    color: #90908e;
}

.offers .box .info .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    color: #1a1a1a;
    transition: all .3s ease 0s;
}

.offers .box:hover .info .title {
    margin-left: 10px;
}

.offers .box .info a {
    color: #EC7FA9; /* Green replaced */
    text-decoration: none; /* Ensure no underline */
}

.offers .box .info a svg {
    transition: all .3s ease 0s;
    margin-left: 5px; /* Add initial space */
}
.offers .box .info a:hover svg {
    margin-left: 15px !important; /* Keep hover effect */
}


@media(max-width: 1180px) {
    .offers .box .info {
        width: 80%;
        padding: 10px 20px;
    }
}

@media(max-width: 768px) {
    .offers .box .info {
        width: 70%;
        padding: 30px 20px;
    }
}

@media(max-width: 450px) {
    .offers  {
        margin-top: 131px; /* Check if this is still needed */
    }
     .offers .box .info {
         position: relative; /* Stack info below image */
         width: 100%;
         padding: 15px;
         background: #f9f9f9; /* Add background for clarity */
         border-radius: 0 0 4px 4px;
     }
     .offers .box img {
        border-radius: 4px 4px 0 0;
     }
}

@media(max-width: 400px) {
    .offers .box .info {
        width: 100%; /* Already set above */
        padding: 10px 10px;
    }
}

/* End Offers */

/* **************************************************** */

/* Start Brands */

.brands .container .slider {
    max-height: 150px;
}

.brands .brand img {
    max-width: 100%;
    display: inline-block;
    padding: 10px 0;
    max-height: 100%;
    opacity: .6;
    transition: all .3s;
}
.brands .brand img:hover {
    opacity: 1;
}

/* End Brands */

/* *************************************************** */

/* Start Best Sell */
/* Assuming .best-sell uses the same .box structure as .new-added */
.best-sell {
    padding: 50px 0;
    /* height: 487px; Remove fixed height */
    position: relative;
    min-height: 487px; /* Use min-height instead */
}

.best-sell .item .box .info-box {
    text-align: right !important;
}


@media (max-width: 510px) {
    .best-sell {
        padding: 50px 0;
        /* height: 450px; */
        min-height: auto; /* Adjust height */
        position: relative;
    }

    .best-sell .title {
        padding-top: 32px;
    }
}

@media (max-width: 450px) {
    .best-sell {
       /* height: 580px; */
       min-height: auto;
    }
}

@media (max-width: 350px) {
    .best-sell {
        /* height: 520px; */
         min-height: auto;
    }
}
/* End Best Sell */

/* *************************************************** */

/* Start Footer */

    /* Start Newsletter */
    .footer .newsletter {
        /* background-color: #aeccc5; */ /* Muted Green */
        background-color: #fce4ec; /* Light pink background */
        padding: 35px 0;
    }

    .footer .newsletter .left img {
        max-width: 40px;
    }

    .footer .newsletter .left span {
        font-size: 19px;
        font-family: "Spartan", sans-serif;
        color: #222;
        font-weight: 600;
        line-height: 1.2;
    }

    .input-group {
        position: relative;
        width: 100%;
        display: flex; /* Added for proper alignment */
    }

    .input-group input {
        /* width: 70%; */ /* Let flexbox handle width */
        flex-grow: 1; /* Allow input to grow */
        font-size: 16px;
        padding: 10px 17px;
        outline: none;
        border: none;
        border-radius: 4px 0 0 4px;
    }
    .input-group button {
        /* width: 30%; */ /* Let flexbox handle width */
        flex-shrink: 0; /* Prevent button from shrinking */
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 0 4px 4px 0;
        background-color: #212529;
        color: #fff;
        transition: all .3s;
        padding: 10px 17px; /* Ensure consistent padding */
        cursor: pointer; /* Add pointer cursor */
    }

    .input-group button:hover {
        background-color: #EC7FA9 !important; /* Green hover replaced with Base Pink */
        /* Or use #FFB8E0 if that's preferred for button hover */
        /* background-color: #FFB8E0 !important; */
    }

    @media(max-width: 350px) {
        .input-group button {
            font-size: 13px;
        }
        .input-group input {
            font-size: 13px;
        }
    }

    /* End Newsletter */

    /* --------------------------- */

    /* Start Section */
    .footer .section {
        padding: 40px 0;
    }

    .footer .section .contact .logo{
        width: 50px;
    }

    .footer .section .contact .subtitle {
        margin: 20px 0 5px 0;
        color: #90908e !important;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .footer .section .contact .text {
        font-size: 1rem;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 5px;
        color: #465b52; /* Kept dark text color */
    }

    .footer .section .contact a img {
        max-width: 20px;
        opacity: .7;
        transition: all .3s;
    }
    .footer .section .contact a img:hover {
        opacity: 1;
    }

    /* Footer Social Links (Assuming these are in .input-group in footer) */
    .footer .section .contact .input-group a img { /* Adjusted selector */
        max-width: 20px;
        opacity: .7;
        transition: all .3s;
        padding-left: 5px;
    }

    .footer .section .contact .input-group a img:hover { /* Adjusted selector */
        opacity: 1;
    }
    /* End Footer Social Links */


    .footer .section .about .title {
        margin: 15px 0 20px 0;
        color: #1a1a1a;
    }

    .footer .section .about a {
        margin-bottom: 13px;
        font-size: 14px;
        color: #1a1a1a;
        display: block;
        transition: all .3s;
    }
    .footer .section .about a:hover {
        color: #FFB8E0; /* Green hover replaced */
        margin-left: 8px; /* Check RTL: might need margin-right */
        margin-right: 8px; /* Added for RTL */
        margin-left: 0; /* Reset LTR margin */
    }

    .footer .section .install .app a {
        display: inline-block; /* Changed to inline-block for spacing */
        margin: 5px; /* Added margin */
    }

    .footer .section .install .app a:hover {
        margin-left: 5px !important; /* Reset hover margin */
        margin-right: 5px !important;
    }

    .footer .section .install .app {
        margin: 30px 0;
    }

    .footer .section .install .app img {
        max-width: 170px;
        /* border: 2px solid #e2e9e1; */ /* Light border */
        border: 2px solid #eee; /* Use consistent light border */
        border-radius: 4px;
        transition: all .3s;
    }
    .footer .section .install .app img:hover {
        border: 2px solid #EC7FA9; /* Green border replaced */
        margin-top: -5px;
    }

    .footer .section .install .app a:first-child img {
        margin-right: 5px; 
    }

    /* End Section */

    /* ------------------------- */

    /* Start copy right */

    .copy-right {
        padding: 25px 0;
        /* border-top: 1px solid #63a2c140; */ /* Blueish border */
        border-top: 1px solid #eee; /* Light grey border */
    }


    /* End copy right */

/* End Footer */

/* **************************************************** */

/* Start Breadcrumb */

.breadcrumb {
    padding: 20px;
    background-color: #f7f8f9;
    margin-bottom: 0; /* Remove default margin */
}

.breadcrumb .container {
    padding-left: 23px !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center; /* Vertically align items */
}

.breadcrumb li {
    display: flex; /* Align icon and text */
    align-items: center;
}

.breadcrumb li a {
    text-transform: capitalize;
    color: #6e6e6e;
    font-size: 16px;
    padding: 0 10px; /* Adjust padding */
    transition: all .3s;
}
.breadcrumb li a:hover {
    color: #EC7FA9; /* Green replaced */
}

.breadcrumb svg {
    position: relative;
    top: 2px; /* Fine-tune vertical alignment */
    color: #ccc; /* Lighter separator color */
    margin: 0 5px; /* Add space around separator */
}

/* Style for the active/last breadcrumb item */
.breadcrumb li:last-child a {
    color: #1a1a1a; /* Darker color for active item */
    font-weight: 500;
    pointer-events: none; /* Not clickable */
}
.breadcrumb li:last-child svg {
    display: none; /* Hide separator after last item */
}


/* End Breadcrumb */

/* ***************************************************** */

/* Start 404 */

.not-found img {
    max-width: 300px;
    margin-bottom: 20px; /* Added space */
}

.not-found h2 {
    font-size: 35px;
    color: #1a1a1a;
    font-family: cursive;
    font-weight: bold;
    margin-bottom: 10px; /* Added space */
}

.not-found p {
    font-weight: 400;
    line-height: 24px;
    color: #465b52; /* Kept dark text color */
    font-size: 17px;
    margin-bottom: 30px;
}

.not-found p a {
    color: #FFB8E0; /* Green replaced with Hover Pink */
    font-weight: 600;
    text-decoration: underline !important; /* Ensure link is visible */
}
.not-found p a:hover {
    color: #EC7FA9; /* Base pink on hover */
}


.not-found .back {
    display: inline-block;
    border: 1px solid #0000;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #EC7FA9; /* Green border replaced */
    background-color: #EC7FA9; /* Green bg replaced */
    cursor: pointer;
    -webkit-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
    letter-spacing: 0.5px;
}
.not-found .back:hover {
    background-color: #FFB8E0; /* Green hover replaced */
    border-color: #FFB8E0; /* Match border color */
    transform: translateY(-3px);
}

/* End 404 */

/* ***************************************************** */

/* Start ScrollTop */

.scroll {
    position: fixed;
    right: 2%;
    bottom: 3%;
    width: 50px !important;
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    border: 0;
    color: #fff;
    background: #EC7FA9; /* Green replaced */
    z-index: 99;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    box-shadow:  0 0 5px rgba(0,0,0,0.2); /* Softer shadow */
    opacity: 0;
    display: flex; /* Center icon */
    align-items: center;
    justify-content: center;
}
.scroll svg {
    width: 50% !important;
    height: auto; /* Adjust height */
    fill: currentColor; /* Use text color for fill */
}
.scroll:hover {
    background-color: #FFB8E0; /* Green hover replaced */
    border: none;
    transform: translateY(-2px); /* Add subtle hover effect */
}

/* Add rule to make scroll button visible when needed (via JS) */
.scroll.visible {
    opacity: 1;
    visibility: visible; /* Ensure visibility */
}

/* End ScrollTop */

/* **************************************************** */