/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.slider_imgg{
    height:450px !important;
    width: 100%;
}
.btn-primary {
    background-color: #08585f !important;
    border-color: #08585f !important;
}
.bg-primary {
    background-color: #08585f !important;
}
.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
    .sticky-top {
   background-color: white !important;
}
/* .bg_nav{
    background-color: rgb(255, 255, 255) !important;
} */

    .position {
    position: fixed;
    bottom: 0;
        width: 100%;
        background: black;
        padding: 15px;
}

}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown {
    0% {
        top: -25px;
    }
    50% {
        top: -45px;
    }
    100% {
        top: -25px;
    }
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}
    .banner_imgg {
  height:420px;
  background-image:url('/user_link/img/carousel-2.jpg'); /* background image */
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner_box {
  background: black !important;;
  padding: 40px;
  border-radius: 10px;
}

.banner_small_boxx {
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.banner_box h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.banner_box p {
  font-size: 15px;
  color: #222;
  max-width: 90%;
}

@media (max-width: 768px) {
  .banner_imgg {
    height: auto;
    padding: 40px 0;
  }

  .banner_box {
    margin-top: 20px;
  }
}
@media (max-width:567px) {
.padding_navmobile{
        padding: 21px;
}
.slider_imgg{
    height:216px !important;
    width: 100%;
}
    .first_slider {
        min-height: 216px;

}
.second_slider{
    height: 600px !important;
}
    .carousel .carousel-indicators [data-bs-target] {
        width: 21px;
        height: 21px;
}
.two_slider_box img {
    width: 100% !important;
}
.arrival-banner img {
    width: 100%;
    height:305px;
}
}

/* Section spacing */
.section-padding{
    padding:30px 0;
}

/* About section */
.about_ssubtitle{
    color:#2bb0af;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.aboutt_title{
    font-size:34px;
    font-weight:600;
    margin:15px 0;
}

.about_ttext{
    font-size:17px;
    color:#777;
    line-height:1.8;
}

/* Images */
.about-images img{
    width:100%;
    border-radius:4px;
}

/* Team */
.team-title{
    font-size:28px;
    font-weight:600;
}

.teamm_ccard{
    text-align:center;
}

.teamm_ccard img{
    width:100%;
    border-radius:6px;
        height: 274px;
    margin-bottom:15px;
}

.teamm_ccard h6{
    font-size:14px;
    font-weight:600;
    margin-bottom:2px;
}

.teamm_ccard span{
    font-size:13px;
    color:#2bb0af;
}

.team-social a{
    font-size:13px;
    color:#777;
    margin:0 6px;
    text-decoration:none;
}

.team-social a:hover{
    color:#000;
}

/* Button */
.btn-outline-custom{
    border:1px solid #2bb0af;
    color:#2bb0af;
    font-size:13px;
    padding:8px 20px;
    border-radius:4px;
}

.btn-outline-custom:hover{
    background:#2bb0af;
    color:#fff;
}
/* product details page */
    .pd-wrap {
        padding: 40px 0;
        font-family: 'Poppins', sans-serif;
    }

    .heading-section {
        text-align: center;
        margin-bottom: 20px;
    }

    .sub-heading {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        display: block;
        font-weight: 600;
        color: #2e9ca1;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .heading-section h2 {
        font-size: 32px;
        font-weight: 500;
        padding-top: 10px;
        padding-bottom: 15px;
        font-family: 'Poppins', sans-serif;
    }

    .user-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        position: relative;
        min-width: 80px;
        background-size: 100%;
    }

    .carousel-testimonial .item {
        padding: 30px 10px;
    }

    .quote {
        position: absolute;
        top: -23px;
        color: #2e9da1;
        font-size: 27px;
    }

    .name {
        margin-bottom: 0;
        line-height: 14px;
        font-size: 17px;
        font-weight: 500;
    }

    .position {
        color: #adadad;
        font-size: 14px;
    }

    .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        outline: none;
        height: 25px;
    }

    .owl-nav button svg {
        width: 25px;
        height: 25px;
    }

    .owl-nav button.owl-prev {
        left: 25px;
    }

    .owl-nav button.owl-next {
        right: 25px;
    }

    .owl-nav button span {
        font-size: 45px;
    }

    .product-thumb .item img {
        height: 100px;
    }

    .product-name {
        font-size: 22px;
        font-weight: 500;
        line-height: 22px;
        margin-bottom: 4px;
    }

    .product-price-discount {
        font-size: 22px;
        font-weight: 400;
        padding: 10px 0;
        clear: both;
    }

    .product-price-discount span.line-through {
        text-decoration: line-through;
        margin-left: 10px;
        font-size: 14px;
        vertical-align: middle;
        color: #a5a5a5;
    }

    .display-flex {
        display: flex;
    }

    .align-center {
        align-items: center;
    }

    .product-info {
        width: 100%;
    }

    .reviews-counter {
        font-size: 13px;
    }

    .reviews-counter span {
        vertical-align: -2px;
    }

    .rate {
        float: left;
        padding: 0 10px 0 0;
    }

    .rate:not(:checked)>input {
        position: absolute;
        top: -9999px;
    }

    .rate:not(:checked)>label {
        float: right;
        width: 15px;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        font-size: 21px;
        color: #ccc;
        margin-bottom: 0;
        line-height: 21px;
    }

    .rate:not(:checked)>label:before {
        content: '\2605';
    }

    .rate>input:checked~label {
        color: #ffc700;
    }

    .rate:not(:checked)>label:hover,
    .rate:not(:checked)>label:hover~label {
        color: #deb217;
    }

    .rate>input:checked+label:hover,
    .rate>input:checked+label:hover~label,
    .rate>input:checked~label:hover,
    .rate>input:checked~label:hover~label,
    .rate>label:hover~input:checked~label {
        color: #c59b08;
    }

    .product-dtl p {
        font-size: 14px;
        line-height: 24px;
        color: #7a7a7a;
    }

    .product-dtl .form-control {
        font-size: 15px;
    }

    .product-dtl label {
        line-height: 16px;
        font-size: 15px;
    }

    .form-control:focus {
        outline: none;
        box-shadow: none;
    }

    .product-count {
        margin-top: 15px;
    }

    .product-count .qtyminus,
    .product-count .qtyplus {
        width: 34px;
        height: 34px;
        background: #212529;
        text-align: center;
        font-size: 19px;
        line-height: 36px;
        color: #fff;
        cursor: pointer;
    }

    .product-count .qtyminus {
        border-radius: 3px 0 0 3px;
    }

    .product-count .qtyplus {
        border-radius: 0 3px 3px 0;
    }

    .product-count .qty {
        width: 60px;
        text-align: center;
    }

    .round-black-btn {
        border-radius: 4px;
        background: #212529;
        color: #fff;
        padding: 7px 45px;
        display: inline-block;
        margin-top: 20px;
        border: solid 2px #212529;
        transition: all 0.5s ease-in-out 0s;
    }

    .round-black-btn:hover,
    .round-black-btn:focus {
        background: transparent;
        color: #212529;
        text-decoration: none;
    }

    .product-info-tabs {
        margin-top: 25px;
    }

    .product-info-tabs .nav-tabs {
        border-bottom: 2px solid #d8d8d8;
    }

    .product-info-tabs .nav-tabs .nav-item {
        margin-bottom: 0;
    }

    .product-info-tabs .nav-tabs .nav-link {
        border: none;
        border-bottom: 2px solid transparent;
        color: #323232;
    }

    .product-info-tabs .nav-tabs .nav-item .nav-link:hover {
        border: none;
    }

    .product-info-tabs .nav-tabs .nav-item.show .nav-link,
    .product-info-tabs .nav-tabs .nav-link.active,
    .product-info-tabs .nav-tabs .nav-link.active:hover {
        border: none;
        border-bottom: 2px solid #d8d8d8;
        font-weight: bold;
    }

    .product-info-tabs .tab-content .tab-pane {
        padding: 30px 20px;
        font-size: 15px;
        line-height: 24px;
        color: #7a7a7a;
    }

    .review-form .form-group {
        clear: both;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .review-form .rate {
        float: none;
        display: inline-block;
    }

    .review-heading {
        font-size: 24px;
        font-weight: 600;
        line-height: 24px;
        margin-bottom: 6px;
        text-transform: uppercase;
        color: #000;
    }

    .review-form .form-control {
        font-size: 14px;
    }

    .review-form input.form-control {
        height: 40px;
    }

    .review-form textarea.form-control {
        resize: none;
    }

    .review-form .round-black-btn {
        text-transform: uppercase;
        cursor: pointer;
    }

    /* Title */
    .product_ttitle {
        font-size: 20px;
        font-weight: 500;
    }

    /* Price */
    .price {
        font-size: 20px;
        font-weight: 600;
    }

    .mrp {
        font-size: 13px;
        color: #666;
    }

    .pts {
        font-size: 13px;
        color: #444;
    }

    /* Recommender */
    .fit-box {
        background: #f4f6f8;
        padding: 12px 15px;
        border-radius: 4px;
        font-size: 13px;
    }

    .fit-btn {
        background: #0b2d4d;
        color: #fff;
        font-size: 12px;
        padding: 6px 14px;
        border-radius: 3px;
        border: none;
    }

    /* Size boxes */
    .size-label {
        font-size: 13px;
        color: #777;
    }

    .size_box {
        width: 48px;
        height: 40px;
        border: 1px solid #d6d6d6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        border-radius: 4px;
        transition: 0.2s ease;
    }

    /* Hover */
    .size_box:hover {
        background: #f5c400;
        border-color: #f5c400;
        font-weight: 600;
    }

    /* Active */
    .size_box.active {
        background: #f5c400;
        border-color: #f5c400;
        font-weight: 600;
    }

    /* Links */
    .link {
        font-size: 13px;
        text-decoration: underline;
        cursor: pointer;
    }

    /* Color thumb */
    .color_tthumbb {
        width: 42px;
        height: 55px;
        border: 1px solid #ccc;
        border-radius: 4px;
        overflow: hidden;
    }
/* product pages */


        /* Product Card */
        .product_ccard {
            background: #fff;
            border-radius: 18px;
            padding: 15px;
            position: relative;
            transition: .3s;
            border: 1px solid #eef2f1;
        }

        .product_ccard:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* Badge */
        .badge_ccustom {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 20px;
        }

        .badge-hot{background:#ff5a5f;color:#fff;}
.badge-new{background:#6fcf97;color:#fff;}
.badge-best{background:#f2994a;color:#fff;}

        /* Image */
        .productimg_g {
            border-radius: 14px;
            text-align: center;
            position: relative;
        }

        .productimg_g img {
            height: 250px;
            width: 100%;
        }

        /* Hover icons */
        .hover-icons {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transition: .3s;
        }

        .hover-icons i {
            background: #e7f5ef;
            color: #2f8f6b;
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
        }

        .product_ccard:hover .hover-icons {
            opacity: 1;
        }

        /* Text */
        .category {
            font-size: 12px;
            color: #999;
            margin-top: 10px;
        }

        .title {
            font-weight: 600;
        }

        .price {
            color: #2f8f6b;
            font-weight: 600;
        }

        .old-price {
            font-size: 13px;
            color: #aaa;
            text-decoration: line-through;
        }

        .rating {
            font-size: 13px;
            color: #f2c94c;
        }

        /* Wishlist bottom */
        .bottom-icon {
            position: absolute;
            right: 15px;
            bottom: 15px;
            background: #e7f5ef;
            color: #2f8f6b;
            padding: 8px;
            border-radius: 50%;
        }
/* contact page */

    .contact-section {
      /* padding: 100px 0; */
      background: #ffffff;
    }

    .contact-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .contact-title h2 {
      font-weight: 600;
      color: #222;
      margin-bottom: 10px;
    }

    .contact-title p {
      color: #888;
      font-size: 14px;
    }

    .form-control {
      border-radius: 6px;
      padding: 14px 16px;
      border: 1px solid #eee;
      font-size: 14px;
    }

    .form-control:focus {
      border-color: #1aa59a;
      box-shadow: none;
    }

    textarea.form-control {
      min-height: 160px;
      resize: none;
    }

    .submit-btn {
      background: #1aa59a;
      color: #fff;
      border: none;
      padding: 14px 40px;
      border-radius: 6px;
      font-weight: 500;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background: #148c83;
    }
/* header css */
    .top_hheader {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

/* Logo */
.top_logo {
  font-weight: 700;
  color: #5a1a4a;
}

.top_logo span {
  color: #000;
}

/* Search box */
.searchh_box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.searchh_box input {
  border: none;
  padding: 12px 15px;
  width: 100%;
  outline: none;
}

.searchh_box button {
  background: black;
  border: none;
  padding: 0 20px;
  color: #fff;
  font-size: 18px;
}

/* Icons */
.headerr_iicons {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.iconn_iitem {
  position: relative;
  text-align: center;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.iconn_iitem i {
  font-size: 20px;
  display: block;
}

.cart .badge {
  position: absolute;
  top: -6px;
  right: 10px;
  background: #7a1b57;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 3px 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .headerr_iicons {
    justify-content: center;
    margin-top: 10px;
  }
}
/* Remove default bootstrap arrow */
.account_ddropdown .dropdown-toggle::after {
  display: none;
}

/* Hover open */
.account_ddropdown:hover .dropdown-menu {
  display: block;
  margin-top: 10px;
}

/* Dropdown styling */
.account_ddropdown .dropdown-menu {
  min-width: 180px;
  border-radius: 6px;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 8px 0;
}

.account_ddropdown .dropdown-item {
  font-size: 14px;
  padding: 8px 15px;
}

.account_ddropdown .dropdown-item:hover {
  background: #7a1b57;
  color: #fff;
}

/* Cursor fix */
.account_ddropdown a {
  color: inherit;
  text-decoration: none;
}

