#header{
    background:#fff;
}

.header-top {
    background: #323232;
    padding: 5px 0;
}
.header-top ul li a{
    color:#fff;
}
.header-top ul li a:hover{
    color:#ffd0d0!important;
}
.navbar-nav2 {
    flex-direction: row-reverse;
}
.navbar-expand-md .navbar-collapse {
    display: block !important;
}
.navbar {
    border-top: #ccc 1px solid;
    width: 100%;
}
#header .nav-link {
    padding: 10px 10px;
}
.logo-box{
    padding:20px 0;
}
.cart-box {
    float: right;
}
.cart-box ul{
    list-style:none;
    padding:0;
    margin:0;
    display: flex;
}
.cart-box .cartbox {
    position: relative;
}

    .cart-box .cartbox .items__count {
        position: absolute;
        left: 1.8rem;
        top: 3px;
        width: 20px;
        height: 20px;
        font-size: 14px;
        line-height: 20px;
        background: #fff;
        text-align: center;
        border-radius: 50%;
        color: #000;
    }
.navbar-expand-md .navbar-collapse {
    margin: auto!important;
}
.navbar-collapse {
    flex-basis: auto !important;
    flex-grow: inherit !important;
}
.product-box {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border: 1px solid #eee;
    /*padding: 10px 10px 0;*/
    background: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
   /*  height: 100%;
    margin: 0 !important;*/
    margin-bottom: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.product-box:hover {
    transform: translateY(-4px);
  }
.product-box img {
    max-width: 100%;
    text-align: center;
    height: auto;
    margin-bottom: 10px;
}
.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    padding: 0 15px;
}
.product-price {
    font-size: 16px;
    margin-bottom: 0;
    text-align: center;
    padding: 0 15px;
}

.product-compare-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

.product-discount-price {
    color: #e53935;
    font-weight: 600;
}
.product-button{
    display:block;
}
.product-button a {
    padding: 9px 24px;
    display: inline-block;
    font-size: 14px;
    background-color: transparent;
    color: #000;
    border: #000 1px solid;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 10px;
    width: auto;
    max-width: none;
    text-align: center;
    box-sizing: border-box;
}

  .product-button a:hover {
    background-color: #000;
    color:#fff;
  }

.bottom-view a {
    border: #000 1px solid;
    padding: 13px 35px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    color: #000;
    line-height: 20px;
    font-weight: 600;
}
.bottom-view a:hover{
    background:#000;
    color:#fff;
}
#delivery-box{
    display:flex;
    margin-bottom:15px;
}
#delivery-box .delivery{
    /*width:220px;*/
    margin-right:15px;
    line-height:20px;
}
#delivery-box .delivery:last-child{
    margin-right:0;
}
.search-input {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.search-btn {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.search-box {
    display: flex;
    align-items: center;
    width: 50px; /* initially small */
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.4s ease;
}

    /* Active state (open) */
    .search-box.active {
        width: 390px;
        position: relative;
        z-index: 999;
        /*margin-right: -17px;*/
        background: #e5e5e5 !important;
        padding-right: 8px;
    }

    /* Input */
    .search-box input {
        width: 0;
        padding: 6px 10px;
        border: none;
        outline: none;
        opacity: 0;
        transition: 0.4s;
        border: #e5e5e5 1px solid;
    }

    /* Show input when active */
    .search-box.active input {
        width: 100%;
        opacity: 1;
    }

    /* Dropdown */
    .search-box select {
        width: 120px;
        border: none;
        background: #e5e5e5;
        padding: 10px;
        display: none;
        box-shadow: none;
        outline: none;
        font-size: 13px;
    }
    .search-box select option{
        font-size:13px;
        padding-right:10px;
    }
    .search-box a {
        display: none;
    }

    /* Show dropdown when active */
    .search-box.active select {
        display: block;
    }
    .search-box.active a {
        display: block;
    }

    /* Button */
    .search-box button {
        border: none;
        background: transparent;
        padding: 10px 5px;
        cursor: pointer;
    }
.breadcrumb{
    margin-bottom:0;
}
.breadcrumb li a {
    font-size: 14px;
}

.zoom-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border: 1px solid #ddd;
  position: relative;
  margin: auto;
}

.zoom-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.1s ease;
}

/* thumbnails */
.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.thumbnails img {
  width: 90px;
  height:90px;
  cursor: pointer;
  /*border: 2px solid transparent;*/
  object-fit:cover;  
  margin-right: 3px;
}

.thumbnails img:hover {
  border-color: black;
}

#description-box h1 {
    font-size: 20px;
}
#description-box h2 {
    font-size: 20px;
}
#description-box h3 {
    font-size: 20px;
}
#description-box h4 {
    font-size: 20px;
}
#description-box h5 {
    font-size: 20px;
}
#description-box h6 {
    font-size: 20px;
}

.h-40 {
    height: 40px;
}
.add-cart {
    padding-left: 30px;
    padding-right: 30px;
}

.footer-main {
    background: #fff url(/images/Peacock-Feather.png) bottom left no-repeat;
    /*background-position: left 30px center;*/
}
.shop_pg1r1 {
    width: 258px;
}
.contact_1li {
    background: #fff;
    border: #ccc 1px solid;
    padding-bottom: 20px !important;
}
.contact_1r {
    background: #fff;
    border: #ccc 1px solid;
    padding-bottom: 20px !important;
}
.cursor{
    cursor:pointer;
}
.price__filter--input {
    width: 98px;
    margin-right: 7px;
}
.price__filter--currency {
    margin-right: 5px;
}
.h45 {
    height: 45px;
}

.whatsap-btn {
    position: fixed;
    bottom: 9px;
    right: 0;
    background: none;
    color: #fff;
    z-index: 999;
    font-size: 25px;
    width: 65px;
    height: 50px;
}

    .whatsap-btn i {
        background: #28A219 !important;
        color: #fff;
        font-size: 45px;
        width: 41px;
        height: 41px;
        /* padding: 15px 17px; */
        /* margin: 0 136px 0 0; */
        border-radius: 100px;
    }
.text-muted2 {
    --bs-text-opacity: 1;
    color: #8d949b !important;
}

@media(max-width:768px) {
    .delivery-main {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    #delivery-box {
        width: 1200px;
    }
    .logo-img img {
        width: 95%;
    }
    .search-box {
        position: absolute;
        top: 70px;        
        left: 0;
        right: 0;
        z-index: 999;
    }
        .search-box.active {
            width: 100%;
            left: 0;
            right: 0;
            position: absolute;
        }
   .mobile-menu-trigger{
        display:block!important;
    }
    .eight-gallery__image-wrapper {
        width: 140px;
        height: 140px;
    }
    .eight-gallery__item {
        width:auto!important;
    }
    .add-cart {
        padding-left: 20px;
        padding-right: 20px;
    }
    .carousel-item img {
        height: 200px;
        object-fit: cover;
    }
    .footer-main {
        background: #fff;
    }
    .zoom-container {
        height: 334px;
    }
    .thumbnails-main {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .thumbnails {
        /*width: 483px;*/
        text-align: left;
        display: block;
    }
    .add-banner img{
        height:170px;
        object-fit:cover;
    }
    .owl-prev svg {
        width: 30px !important;
        height: 30px !important;
    }
    .owl-next svg{
        width:30px!important;
        height:30px!important;
    }
    .owl-nav{
        display:none;
    }
    .product-button a {
        padding: 5px 20px;
        font-size: 13px;
    }
    .bottom-view a {
        padding: 10px 25px;
        font-size: 15px;
    }
    #about_h {
        padding-top: 30px !important;
    }
    .filter-sticky {
        background: #fff;        
        margin-bottom: 10px;
    }
    .filter-sticky.fixed {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 5px;
        padding-left: 4px;
        padding-bottom: 5px;
        border-bottom:#ccc 1px solid;        
    }
    .filter-sticky .btn-dark{
        width:100%;
    }
    .p_4 {
        padding-top: 17px;
    }
     .menu .menu__inner .menu__item {
	    border-bottom: #dfdfdf 1px solid;
    }
    .submenu.is-current-slide li {
        border-bottom: #dfdfdf 1px solid;
    }
    .menu .menu__inner .menu__item .menu__link{
        font-weight:500!important;
    }
    .product-title {
        font-size: 13px;
        padding: 0 10px 0 5px;
    }
    .product-price {
        font-size: 12px;
    }
}


