*{
    margin:0;
    padding:0;
    scrollbar-width: none;
}

body{
    box-sizing:border-box;
    font-family: "Poppins", sans-serif;
    background-color:var(--white-text);

}

a {
    text-decoration: none;
}

h1, h2, .main-btn {
    font-family: "Roboto Slab", sans-serif;
}


ul{
    list-style:none;
    padding-left: 0;
    margin-bottom: 0;
}
img{
    width:100%;
}

:root{
    --body:#F4F6F8;
    --primary-color:#FE816D;
    --text-color:#222222;
    --sub-text:#797979;
    --white-text:#fff;
    --grey-color:#565656;
    --black-text:#000;
    --footer-bg: #222222;
    --border-color: #D9D9D9;
    --rating-fill-color:#FFCE0B;
    --rating-bg:#EAEAEA;
    --sale-tag:#6CD212;
    --border-light-color:#F6F6F6;
    --shadow:0px 0px 35px 0px #0000000D;
    --light-green:#CEFFD4;
    --bg-size:#F1EEEE;
    --recent-blog:#F9F9F9BF;
     --shiped-text:#667085;
    
}

.container-fluid {
    padding-left: 160px;
    padding-right: 160px;
}

/* ................................ header css ............................... */

.top-header {
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-block;
    width: 150px;
}

.logo img {
    width: 100%;
    object-fit: contain;
}

.search-box {
    position: relative;
    /* flex-basis: 500px; */
    width: 65%;
}

.search-box .input-box input {
    display: inline-block;
    height: 45px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    background-color: rgb(254 129 109 / 26%);
    color: var(--black-text);
    font-size: 16px;
    text-transform: capitalize;
    padding: 10px 12px;
    padding-right: 40px;
    position: relative;
}

.search-box .input-box input:focus {
    outline: none;
}

.search-box .input-box input::placeholder {
    color: var(--black-text);
}

.search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 20px;
}

.top-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

.top-right {
    display: flex;
    justify-content: end;
    gap: 10px;
    width: 50%;
}

.top-right-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    padding-right: 25px;
    position: relative;
}

.top-right-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-color: #d9d9d9;
}

.top-right-item:last-child::after {
    display: none;
}

.top-right-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.top-right-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.top-right-title span {
    display: inline-block;
    font-size: 16px;
    color: var(--black-text);
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.5s;
}

.top-right-item:hover .top-right-title span {
    color: var(--primary-color);
}

.header-main {
    padding: 15px 0;
    background-color: rgb(254 129 109 / 46%);
}

.header-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-dropdown {
    padding: 15px 25px;
    border-radius: 5px;
    background-color: var(--white-text);
    width: 15%;
    position: relative;
    cursor: pointer;
    min-width: fit-content;
}

.category-dropdown > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--black-text);
    text-transform: capitalize;
    font-weight: 500;
}

.category-dropdown a img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.category-dropdown a i {
    color: var(--text-color);
}

.cate-dropdown-content {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 35px rgb(0 0 0 / 5%);
    position: absolute;
    left: 0;
    width: 340px;
    top: 55px;
    z-index: 5;
    background-color: var(--white-text);
    opacity: 0;
    display: none;
}

.category-dropdown:hover .cate-dropdown-content {
    opacity: 1;
    display: block;
}

.cate-dropdown-content li {
    padding: 10px 8px;
    border: 1px solid #EFEFEF;
    border-radius: 5px;
    margin-bottom: 15px;
    transition:all 0.5s;
}

.cate-dropdown-content li:hover {
    border: 1px solid var(--primary-color);
}

.cate-dropdown-content li:last-child {
    margin-bottom: 0;
}

.cate-dropdown-content li a {
    display: flex;
    gap: 15px;
    align-items: center;
    color: var(--black-text);
    transition: all 0.5s;
}

.cate-dropdown-content li:hover a {
    color: var(--primary-color);
}

.cate-dropdown-content li a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.cate-dropdown-content li a span {
    font-size: 16px;
    display: inline-block;
    text-transform: capitalize;
}

.menu-container {
    width: 70%;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.main-menu li a {
    padding: 10px;
    font-size: 16px;
    color: var(--black-text);
    text-transform: capitalize;
    font-weight: 500;
    transition: all 0.5s;
    border-bottom: 1px solid transparent;
}

.main-menu li:hover a {
    border-bottom: 1px solid var(--black-text);
}

.main-menu li a.active {
    border-bottom: 1px solid var(--black-text);
}

.header-login {
    width: auto;
    min-width: fit-content;
}

.header-login a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: var(--white-text);
    border-radius: 5px;
    transition: all 0.5s;
}

.header-login a:hover {
    background-color: var(--primary-color);
}

.header-login a img {
    width: 18px;
    object-fit: contain;
}

.header-login a:hover img {
    filter: brightness(5);
}

.header-login a span {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--black-text);
    font-weight: 500;
    display: inline-block;
}

.header-login a:hover span {
    color: var(--white-text);
}

.top-right-mobile {
    display: none;
}

.top-right-mobile .top-right-icon {
    width: auto;
    height: auto;
}

.top-right-mobile .top-right-icon img {
    width:25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0);
}

.search-btn img {
    width: 25px;
    height: 25px;
}

.toggle-btn i {
    font-size: 25px;
    vertical-align: middle;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
}

.mobile-menu li a {
    padding: 15px 5px;
    font-size: 16px;
    color: var(--black-text);
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu li:last-child a {
    border-bottom: none;
}

.mobile-offcanvas .offcanvas-body {
    padding-top: 0;
}


.location-dropdown {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 35px rgb(0 0 0 / 10%);
    z-index: 5;
    position: absolute;
    left: 0;
    width: 300px;
    top: 45px;
    background-color: var(--white-text);
    opacity: 0;
    display: none;
}

.top-right-item:hover .location-dropdown {
    opacity: 1;
    display: block;
}

.location-dropdown li {
    padding: 10px 8px;
    border: 1px solid #EFEFEF;
    border-radius: 5px;
    margin-bottom: 10px;
}


.location-dropdown li:last-child {
    margin-bottom: 0;
}

.location-dropdown li span {
    font-size: 16px;
    display: inline-block;
    text-transform: capitalize;
    color: var(--black-text);
}

.location-dropdown li:hover span  {
    color: var(--primary-color);
}

.location-dropdown li:hover {
    border: 1px solid var(--primary-color);
}

/* title css  */

.main-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.main-title h2 {
    font-size: 30px;
    margin: 0;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--primary-color);
}

.main-title .main-btn {
    font-weight: 500;
}


/* button */
.main-btn {
    padding: 8px 30px;
    background-color: var(--primary-color);
    border-radius: 20px;
    font-size: 18px;
    line-height: normal;
    color: var(--white-text);
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease;
    text-align: center;
}

.main-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.scrollTop {
    position: fixed;
    right: 5%;
    border-radius: 50%;
    z-index: 9;
    bottom: 5%;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scrollTop a{
    color:var(--white-text);
    font-size:24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.scrollTop:hover{
    background-color: transparent;
   
}


/* .................................. home page css ............................ */


.hero-section {
    margin: 30px 0;
}

.hero-main {
    display: flex;
    gap: 35px;
}

.hero-slider {
    width: 65%;
    margin-bottom: 0;
}

.hero-slide {
    width: 100%;
    background-color: #E9E6E6;
    border-radius: 5px;
    height: 600px;
    position: relative;
}

.hero-slide img {
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.hero-content {
    position: absolute;
    bottom: 0;
    padding-left: 130px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 65%;
}

.hero-content > span {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    color: var(--black-text);
}


.hero-content h2 {
    font-size: 55px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
    color: var(--black-text);
}

.hero-content h2 span {
    color: var(--primary-color);
}

.hero-content .main-btn {
    display: inline-block;
}

.hero-slider .slick-dots li button:before {
    font-size: 15px;
    color: transparent;
    border: 1px solid var(--primary-color);
    opacity: 1;
    border-radius: 50px;
    height: 15px;
    width: 15px;
    content: "" !important;
    line-height: normal;
}

.hero-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
    background-color: var(--primary-color);
}

.hero-slider .slick-dots li button {
    height: 15px;
    width: 15px;
    padding: 0;
}

.hero-slider .slick-dots li {
    height: 15px;
    width: 15px;
    padding: 0;
}

.hero-slider .slick-dots {
    bottom: 30px;
}

.hero-right {
    width: 35%;
    background-color: #E9E6E6;
    border-radius: 5px;
    height: 600px;
    position: relative;
    padding: 30px 50px;
}

.hero-right-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.hero-right-content > span {
    border-radius: 50px;
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    background-color: rgb(254 129 109 / 26%);
    text-transform: capitalize;
    color: var(--black-text);
}

.hero-right-content h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
    color: var(--black-text);
    width: 70%;
}

.hero-right-content h2 span {
    color: var(--primary-color);
}

.hero-right-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
}

.hero-right-img img {
    width: 100%;
    object-fit: contain;
}

.service-section {
    padding: 80px 0 40px;
}

.service-item {
    display: flex;
    align-items: center;
}

.service-icon {
    border-radius: 10px;
    background-color: var(--primary-color);
    padding: 15px;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    cursor: pointer;
}

.service-icon img {
    height: 60px;
    width: 60px;
}

.service-content {
    padding: 40px 10px;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    align-items: start;
    justify-content: center;
    background-color: rgb(254 129 109 / 15%);
    margin-left: -40px;
    width: 100%;
}

.service-content h3 {
    margin: 0;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--black-text);
    transition: all 0.5s;
}

.service-item:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content span {
    font-size: 14px;
    display: inline-block;
    text-transform: capitalize;
    color: var(--black-text);
    margin-top: 5px;
}

.service-item:hover .service-icon {
    background-color: var(--white-text);
    border: 1px solid var(--primary-color);
}

.service-item:hover .service-icon img {
    filter: invert(30%) sepia(80%) saturate(1611%) hue-rotate(311deg) brightness(95%) contrast(112%);
}



/*....................blog page css.....................*/

.image-date-flex{
    display:flex;
    align-items:start;
    gap:30px;
    margin-top:20px;
    padding-bottom:25px;
    border-bottom:1px solid #F1EEEE;
}
.user-blog{
    color:var(--primary-color);
}
    .user-blog{
    font-weight: 500;
    font-size: 20px;
}

.bd-image {
    border-radius: 10px;
}

.bd-image img{
    border-radius: 10px;
}

.image-date-flex .date-blog{
    font-weight: 500;
    font-size: 20px;
}

.bd-information{
    margin-bottom:30px;
}

.bd-information h4{
    font-weight: 600;
    font-size: 42px;
    line-height: normal;
    letter-spacing: 0%;
    color:var(--primary-color);
    padding-top:20px;
}
.bd-information p{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}
.blog-inner-image{
    display:flex;
    align-items:start;  
    justify-content:space-between; 
}
.blog-img-slide {
    width: 48%;
    overflow: hidden;
     border-radius:20px;
    transition: all 0.5s ease;
    overflow: hidden;
}
.blog-inner-image img{
    width:100%;
    border-radius:20px;
    transition: all 0.5s ease;
    overflow: hidden;
}
.blog-inner-image img:hover{
    transform: scale(1.05);
}


.blog-post-tags{
    display:flex;
    align-items:start;
    justify-content:space-between;
    margin-top:40px;
    gap: 10px;
}
.post-tags{
    display:flex;
    align-items:center;
    gap:20px;
}
.post-tags span{
    display:flex;
    align-items:start;
    gap:20px;
   
}


.post-tags h5{
    font-weight: 500;
    font-size: 22px;
    margin-bottom:0;
    color:var(--primary-color);

}
.blog-post-tags .filter-tags{
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--black-text);
    border-radius: 100px;
    border: 1px solid var(--primary-color);
    padding: 6px 20px;
    letter-spacing: 0; 
    display:block;
}
.bd-share-flex{
    display:flex;
    align-items:center;
    gap:20px;
}

.bd-share-flex span{
    font-weight: 500;
    font-size: 22px;
    color:var(--primary-color);
}
.shere-flex{
    display:flex;
    align-items:start;
    gap:12px;
}
.shere-flex a{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid var(--primary-color);
    color:var(--primary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: transparent;
    transition: all 0.5s ease;
}

.shere-flex a:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}


.blog-heading h2{
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    text-transform: capitalize;
    color:var(--primary-color);
   
}

.blog-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:40px;
}

.blog-filter{
    display:flex;
    align-items:center;
    gap:20px;
}
.blog-left .row{
    row-gap:40px;
}

.recent-blog-flex{
    display:flex;
    align-items:start;
    gap:12px;
    background-color:var(--recent-blog);
    border-radius: 8px;
    padding:15px 20px;
    margin-bottom:10px;
}
.comment-heading{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.comment-heading img{
    width:40px;
    height:40px;
}

.comment-heading span{
    font-family: Poppins;
    font-weight: 500;
    font-size: 34px;
    color:var(--primary-color);
}


.recnet-blog-image{
    width:24%;
    height:80px;
    border-radius:20px;
}
.recnet-blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
}
.recent-blog-info{
    width:76%;
}

.recent-blog-info h4{
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    margin-bottom:0;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.date-blog{
    font-weight: 500;
    font-size: 14px;
    color:var(--primary-color);
    margin-bottom:5px;
}

.filt-gallry-image{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.filt-gallry-image img {
    height: 150px;
    object-fit:cover;
}



.select-menu{
    border:1px solid var(--primary-color);
    border-radius:20px;
}

.select-menu .select-btn {
    display: flex;
    background: #fff;
    padding: 6px 37px;
    font-size: 18px;
    font-weight: 400;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    border-radius:20px;
}
.select-menu .options.feature-option{
    width:185px;
}

.select-menu .options {
  position: absolute;
  width:153px;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}
.select-menu .options .option {
  display: flex;
  cursor: pointer;
  padding: 8px 0px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}

.select-menu .options .option:hover {
  background: #f2f2f2;
}
.select-menu .options .option i {
  font-size: 25px;
  margin-right: 12px;
}
.option-text{
font-weight: 400;
font-size: 14px;
text-transform: capitalize;
}


.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}

.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}
.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}


/*...................product listing page css.....................*/


.bg-product-banner{
    background-image:url(../images/breadcrums-background.png);
    background-size:cover;
    background-repeat:no-repeat;
    padding:115px 0px;
}
.Product-heading{
    text-align:center;
}
.Product-heading h2{
    color:var(--black-text);
    font-weight: 400;
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom:12px;
}

.Product-heading ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.Product-heading ul li{
    color:var(--black-text);
}
.Product-heading ul li.active{
    color:var(--primary-color);
}

.Product-heading ul li{
    color:var(--black-text);
    font-family: Roboto Slab;
    font-weight: 400;
    font-size: 24px;
    text-transform: capitalize;
}
.Product-heading ul li a{
    text-decoration:none;
    color:var(--black-text);
    display:block;
}

.Product-heading ul li a i{
    font-size:22px;
}

.product-collection{
    padding:100px 0px;
}

.product-information a{
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    text-decoration:none;
    color:var(--black-text);
    display:block;
    /* white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; */
}

.product-information span{
    color:var(--text-color);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    text-transform: capitalize;
}
.rating{
    display:flex;
    align-items:center;
    gap:5px;
}
.rating-icon{
    display:flex;
    align-items:center;
    gap:5px;
}
.rating-icon i{
    color:var(--rating-fill-color);
}
.rating-icon i:last-child{
    color:var(--rating-bg);
}
.rating span{
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
    color:var(--black-text);
    display:block;
}
.product-image{
    position: relative;
    display:block;
    border-radius:10px;
    height:350px;
}
.product-image img{
    WIDTH:100%;
    height:100%;
    object-fit: cover;
    border-radius:10px;
}
.product-image .new-tag{
    position:absolute;
    right:0px;
    top:30px;
    background-color:var(--rating-bg);
    border-radius:100px;
    font-family:"Roboto Slab";
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color:var(--text-color);
    transform: rotate(-90deg);
    padding:6px 14px;
}
.product-image .sale-tag{
    background-color:var(--sale-tag); 
    color:var(--white-text);
}
.product-image .off-tag{
    font-family: "Roboto Slab";
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color:var(--white-text);
    background-color:var(--primary-color);
    border-radius:0px 100px 100px 0px;
    position:absolute;
    left:0;
    top:40px;
    padding:6px 8px;
}


.product-section{
    display:grid;
    grid-template-columns:repeat(3 ,1fr);
    grid-gap:40px 30px;
}

.product-information {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top:15px;
    padding:0px 15px;
}



.pagination {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding:100px 20px;
}
.pagination a:first-child{
    background-color:transparent;
}
.pagination a:last-child{
    background-color:transparent;
}

.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color:var(--black-text);
  background-color:var(--rating-bg);
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.pagination a.active {
  background-color:var(--primary-color);
  color:var(--white-text);
}
.pagination span {
  background: none;
  cursor: default;
}

.brands-section{
    padding:20px;
    border-radius:10px;
    box-shadow:var(--shadow);
}
.brands-section h2{
    font-family: "Roboto Slab";
    font-weight: 400;
    font-size: 22px;
    text-transform: capitalize;
    padding-bottom:5px;
    position: relative;
    margin-bottom:20px;
    color:var(--primary-color);
}

.brands-section h2:after{
    content:"";
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
    border:1px solid var(--border-light-color);
}
.brands-section h2:before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 30px;
    border: 1px solid var(--primary-color);
    z-index: 1;
    
}
.checkbox-input{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom: 10px;
}
.checkbox-input:last-child{
    margin-bottom:0;
}


.checkbox-input input{
    background-color:var(--rating-bg);
    border-radius:3px;
    width:15px;
    height:15px;
}
.checkbox-input label{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color:var(--black-text);
    cursor:pointer;
}

.filter-tags-section{
    display:flex;
    gap:15px;
    align-items:center; 
    flex-wrap:wrap;
}
.filter-tags-section .filter-tags{
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color:var(--black-text);
    border-radius:100px;
    border:1px solid var(--primary-color);
    padding:6px 35px;
    letter-spacing:0;
}


.inputs {
  display: flex;
  justify-content: space-between;

}

.inputs div {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.inputs label {
  font-size: 16px;
  margin-bottom: 5px;
  color:var(--black-text);
}

.inputs input {
  background-color: #f2f2f2;
  border: none;
  padding: 8px;
  border-radius: 5px;
  font-size: 14px;
}

input[type="range"] {
  width: 100%;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background:var(--primary-color);
  outline: none;
  margin:20px 0;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:var(--black-text);
  cursor: pointer;
  margin-top: -4px;
}
.price-range-label {
  font-size:16px;
  color:var(--text-color);
  margin-bottom:0px;
}

 
.category-dropdown:hover .product-category {
    opacity: 1;
    display: block;
}
 
.product-category li {
    padding: 10px 8px;
    border: 1px solid #EFEFEF;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.product-category li:hover{
    border: 1px solid var(--primary-color);
}

.product-category li:hover a{
    color: var(--primary-color);
}
 
.product-category li:last-child {
    margin-bottom: 0;
}
 
.product-category li a {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content:space-between;
    color: var(--black-text);
     transition: all 0.5s ease;

}
 
.product-category li a img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
 
.product-category li a span {
    font-size: 16px;
    display: inline-block;
    text-transform: capitalize;
}
.cat-title{
    display:flex;
    gap:15px;
    align-items:center;
}
.cat-arrow{
    width:25px;
    height:25px;
    border-radius:50%;
    background-color:var(--light-primary);
    padding:5px;
}

.show-more-flex{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:25px;
    cursor: pointer;
}

.show-more-flex i{
    width:25px;
    height:25px;
    border-radius:50%;
    background-color:var(--light-primary);
    color:var(--primary-color);
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.show-more-flex span{
    font-size: 16px;
    text-transform: capitalize;
    color:var(--primary-color);
}
.product-filter-section{
    display:flex;
    flex-direction:column;
    gap:40px;
}


.bg-product-banner .Product-heading ul li i {
    font-size: 18px;
}

.bg-product-banner .Product-heading ul li a i {
    font-size: 20px;
}

.bg-product-banner .Product-heading ul li a {
    display: flex;
    align-items: center;
    gap: 7px;
}

/*..............................product-detail page css.............................*/


.bg-product-detail{
    padding:80px 0px;
}

.product-image-section {
  display: flex;
  justify-content:space-between;
}

.thumbnail-slider {
  width:20%;
}

.thumbnail-slider .slick-slide {
  margin: 10px 0;
}

.thumbnail-slider img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.main-slider {
  width:76%;
}

.main-slider img {
  width: 100%;
  border-radius: 10px;
}


.product-detail-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.product-detail-info h2{
    font-weight: 500;
    font-size: 25px;
    text-transform: capitalize;
}
.in-stock-tags{
    display:flex;
    align-items:center;
    gap:25px;
}

.in-stock-tags span{
    width:100px;
    height:30px;
    border-radius:100px;
    background-color:var(--light-green);
    font-family: "Roboto Slab";
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color:#008D26;
    display:flex;
    justify-content:center;
    align-items:center;
}



.product-rating{
    display:flex;
    align-items:center;
    gap:5px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
    color:var(--black-text);
}

.product-rating span{
    background-color:transparent;
    display:flex;
    gap:5px;
}

.product-rating span i{
    color:var(--rating-fill-color);
}

.product-rating span i:last-child{
    color:var(--rating-bg);
}

.price{
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom:0;
}
.product-discription{
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    text-transform: capitalize;
    color:var(--black-text);
    margin-bottom:0;
}

.product-variable span{
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
}
.color-flex span{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #87ADD0;
    color: var(--white-text);
    font-size: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-variable{
    display:flex;
    align-items:center;
    gap:15px;
}

.color-flex{
    display:flex;
    align-items:center;
    gap:15px;
}
.product-size-variable{
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-size-variable .color-flex span{
    width:60px;
    height:25px;
    background-color:var(--bg-size);
    font-size: 14px;
    text-transform: uppercase;
    border-radius:50px;
    color:var(--black-text);
    font-weight:400;
    transition: all 0.5s ease;
}

.product-size-variable .color-flex span:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}

.product-size-variable .color-flex .active{
    background-color:var(--primary-color);
    color:var(--white-text);
}
.quantity{
    
}
.add-to-cart{
    font-family: Roboto Slab;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    display:flex;
    align-items:center;
    border:none;
    border-radius:5px;
    background-color:var(--primary-color);
    color:var(--white-text);
    padding:8px 33px;
    gap:15px;
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease;
}

.add-to-cart:hover{
    background-color: transparent;
    color: var(--primary-color);
}

.add-to-cart:hover img{
    filter: brightness(0) saturate(100%) invert(81%) sepia(42%) saturate(5285%) hue-rotate(314deg) brightness(101%) contrast(111%);
}

.add-to-cart img{
    width:20px;
    height:20px;
}
.wishlist{
    width: 40px;
    height: 40px;
    background-color: var(--rating-bg);
    padding: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    border: none;
    border-radius:5px;
    transition: all 0.5s ease;
}

.wishlist:hover{
      background-color: var(--primary-color);
}
.wishlist:hover img{
   filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7442%) hue-rotate(133deg) brightness(113%) contrast(113%);
}
.quantity{
    display:flex;
}
.quantity-cart{
    display:flex;
    gap:20px;
}

.quantity button{
    width:40px;
    height:40px;
    border-radius:5px;
    background-color:var(--rating-bg);
    border:none;
    transition: all 0.5s ease;
}

.quantity button:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}

.quantity input{
    border:1px solid var(--rating-bg);
    width:40px;
    height:40px;
    text-align:center;
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
}
.quantity input:focus{
    outline:none;
}
.features ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.features ul li{
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}

.share-flex{
    display:flex;
    align-items:center;
    gap:20px;
}
.share-flex span{
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0%;
    color:var(--text-color);
    text-transform:capitalize;

}
.socai-links{
    display:flex;
    align-items:center;
    gap:12px;
}
.socai-links a{
    display:flex;
    align-items:center;
    gap:12px;
}
.socai-links  a i{
    color:var(--primary-color);
    border:1px solid var(--primary-color);
    font-size:16px;
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition: all 0.5s ease;
}

.socai-links  a i:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}

.additional-info-section{
    padding:60px 0px;
}

.product-additional-tabing ul{
    justify-content:center;
    gap:20px;
    margin-bottom:40px;
}

.product-additional-tabing ul li a{
    text-transform: capitalize;
    font-family: Roboto Slab;
    font-weight: 500;
    font-size: 18px;
    padding: 6px 25px;
    border-radius: 100px !important;
    color: var(--black-text)!important;
    border:1px solid var(--primary-color);
    background-color: transparent;
    transition: all 0.5s ease;
    
}

.product-additional-tabing ul li a:hover i{
    background-color: var(--primary-color);
    color: var(--white-text);
}

.product-additional-tabing ul li a:hover{
    color: var(--primary-color)  !important;
}

.product-additional-tabing ul li a.active{
    background-color:var(--primary-color)!important;
    color:var(--white-text)!important;
}

.product-additional-tabing .tab-pane{
    border:1px solid var(--rating-bg);
    border-radius:5px;
    padding:40px;
}
.detail-section p{
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color:var(--black-text);
}
.variable-detail ul li{
    border-bottom:1px solid var(--rating-bg);
    padding-bottom:10px;
    margin-bottom:10px;
}

.variable-detail ul li span{
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color:var(--black-text);
}

.rating-flex{
    display:flex;
    align-items:center;
    gap:25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--rating-bg);
    margin-bottom:25px;
}

.image-customer{
    width:100px;
    height:100px;
}
.customer-info strong{
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0%;
    color:var(--grey-color);
    margin-bottom:5px;
    display:block;
}
.name-flex {
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:10px;
}
.name-flex h4{
    font-weight: 500;
    font-size: 20px;
    line-height: 18px;
    letter-spacing: 0%;
    margin-bottom:0;
    color:var(--primary-color);
}

.star-rating{
    color:var(--rating-fill-color);
    display:flex;
    align-items:center;
    gap:5px;
}
.customer-info p{
    color:var(--text-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    margin-bottom:0;
}
.customer-info{
    width:100%;
}

.view-more{
font-weight: 600;
font-size: 20px;
line-height: 100%;
letter-spacing: 0%;
text-decoration: underline;
text-transform:capitalize;
color:var(--primary-color);
display:flex;
align-items:center;
gap:14px;
}
.view-more img{
    width:24px;
}

.feedback{
    background-color: #f4f4f4;
    padding:45px;
    border-radius:20px;
    margin-top:40px;
}
.feedback h4{
    font-weight: 600;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color:var(--primary-color);
}
.form-section{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:30px 0px;
    margin-top:30px;
}




.form-label{
    width:48%;
    position: relative;
    display:flex;
    align-items:center;
    border-radius: 30px;
    padding: 16px 30px;
    background-color: var(--white-text);
    gap:12px;
    color:var(--primary-color);
}

.form-textarea{
    width:100%!important;
    height:237px;
    border-radius:30px;
}

.form-textarea textarea:focus{
    border: none;
}
.form-textarea textarea{
    width:100%;
    height:100%;
    border:none;
}
.form-textarea textarea:focus{
    outline:none;
}
.form-label input{
    width: 100%;
    position: relative;
    border: none; 
}

.form-label input:focus{
    outline:none;
}

.form-section button{
    font-family: Roboto Slab;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color:var(--white-text);
    background-color:var(--primary-color);
    border-radius:28px;
    padding:16px 38px;
}










/* ......................... categories section css ........................... */

.categories-section {
    padding: 40px 0 40px;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(10,1fr);
    gap: 22px;
}

.category-item {
    border-radius: 5px;
    background-color: var(--white-text);
    box-shadow: 0 1px 35px rgb(0 0 0 / 3%);
    padding-bottom: 15px;
    overflow: hidden;
    border: 1px solid #f7f7f7;
    transition: all 0.5s ease;
}


.category-item:hover .cate-title{
    color: var(--primary-color);
}

.category-icon {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 20px 10px;
}

.category-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    background-color: #f9f9f9;
    z-index: -1;
    transform: scale(1.1);
}

.category-icon img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.cate-title {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: capitalize;
    padding: 20px 15px 0;
    color: var(--black-text);
    transition: all 0.5s ease;
}
.category-item:hover .cate-title {
    color: var(--primary-color);
}

.main-category-section {
    padding: 40px 0;
}

.main-category {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

.main-category-item {
    border-radius: 10px;
    background-color: #E7F6EF;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.main-category-item:nth-child(2) {
    background-color: #f5f5f5;
}

.main-category-item:nth-child(3) {
    background-color: #F9F3EF;
}

.main-category-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    width: 55%;
}

.main-category-content span {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary-color);
    display: block;
}

.main-category-content h2 {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.main-category-content .main-btn {
    font-weight: 500;
    margin-top: 10px;
}

.main-category-img {
    width: 250px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.main-category-img img {
    width: 100%;
    object-fit: contain;
}

.home-offer-section {
    padding: 40px 0;
}

.offer-product {
    width: auto;
    max-width: fit-content;
    position: relative;
    z-index: 2;
}

.offer-product::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #FE725C;
    z-index: -1;
    transform: scale(1.1);
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
}

.offer-product-img {
    width: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 15px;
}

.offer-product-img img {
    width: 100%;
    object-fit: contain;
}

.home-offer-main {
    border-radius: 20px;
    background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
}

.offer-shape {
    margin-top: auto;
    margin-left: auto;
}

.offer-shape img {
    width: 350px;
    object-fit: contain;
}

.home-offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 30px 30px 35px;
}

.offer-time {
    display: flex;
    gap: 25px;
    margin: 10px 0;
}

.offer-days {
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-days span  {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 70px;
    width: 70px;
    border-radius: 100px;
    font-size: 30px;
    background-color: var(--white-text);
    color: var(--text-color);
}

.offer-days h3 {
    margin: 0;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--white-text);
    font-weight: 400;
}

.offer-percent {
    font-size: 24px;
    color: var(--primary-color);
    display: block;
    padding: 5px 30px;
    border-radius: 5px;
    background-color: var(--text-color);
    text-transform: capitalize;
}

.home-offer-content h4 {
    font-size: 35px;
    text-align: center;
    font-weight: 500;
    line-height: 50px;
    margin: 0;
    color: var(--white-text);
    text-transform: capitalize;
}

.home-offer-content .main-btn {
    font-size: 20px;
    font-weight: 500;
    background-color: var(--white-text);
    color: var(--primary-color);
    border-radius: 50px;
}

.app-main {
    padding: 100px 0;
    position: relative;
}

.app-inner-container {
    border-radius: 20px;
    background-color: var(--text-color);
    padding: 55px 60px;
    display: flex;
    justify-content: space-between;
    position: relative;
}


.app-content {
    width: 50%;
}

.app-content span  {
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.app-content h2 {
    margin: 0;
    text-transform: capitalize;
    font-size: 45px;
    font-weight: 500;
    color: var(--white-text);
}


.apps-plateform {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.apps-plateform img {
    width: 250px;
    object-fit: contain;
}

.app-img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 150px;
    top: -55px;
}

.app-img-inner {
    width: 275px;
}

.app-img-inner img {
    width: 100%;
    object-fit: contain;
}

.testimonial-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section .container-fluid {
    padding: 0;
}

.testimonial-section .main-title {
    justify-content: center;
    margin-bottom: 60px;
}

.testimonial-section .main-title h2 {
    font-size: 40px;
}

.testimonial-slide {
    border-radius: 20px;
    padding: 30px 40px;
    background-color: var(--white-text);
    box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
    position: relative;
    margin: 0 20px;
    margin-top: 140px;
}

.testimonial-slide.slick-center.slick-current {
    margin-top: 0;
    margin-bottom: 25px;
}

.testimonial-slide.slick-center.slick-current .testi-icon {
    background-color: var(--primary-color);
}

.testimonial-slide.slick-center.slick-current .testi-icon img {
    filter: none;
}

.testi-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: start;
}

.testi-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testi-img {
    width: 70px;
    height: 70px;
    border-radius: 100px;
}

.testi-img img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}

.testi-name h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 3px;
}


.testi-name span  {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--text-color);
    display: block;
}

.testi-content {
    padding-bottom: 25px;
}

.testi-content p {
    font-size: 20px;
    line-height: 35px;
}

.testi-review {
    display: flex;
    gap: 7px;
}

.testi-review i {
    color: #FFA944;
    font-size: 25px;
}

.testi-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    height: 80px;
    width: 80px;
    border-radius: 100px;
    background-color: #FFF5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    padding: 15px;
}

.testi-icon i {
    font-size: 25px;
    color: var(--primary-color);
}

.testi-icon img {
    width: 30px;
    filter: invert(30%) sepia(80%) saturate(1611%) hue-rotate(311deg) brightness(95%) contrast(112%);
}

.testimonial-slider .slick-list {
    overflow: visible;
}

.testimonial-slide.slick-center.slick-current:hover .testi-icon {
    background-color: #FFF5F5;
}

.testimonial-slide.slick-center.slick-current:hover .testi-icon img {
    filter: invert(30%) sepia(80%) saturate(1611%) hue-rotate(311deg) brightness(95%) contrast(112%);
}

.testimonial-slider .slick-dots li button:before {
    color: var(--primary-color);
    font-size: 20px;
    content: "" !important;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 100px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    width: 100px !important;
}

.testimonial-slider .slick-dots li.slick-active {
    width: 100px !important;
}

.testimonial-slider .slick-dots li {
    margin: 0 10px;
}

/*........................ blog section css ................ */

.blog-section {
    padding: 60px 0 80px;
    position: relative;
}


.blog-section .main-title {
    margin-bottom: 60px;
}

.blog-item {
    padding: 40px;
    border-radius: 20px;
    background-color: var(--white-text);
    box-shadow: 0 5px 15px rgb(0 31 96 / 6%);
    position: relative;
}

.blog-img {
    position: relative;
    width: 100%;
    height: 270px;
    border-radius: 20px;
    transition: all 0.5s;
    margin-bottom: 25px;
}

.blog-img a {
    height:100%;
    display: block;
    overflow: hidden;
    transition: all 0.5s;
    border-radius: 20px;
}

.blog-img img {
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 7px 20px;
    background-color: var(--primary-color);
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.blog-info::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -25px;
    border-bottom: 35px solid var(--primary-color);
    border-left: 35px solid transparent;
    z-index: -1;
}

.blog-info li {
    display: flex;
    gap: 10px;
    color: var(--white-text);
    align-items: center;
}

.blog-info li span {
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
}

.blog-info li i {
    font-size: 16px;
}


.blog-content a span  {
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
    margin-bottom: 10px;
    line-height: 25px;
    color: var(--text-color);
    display: block;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s;
}

.blog-item:hover .blog-content a span  {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    margin: 0;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content .main-btn {
    font-weight: 500;
    margin-top: 10px;
}

.blog-main .row {
    row-gap: 30px;
}

.home-product-main {
    position: relative;
    padding: 40px 0;
}

.product-tabs-content .product-section {
    grid-template-columns:repeat(4 ,1fr);
}

.product-tabs ul li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto Slab", sans-serif;
    color: var(--text-color) !important;
    padding: 8px 35px;
    border-radius: 100px !important;
    transition: all 0.5s;
    border: 1px solid var(--primary-color);
}

.product-tabs ul li a.active {
    background-color: var(--primary-color) !important;
    color: var(--white-text) !important;
}

.product-tabs ul li a:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-text) !important;
}

.product-tabs ul {
    gap: 15px;
    max-width: 700px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
}

.product-tabs ul::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}
.product-tabs ul::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.product-tabs ul::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 10px;
    margin-top: 5px;
}

.trending-products {
    padding: 40px 0;
}

.trending-slider .trending-slide {
    margin: 0 20px;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background-color: #FFEAE6;
    padding: 5px;
    color: var(--primary-color);
    cursor: pointer;
    position: absolute;
    top: -75px;
    right: 0;
    transition: all 0.5s ease;
}

.slider-arrow:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}

.slider-arrow.prev-arrow {
    right: 55px;
}

.cate-view-btn {
    display: none;
    margin: auto;
    margin-top: 30px;
    width: auto;
    text-align: center;
}

.categories-inner {
    padding: 80px 0;
}

.categories-inner .category-container {
    grid-template-columns: repeat(6,1fr);
    gap: 40px;
}

.categories-inner .category-icon img {
    height: 70px;
    width: 70px;
}

.categories-inner .cate-title {
    font-size: 20px;
    padding-top: 30px;
}

.categories-inner .category-item {
    padding-bottom: 30px;
}

.product-img-box {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.product-img-box .product-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(24 24 24 / 8%);
    height: 0;
    opacity: 0;
    z-index: 0;
    transition: all 0.5s;
    border-radius: 10px;
}

.product-img-box:hover .product-image::after {
    height: 100%;
    opacity: 1;
}

.product-cart-info {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    z-index: 2;
}

.product-img-box:hover .product-cart-info {
    bottom: 25px;
}

.product-icons {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    background-color: var(--white-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icons img {
    width: 20px;
}

.product-cart-info .main-btn:hover {
    background-color: var(--white-text);
    color: var(--primary-color);
}




/* .............................. offers page css ................................ */

.offers-section {
    padding: 80px 0 40px;
}

.offers-section .main-title {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.offers-section .main-title h2 {
    font-size: 40px;
}

.offers-section .main-title span  {
    font-size: 24px;
    display: inline-block;
    color: #565656;
    font-weight: 500;
}

.offers-section .product-section {
    grid-template-columns: repeat(4,1fr);
    gap: 60px 30px;
}

.offers-countdown {
    padding: 10px 25px;
    background-color: #F2F1F1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.days-count {
    font-size: 16px;
    display: inline-block;
    font-weight: 500;
    color: var(--black-text);
    text-transform: capitalize;
}

.time-count {
    display: flex;
    gap: 20px;
}

.time-count span  {
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
    color: var(--black-text);
    position: relative;
}

.time-count span::after {
    content: ":";
    padding-left: 20px;
    color: var(--black-text);
}

.time-count span:last-child::after {
    display: none;
}

.offers-section .product-image {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.offers-section .product-image img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.offers-section .product-img-box::after {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.black-friday-section {
    padding: 50px 0 80px;
}

.black-friday-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.black-friday-title h2 {
    font-size: 40px;
    margin: 0;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
}

.black-friday-title h2 span  {
    color: var(--primary-color);
}

.black-friday-title p {
    font-size: 22px;
    display: inline-block;
    color: #565656;
    font-weight: 500;
    margin: 0;
}

.black-friday-section .offers-countdown {
    border-radius: 100px;
    padding: 15px 40px;
}

.black-friday-section .days-count {
    font-size: 20px;
}

.black-friday-section .time-count span  {
    font-size: 20px;
}

.black-friday-section .product-section {
    grid-template-columns: repeat(4,1fr);
}


/* ................................ about us page css ................................... */

.aboutus-section {
    padding: 80px 0 40px;
    position: relative;
}

.about-img-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding-right: 25px;
    align-items: center;
}

.about-img {
    height: 530px;
    border-radius: 20px;
    width: 100%;
    /*padding-right: 25px;*/
    margin-top: 50px;
    overflow: hidden;
}


.about-img img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
    transition: all 0.5s ease;
}

.about-img img:hover{
    transform: scale(1.1) rotate(2deg);
}

.about-left-shape {
    width: 150px;
    object-fit: contain;
    margin: auto;
    display: block;
    transform: rotate(27deg);
    opacity: 0.2;
}

.about-left-imgs .about-img {
    margin-bottom: 15px;
    height: 480px;
    margin-top: 0;
    padding-right: 0;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.about-content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 30px;
    margin: 0;
}

.about-content ul {
    margin-top: 20px;
    margin-bottom: 25px;
}

.about-content ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: start;
}

.about-content ul li:last-child {
    margin-bottom: 0;
}

.about-content ul li img {
    width: 20px;
    margin-top: 7px;
    object-fit: contain;
}

.about-content ul li span  {
    font-size: 18px;
    color: var(--text-color);
    line-height: 30px;
    display: block;
}

.about-slider .about-slide {
    margin: 0 10px;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
}

.about-slider .about-slide img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.5s ease;
}

.about-slider .about-slide img:hover{
    transform: scale(1.1);
}

.about-slider .slider-arrow {
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

.about-slider .slider-arrow:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}

.about-slider .slider-arrow.prev-arrow {
    right: unset;
    left: -15px;
    z-index: 2;
}

.about-slider .slider-arrow.next-arrow {
    right: -15px;
}

.about-shape {
    width: 125px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: -1;
    opacity: 0.5;
}

.about-shape img {
    width: 100%;
    object-fit: contain;
}

.popular-blogs {
    padding: 40px 0 80px;
}

.blogs-slider .slick-list {
    padding: 10px 0;
}

.blogs-slider .blog-item {
    margin: 0 20px;
}

.about-slider {
    margin-bottom: 0;
}

.blogs-slider {
    margin-bottom: 0;
}


/* ..........................faq page css ........................... */

.faq-section {
    padding: 80px 0;
}

.faq-section .main-title {
    justify-content: center;
}

.faq-section .main-title h2 {
    font-size: 40px;
    width: 40%;
    text-align: center;
}

.faq-header {
    display: flex;
    padding: 8px 20px;
    border-radius: 30px;
    align-items: center;
    justify-content: space-between;
}

.faq-header[aria-expanded=true] {
    background-color: var(--primary-color);
}

.faq-header[aria-expanded=true] .faq-icon {
    background-color: var(--white-text);
}

.faq-header[aria-expanded=true] .faq-icon i {
    transform: rotate(0deg);
}

.faq-header[aria-expanded=true] .faq-title span  {
    color: var(--white-text);
}

.faq-header[aria-expanded=true] .faq-arrow {
    color: var(--white-text);
    transform: rotate(180deg);
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-title span  {
    font-size: 20px;
    display: inline-block;
    color: var(--grey-color);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 45px;
    width: 45px;
    border-radius: 50px;
    background-color: #F9F9F9;
}

.faq-icon i {
    color: var(--primary-color);
    transform: rotate(-45deg);
    font-size: 20px;
    transition: all 0.5s;
}

.faq-arrow{
    color: var(--grey-color);
    transition: all 0.5s;
}

.faq-content {
    padding: 30px 30px;
}

.faq-content-inner {
    padding-left: 20px;
    position: relative;
}

.faq-content-inner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: rgb(254 129 109 / 50%);
    border-radius: 10px;
}

.faq-item {
    margin-bottom: 30px;
    border-radius: 30px;
    border: 1px solid #F1EEEE;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-content p {
    margin: 0;
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
}

.blogs-slider {
    margin-bottom: 0;
}

.ordertrack-page .placeorder-content .summary-box{  
    margin-right: 0;
}

/* ................................ empty cart css ........................... */

.empty-cart-section {
    padding: 100px 0;
}

.empty-cart-img {
    max-width: 500px;
    margin: auto;
    margin-bottom: 50px;
}

.empty-cart-img img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.empty-cart-content {
    text-align: center;
}

.empty-cart-content h4 {
    font-size: 45px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.empty-cart-content .main-btn {
    margin-top: 40px;
    padding: 12px 45px;
    border-radius: 50px;
}

.empty-cart-content p {
    font-size: 20px;
    margin: 0;
    color: var(--text-color);
    text-transform: capitalize;
}

.cart-container {
    padding: 80px 0;
}

.free-shipping .progress {
    border-radius: 50px;
    border: 1px solid #d9d9d9;
    background-color: transparent;
}

.free-shipping .progress .progress-bar{
    border-radius: 50px;
    background-color: var(--primary-color);
}

.free-shipping span  {
    font-size: 14px;
    display: inline-block;
    color: var(--black-text);
}

.free-shipping {
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.table-cart tr {
    border-bottom: 1px solid #d9d9d9;
}

.table-cart th {
    border-bottom: 1px solid #d9d9d9;
    font-size: 16px;
    color: var(--black-text);
    text-transform: capitalize;
    font-weight: 400;
    padding: 10px 15px;
    padding-bottom: 20px;
    text-align: center;
}

.cart-product-img {
    background-color: #f9f9f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 70px;
    width: 70px;
    min-width: 70px;
}

.cart-product-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.cart-products {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cart-products .cart-text {
    text-align: left;
}

.cart-text {
    font-size: 16px;
    display: inline-block;
    color: var(--black-text);
    text-transform: capitalize;
}

.table-cart td {
    padding: 10px 15px;
    text-align: center;
    padding-bottom: 10px;
}

.quantity-box {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.quantity-box button {
    background-color: var(--primary-color);
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: var(--white-text);
    padding: 5px;
    outline: none;
    border: none;
    transition: all 0.5s ease;
    border: 1px solid var(--primary-color);
}

.quantity-box button:hover{
    background-color: transparent;
    color: var(--primary-color);
}



.quantity-box input {
    text-align: center;
    border: none;
    padding: 5px;
    color: var(--text-color);
    max-width: 50px;
    font-size: 16px;
}

.table-cart table {
    width: 100%;
}

.table-cart tr td a {
    color: var(--black-text);
}

.coupons-box {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 50px;
    padding: 5px 20px;
    padding-right: 5px;
    max-width: 500px;
    justify-content: space-between;
}

.coupons-box .main-btn {
    font-weight: 400;
    width: auto;
    min-width: fit-content;
}

.coupons-box input::placeholder {
    color: var(--black-text);
}

.coupons-box input {
    border: none;
    outline: none;
    background-color: transparent;
    padding-right: 5px;
    width: 100%;
}

.table-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
    gap: 25px;
}

.table-bottom .main-btn {
    padding: 12px 25px;
    font-weight: 400;
    border-radius: 50px;
    min-width: fit-content;
}

.cart-total {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    margin-left: 70px;
}

.cart-total h2 {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--black-text);
    margin: 0;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
}

.cart-total-info {
    padding: 20px 0;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total-info strong {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    text-transform: capitalize;
    color: var(--black-text);
}

.cart-total-info span  {
    font-size: 16px;
    text-transform: capitalize;
    display: inline-block;
}

.cart-total-info p {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-total-info .total {
    font-size: 20px;
}

.cart-total .main-btn {
    margin-top: 20px;
    width: 100%;
    padding: 15px 25px;
    font-weight: 400;
    text-align: center;
    border-radius: 50px;
}

/*.................. vendor section css ............ */

.vendor-info-item {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.vendor-info-item img {
    width: 150px;
    object-fit: contain;
}

.vendor-info p {
    font-size: 16px;
    margin: 0;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--black-text);
}

.vendor-contact {
    margin: 25px 0;
}

.vendor-contact li a {
    border: none !important;
    padding: 0 !important;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: "Poppins" !important;
    font-size: 16px !important;
    text-transform: none !important;
}

.vendor-contact li a i {
    height: 35px;
    width: 35px;
    min-width: 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.5s ease;
}

.vendor-contact li {
    margin-bottom: 15px;
}

.vendor-contact li:last-child {
    margin-bottom: 0;
}

.vendor-content p {
    font-size: 16px;
    line-height: 27px;
    color: var(--black-text);
}

@media only screen and (max-width:1440px){
    .container-fluid {
        padding-left: 60px;
        padding-right: 60px;
    }
}
 
@media only screen and (max-width:767px){
    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}
 
@media only screen and (max-width:575px){
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* .............................. footer Css .......................... */


footer {
    background-color: var(--footer-bg);
    padding: 100px 0 0;
    position: relative;
    border-radius: 40px 40px 0 0;
    z-index: 1;
}

.bg-footer-section:after {
    position: absolute;
    background: url(../images/footer-bg-image.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    opacity: 1;
    z-index: -1;
}

.footer-logo .logo {
    width: 180px;
    display: block;
}

.footer-logo p {
    font-size: 16px;
    color: var(--white-text);
    margin-bottom: 0;
}

.follow-on {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.follow-on a {
    width: 40px;
    height: 40px;
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-text);
    text-decoration: none;
    background-color: transparent;
    transition: all 0.5s ease;
}

.follow-on a:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.follow-on a i {
    font-size: 20px;
    color: var(--white-text);
}

.useful-links h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

.useful-links h5:after {
    content: '';
    background: var(--white-text);
    position: absolute;
    width: 50%;
    height: 1px;
    left: 0;
    bottom: -5px;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    display: flex;
}


.useful-links ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-text);
    font-weight: 500;
    transition: all 0.5s ease;
}




.useful-links ul li a:hover {
    color: var(--primary-color);
}

.useful-links ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(37%) saturate(3869%) hue-rotate(314deg) brightness(101%) contrast(114%);
}

.useful-links ul.all-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-letter h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    position: relative;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.news-letter .input-field input {
    width: 100%;
    background: transparent;
    border: 1px solid rgb(255 255 255 / 50%);
    padding: 12px 30px 12px 58px;
    border-radius: 5px;
    font-size: 18px;
    height: auto;
    color: var(--white-text);
}

.news-letter .input-field input::placeholder {
    font-weight: 600;
    color: var(--white-text);
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input-field i {
    font-size: 25px;
    color: var(--white-text);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}


/* button */


.main-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.newsletter-form form {
    margin-bottom: 20px;
}

.top-section {
    padding-bottom: 55px;
    border-bottom: 1px solid rgb(254 129 109 / 50%);
}


.middle-section {
    color: var(--white-text);
    padding: 40px 0;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgb(254 129 109 / 50%);

}

.contact-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-text);
    background: var(--primary-color);
    transition: all 0.5s ease;

}

.contact-icon:hover {
    background: transparent;
}

.contact-icon i {
    font-size: 28px;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.contact-details span {
    display: block;
    margin-bottom: 2px;
    transition: all 0.5s ease;
}

.contact-details span:hover {
    color: var(--primary-color);
}

.contact-details span:hover a {
    color: var(--primary-color);
}

.contact-details span a {
    color: var(--white-text);
    transition: all 0.5s ease;
}

.contact-details span:last-child {
    margin-bottom: 0;
}

.contact-box {
    width: 33%;
}

.contact-details {
    max-width: 70%;
    width: auto;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    color: var(--white-text);
    padding: 24px 0;
}

.copyright span {
    font-size: 18px;
    transition: all 0.5s ease;
}

.copyright span:hover {
    color: var(--primary-color);
}

.terms-list {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    font-size: 18px;
}

.terms-list a {
    color: var(--white-text);
    transition: all 0.5s ease;
}

.terms-list a:hover {
    color: var(--primary-color);
}


/* .............................. login-register responsive .......................... */


.login-page {
    padding: 80px 0;
    position: relative;
}

.login-shape1 {
    position: absolute;
    width: 350px;
    right: 0;
    bottom: 30px;
    z-index: -1;
}

.login-shape2 {
    position: absolute;
    width: 150px;
    left: 0;
    top: 120px;
    z-index: -1;
}

.login-main {
    max-width: 600px;
    padding: 50px;
    background-color: var(--white-text);
    box-shadow: 0 0 25px rgb(0 0 0 / 5%);
    border-radius: 10px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.login-header .form-img {
    width: 60px;
}

.logo-header h2 {
    font-size: 36px;
    font-weight: 600;
}

.login-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.input-field input {
    width: 100%;
    background: transparent;
    border: 1px solid rgb(217 217 217 / 80%);
    padding: 12px 20px 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    height: 70px;
}



.input-field input:focus {
    border: 1px solid var(--primary-color);
    outline: none;
}

.login-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-field input::placeholder {
    color: rgb(0 0 0 / 50%);
}

.forgot-password {
    color: var(--black-text);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.forgot-password:hover {
    color: var(--primary-color);
}

.login-btn {
    font-size: 16px;
    text-align: center;
    padding: 15px 25px;
    border-radius: 25px;
}

.register-btn {
    margin-top: 10px;
}

.login-header h2 {
    font-size: 36px;
    text-align: center;
    text-transform: capitalize;
}

.or-section:after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: var(--border-color);
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}



.or-section {
    text-align: center;
    position: relative;
}


.or-section span {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--black-text);
    padding: 0 10px;
    background: var(--white-text);
    z-index: 9;
    position: relative;
}

.social-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-color);
    width: 50%;
    padding: 14px 25px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.5s ease;
}

.social-btns a:hover {
    border: 1px solid var(--primary-color);
}

.social-btns a img {
    width: 24px;
    height: 24px;
}

.social-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-text h6 {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;

}

.account-text h6 a {
    font-weight: 600;
    color: var(--black-text);
    transition: all 0.5s ease;
}

.account-text h6 a:hover {
    color: var(--primary-color);
}



/* .............................. Account page css  .......................... */

.account-page {
    padding: 80px 0;
}

.accout-tab-wrapper {
    display: flex;
    align-items: start;
    padding: 30px;
    box-shadow: 0 0 40px rgb(0 0 0 / 10%);
    border-radius: 16px;
    gap: 50px;
}


.accout-tab-wrapper .tab-content {
    width: calc(100% - 410px);
    padding: 24px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 16px;
    height: -webkit-fill-available;
}

.account-content {
    width: 100%;
    height: -webkit-fill-available;

}

.profile-sidebar-wrapper {
    padding: 24px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    width: 360px;
    height: -webkit-fill-available;
    justify-content: space-between;
}

.profile-sidebar-wrapper .profile-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.sidebar-user .left-sidebar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-button {
    display: none;
}

.logout-button a {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    line-height: normal;
    background-color: transparent;
    color: var(--primary-color);
    white-space: nowrap;
}

.logout-button a img {
    width: 22px;
    filter: brightness(0) saturate(100%) invert(74%) sepia(56%) saturate(2925%) hue-rotate(313deg) brightness(99%) contrast(123%);
}

.logout-button a:hover {
    background-color: var(--primary-color);
    color: var(--white-text);
}

.logout-button a:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(320deg) brightness(101%) contrast(104%);
}



.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 30px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 16px;
}

.profile-info .image-wrap img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
}

.profile-info .user-name {
    color: var(--black-text);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
}

.profile-info .image-wrap {
    width: 100px;
    height: 100px;
    /*min-width: 100px;*/
    border-radius: 50%;
    position: relative;
}

.profile-info .image-wrap i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--white-text);
    background-color: var(--primary-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;

}


.sidebar-user .image-wrap {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
}

.sidebar-user .image-wrap img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
}

.sidebar-user .user-name {
    color: var(--black-text);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
    width: 65%;
    word-break: break-word;
}

.menu-wrapper .menu-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: start;
}

.menu-list .menu-item {
    display: block;
    width: 100%;
}

.menu-list .menu-item a {
    background-color: var(--white-text);
    padding: 14px 16px;
    border-radius: 8px;
    width: 100%;
    color: var(--black-text);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    cursor: pointer;

}

.menu-list .menu-item a.active,
.menu-list .menu-item a:hover {
    background-color: var(--primary-color);
    color: var(--white-text);

}

.menu-list .menu-item .menu-link {
    color: var(--text-color);
}

.menu-list .menu-item a:focus-visible {
    box-shadow: none;
}


.logout-btn {
    margin-top: 50px;
}

.logout-btn .btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    background-color: rgb(254 129 109 / 20%);
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    font-size: 20px;
}

.logout-btn .btn-text img {
    width: 24px;
}

.logout-btn .btn-text i {
    font-size: 20px;
}

.logout-btn .btn-text:hover {
    background-color: var(--primary-color);
    color: var(--white-text);
}

.logout-btn .btn-text:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(0%) hue-rotate(320deg) brightness(101%) contrast(104%);
}

.right-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.account-details form {
    display: flex;
    flex-direction: column;
    gap: 28px;

}

.account-details .form-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 16px;
}

.profile-info-row {
    display: flex;
    gap: 50px;
    padding: 12px 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.profile-info-row:last-child {
    border-bottom: none;
}

.profile-info-row .info-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-info-row .info-field label {
    font-size: 14px;
    font-weight: 400;
    color: rgb(0 0 0 / 50%);
    text-transform: capitalize;
}

.profile-info-row .info-field input {
    color: var(--text-color);
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    border: none;
}

.profile-info-row .info-field input:focus {
    border: none;
    outline: none;
}

.profile-edit {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 24px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 16px;
    gap: 30px;
}

.profile-edit .edit-btn {
    padding: 12px 30px;
    border-radius: 50px;
}


/* notifications */
.tab-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    cursor: pointer;
}

.tab-title h4 {
    margin-bottom: 0;
    color: var(--primary-color);
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 16px
}

.tab-title h4 a {
    color: var(--primary-color);
}

.notification-img {
    width: 260px;
    margin: auto;
}

.no-data {
    padding: 20px 30px;
    text-align: center;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 12px;
}

.no-data span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
}

.account-details .notification-info .form-content {
    gap: 80px;
    padding: 80px 24px;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.notification-icon img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: rgb(254 129 109 / 46%);
    padding: 16px;
    object-fit: contain;
}

.notification-content p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}


.notification-box {
    display: flex;
    gap: 16px;
    align-items: end;
    justify-content: space-between;
    padding: 20px 30px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 12px;
}

.box-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 85%;
}

.notification-time {
    font-size: 18px;
    font-weight: 500;
    color: #848181;
    text-align: end;
    min-width: fit-content;

}

.all-notifications {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* wishlist */

.wishlist-box .product-image {
    padding: 12px;
    border-radius: 10px;
    background-color: #F9F9F9;
    height: auto;
}

.wishlist-box .product-image img {
    width: 150px;
}

.wishlist-box .box-inner {
    width: 100%;
    align-items: start;
    gap: 30px;
}

.wishlist-box {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 12px;
    align-items: start;
    position: relative;
}

.wishlist-content h3 {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black-text);
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.5s ease;
}

.wishlist-content h3:hover{
    color: var(--primary-color);
}


.wishlist-content .price {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0;
}

.wishlist-list .rating-section {
    flex-direction: row;
}

.star-icon i {
    font-size: 20px;
    color: #FFCE0B;
}

.star-icon i.not-fill {
    color: #E8E8E8;
}

.star-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-count {
    font-size: 12px;
    color: var(--black-text);
    min-width: fit-content;
}

.rating-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.wishlist-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
}

.cart-btn {
    margin-top: 30px;
    font-weight: normal;
    font-size: 16px;
}




/* orders */

.inner-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.order-box {
    flex-direction: column;
    gap: 20px;
}

.return-exchanges-info {
    padding-top: 30px;
    border-top: 1px solid rgb(254 129 109 / 30%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.left-sec {
    display: flex;
    align-items: center;
    gap: 24px;
}

.left-sec img {
    width: 34px;
}

.left-sec span {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black-text);
}

.return-btn {
    background-color: transparent;
    color: var(--black-text);
    font-weight: 500;
}

.return-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-text);
}


/* address */

.address-box {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    align-items: start;
    position: relative;
}


.address-content h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-info span {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

.address-info span.email,
.mobileno {
    word-break: break-all;
}

.address-info span.name,
.country {
    text-transform: capitalize;
}

.more-icon i {
    font-size: 16px;
}

.more {
    position: relative;
    cursor: pointer;
}

.more-btns {
    position: absolute;
    right: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    background-color: var(--white-text);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    padding: 15px 20px;
    border-radius: 12px;
    gap: 10px;
    display: none;
    top: 16px;
}

.more-btns a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
}

.more:hover .more-btns {
    display: flex;
}

.more-icon {
    width: 24px;
    display: flex;
    justify-content: end;
    padding-bottom: 20px;
}

.account-details .address-form {
    flex-direction: row;
    gap: 0;
    row-gap: 16px;
}

.address-form .input-field label {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(0 0 0 / 50%);
    margin-bottom: 8px;
}

.address-form .input-field input {
    background: #FAFAFF;
    height: 50px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(0 0 0 / 50%);
}

.address-form .address-type label {
    margin-bottom: 0;
    line-height: 24px;
}

.address-type input {
    height: auto !important;
}

.address-type {
    display: flex;
    align-items: center;
    gap: 30px;
}

.address-type .custom-radio+label::before {
    width: 24px;
    height: 24px;
    border: 2px solid #9A9A9A;
}

.address-type .custom-radio:checked+label::before {
    border: 1px solid var(--primary-color);
}

.cancel-btn {
    background-color: transparent;
    color: var(--primary-color);
}

.cancel-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-text);
}

.select-gender {
    display: block;
    width: 100%;
    background: #FAFAFF;
    height: 50px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(0 0 0 / 50%);
    width: 97%;
    padding: 12px 20px;
}

.gender-section {
    background: #FAFAFF;
    border-radius: 12px;
}

.select-gender:focus-visible {
    box-shadow: none;
    outline: none;
}


/* return modal */

#return-modal .modal-header {
    position: sticky;
    top:0;
    width:100%;
    z-index:2;
}

#return-modal .modal-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    background-color: var(--primary-color);
    z-index: 0;
    transform: scale(1.1);
}

.modal-title {
    z-index: 1;
    text-align: center;
    width: 100%;
    color: var(--white-text);
    font-family: "Roboto Slab", sans-serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

#return-modal.modal .modal-dialog {
    max-width: 750px;
    height: 100%;
    min-height: auto;
}

.modal .modal-content {
    border: none;
    overflow: hidden;
    height: 90%;
    overflow-y: auto;
    scrollbar-width: none;
}

.modal-header .btn-close {
    z-index: 1;
    position: absolute;
    right: 20px;
    top: 45%;
    transform: translateY(-50%);
    background-color: var(--white-text);
    opacity: 1;
    color: var(--primary-color);
    border-radius: 20px;
    padding: 12px;
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header .btn-close i {
    font-size: 22px;
}

.modal-header {
    border: none;
}

#return-modal.modal {
    overflow: unset;
}


#return-modal .modal-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 50px;
}

.order-summary h2 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
}

.order-summary .product-image img {
    width: 80px;
}

.summary-box .wishlist-content {
    gap: 10px;
}

.summary-box .wishlist-content h3 {
    font-weight: 400;
}

.exchange-options {
    display: flex;
    align-items: self-start;
    justify-content: start;
    gap: 16px;
}

.return-form .input-group label {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--text-color);
}

.exchange-options .input-group {
    gap: 15px;
}


.input-group {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    width: 33%;
}

.custom-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio+label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
}

.custom-radio:checked+label::before {
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 4px white;
}

.form-title h5 {
    font-size: 20px;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

.form-title h5 span {
    color: red;
}

.return-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.return-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-data textarea {
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 8px;
    padding: 20px;
}

.custom-file-upload {
    cursor: pointer;
    background: #FFDED8;
    transition: all 0.3s ease;
    padding: 30px;
    border: 1px dashed var(--primary-color);
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    position: relative;
}

#file-upload {
    cursor: pointer !important;
    opacity: 0;
    position: absolute;
    left: 0px;
    text-align: right;
    top: 0px;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.custom-file-upload .upload-icon {
    width: 32px;
}

.file-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.custom-file-upload .file-text span {
    font-size: 15px;
    color: var(--text-color);
}

.submit-request {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .............................. Becomee seller css  .......................... */


.seller-page {
    padding: 80px 0;
    position: relative;
}

.seller-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 600px;
    margin: auto;
}

.btn-field {
    display: flex;
    justify-content: end;
    align-items: center;
}

.btn-field a {
    padding: 12px 50px;
}

.seller-title h2 {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--black-text);
    margin-bottom: 24px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 100%;
    position: relative;
}

.step-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E5E5E5;
    color: var(--black-text);
    font-weight: 600;
    text-align: center;
    line-height: 60px;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease;
    font-size: 25px;
    font-family: "Roboto Slab", sans-serif;
}

.area-field{
    display: flex;
    flex-direction: column;
}

.step-item.active {
    background: var(--primary-color);
    color: var(--white-text);
}

.step-item.completed {
    background: var(--primary-color);
    color: var(--white-text);
}

.step-indicator:after {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    border: 1px dashed #000;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.back-btn{
   background-color: transparent;
    color: var(--primary-color);
}

.back-btn:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
    margin: 0;
}

.bottom-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.next-btn{
     margin-left: auto;
}

.input-field .business-type-section {
    width: 100%;
    background: transparent;
    border: 1px solid rgb(217 217 217 / 80%);
    padding: 12px 20px 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    height: 70px;
    color: rgb(0 0 0 / 50%);
    display: flex;
    align-items: center;
}

.input-field .business-type-section select{
    background: transparent;
    border: none;
    padding: 0;
    color: rgb(0 0 0 / 50%);
    width: 100%;
    height: 70px;
    font-weight: 500;
}

.input-field .business-type-section select::placeholder {
    color: rgb(0 0 0 / 50%);
}
.input-field select:focus-visible{
    box-shadow: none;
    outline: none;
}

.input-field textarea{
    width: 100%;
    background: transparent;
    border: 1px solid rgb(217 217 217 / 80%);
    padding: 12px 20px 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0 0 0 / 50%);
    /* height: 70px; */
}

.input-field textarea::placeholder{
     color: rgb(0 0 0 / 50%);
}

.input-field .form-data{
    gap: 16px;
}

.input-field .form-data .form-title h5{
   font-size: 16px;
}




/* .............................. terms css .......................... */

.terms-page{
    padding: 80px 0;
}

.terms-header h2{
    font-size: 36px;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 0;
}

.terms-content{
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 18px;
    line-height: 30px;
    margin-top: 40px;
}

.terms-content p{
    font-size: 18px;
    color: var(--black-text);
    margin-bottom: 0;
    line-height: 30px;
}

.terms-data{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--black-text);

}
.terms-data li {
    display: flex;
    align-items: start;
    gap: 15px;
}

.terms-data li i{
        margin-top: 7px;
}


/* .............................. contact us css .......................... */

.contact-page{
    padding: 80px 0;
}

.inner-details{
    background-color: rgb(254 129 109 / 46%);
    padding: 90px 35px;
    border-radius: 10px;
    margin-bottom: 200px;
}

.inner-details .row{
    margin: 0;
}

.inner-details h2{
    font-size: 35px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.inner-details p{
    font-size: 16px;
   margin-bottom: 0;
}

.contact-inner-boxs{
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.contact-card{
    width: 33%;
    padding: 20px;
    background-color: var(--white-text);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-card .contact-info{
    flex-direction: column;
    gap: 20px;
}

.contact-card .contact-details span a{
    color: var(--black-text);
    word-break: break-all;
}

.contact-card .contact-details{
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-icon{
    cursor: pointer;
}

.contact-card .contact-icon:hover i{
    color: var(--primary-color);
}

.contact-card .contact-details span:hover a{
     color: var(--primary-color);
}

.contact-inner-info{
    padding: 30px;
    margin-bottom: -300px;
}

.contact-inner-info h2{
    text-align: left;
    margin-bottom: 0;
}

.contact-inner-info .login-header{
    align-items: start;
}

textarea:focus-visible{
    outline: none;
}

textarea:focus{
    border: 1px solid var(--primary-color);
}


/* .............................. picked order css .......................... */


.picked-order-page{
    padding: 80px 0;
}
.pick-order-content{
    padding: 40px;
    background-color: var(--white-text);
    border-radius: 10px;
    border: 1px solid rgb(254 129 109 / 20%);
    display: flex;
    margin: 0;
}

.ordered-box{
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 40px;
}
.ordered-box h5{
    text-transform: capitalize;
    text-align: center;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}

.order-info{
    display: flex;
    justify-content: space-between;
}

.order-info .inner-box{
    width: 50%;
    text-align: center;
    padding: 0 20px;
}

.order-info .inner-box:first-child{
    border-right: 1px solid #FFDED8;
}

.order-info .inner-box h4 {
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.order-info .inner-box span {
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--black-text);
 

}

.orderbox-header{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.orderbox-content {
    margin-top: 50px;
}

.orderbox-content table{
    width: 100%;
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.orderbox-content h4 {
    font-size: 28px;
    text-transform: capitalize;
    color: var(--black-text);
    font-weight: 500;
    margin-bottom: 25px;
}


.cart-summary h3 {
    font-size: 25px;
    text-transform: capitalize;
    color: var(--black-text);
    font-weight: 500;
    margin-bottom: 0;
}

.cart-orderbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cart-orderbox span{
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black-text);
    font-weight: 400;
}

.cart-orderbox span.price{
    font-weight: 600;
}

.order-summary-info{
     display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-product-list{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.total-summary .cart-orderbox:last-child{
    border-top: 1px solid #E2DFDF;
    margin-top: 15px;
    padding-top: 15px;
}

.total-summary .cart-orderbox span{
    font-size: 20px;
    font-weight: 500;
}

.total-summary .cart-orderbox span.price{
    font-weight: 600;
}

.feedback-box{
    padding-left: 40px;
}


.feedback-main {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.feedback-header{
    align-items: start;
     gap: 10px;
}

.feedback-header p{
    margin-bottom: 0;
}

.feedback-header h3{
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

.feedback-btn{
    width: fit-content;
    padding: 15px 40px;
    border-radius: 30px;
    margin-top: 12px;
}

.scrollTop:hover i {
color: var(--primary-color);
}



/* .............................. checkout page css .......................... */

.bill-main{
    max-width: 100%;
}

.checkout .pick-order-content {
     padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
}

.checkout-form form .row{
    row-gap: 24px;
}

.checkout-header h2 {
    font-size: 35px;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 40px;
}

.checkout-form label {
    font-size: 20px;
    color: var(--black-text);
    text-transform: capitalize;
    margin-bottom: 12px;
}

.checkout-content .ordered-box h5 {
    text-align: left;
    color: var(--black-text);
    font-size: 30px;
}

.checkout-content .orderbox-content {
    margin-top: 30px;
}

.condition-box input[type="checkbox"]{
      width: 20px;
    height: 20px;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #CBC5C5;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
}

.condition-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.condition-box input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.condition-box input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 7px;
    width: 4px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.placeorder-btn{
    font-size: 20px;
    padding: 12px 40px;
    border-radius: 50px;
}

.coupon-form .coupons-box {
    display: flex;
    background-color: transparent;
    border-radius: 50px;
    padding: 5px 20px;
    padding-right: 5px;
    max-width: 100%;
    justify-content: space-between;
    border: 1px solid #E2DFDF;
}
 
.coupons-box .main-btn {
    font-weight: 400;
    width: auto;
    min-width: fit-content;
}
 
.coupons-box input::placeholder {
    color: var(--black-text);
}
 
.coupons-box input {
    border: none;
    outline: none;
    background-color: transparent;
    padding-right: 5px;
    width: 100%;
}

.checkout-content .order-summary-info{
    gap: 30px;
}

.coupons-headerbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.coupons-headerbox  span{
    font-size: 15px;
    color: var(--primary-color);
    text-transform: capitalize;
}

.coupons-headerbox h3{
    font-size: 20px;
    color: var(--black-text);
    margin-bottom: 0;
    font-weight: 600;
}

.delete-icon{
    cursor: pointer;
}


.more-btns a{
    transition: all 0.5s ease;
}
.more-btns a:hover{
    color: var(--primary-color);
}


/* .............................. place order page css .......................... */

.placeorder-page{
    padding: 80px 0;
}

.place-header h2{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 35px;
    color: var(--black-text);
    font-weight: 700;
    margin: 0;
}

.place-header h2 img{
    width: 40px;
}

.place-header p{
    font-size: 22px;
    text-align: center;
    margin-bottom: 0;
    color: #797979;
}

.place-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.placeorder-main {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.placeorder-content .summary-box .product-image img{
    width: 120px;
}

.placeorder-content .wishlist-content h3{
    font-size: 25px;
}

.placeorder-content .wishlist-content .price{
    font-size: 24px;
}

.placeorder-content .wishlist-content h3.quantity{
    font-size: 20px;
}

.order-btns {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-btns .main-btn{
    width: 100%;
}

.continue-btn{
    background-color: transparent;
    color: var(--primary-color);
}

.continue-btn:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}

.placeorder-content .row{
    align-items: center;
}

.placeorder-content .summary-box{
    border: 1px solid #F6F3F3;
    box-shadow: 0 4px 20px rgb(0 0 0 / 2%);
    margin-right: 16px;
}

.track-order a{
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;

}
.track-order a img{
    width: 24px;
}



.track-order  h3{
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.track-order i{
    font-size: 18px;
}



.track-orders h4{
    font-weight: 600;
    font-size: 35px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    color:var(--primary-color);
    margin-bottom:50px;
}

.track-order-flex{
    display:flex;
    justify-content:space-between;
}
.track-order-flex span{
    font-weight: 600;
    font-size: 30px;
    line-height: 25.97px;
    letter-spacing: 0%;
}
.track-delivery{
    display:flex;
    align-items:center;
}
.track-delivery span{
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
}
.track-delivery span b{
    font-weight: 600;
    font-size: 16px;
}



.Estimated-delivery{
    display:flex;
    align-items:center;
    gap:6px;
    padding-left:20px;
    border-left:1px solid #D0D5DD;
    margin-left:20px;
}
.Estimated-delivery img{
    width:20px;
    height:20px;
}
.Estimated-delivery span{
    font-weight: 600;
    font-size: 16px;
    line-height: 16.4px;
    letter-spacing: 0%;
    color:#12B76A;
}

.order-tracking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin:100px auto;
  position: relative;
}

.order-tracking::before{
    content:'';
    position: absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    border:1px solid var(--shiped-text);
    width:100%;
}
.step {
  position: relative;
  z-index: 1;
  background-color:var(--white-text);
  padding: 0 10px;
  flex-shrink: 0;
}

.step h4 {
  font-size: 16px!important;
  margin-bottom: 10px;
  color:var(--shiped-text);
}

.step.active h4 {
  color:var(--primary-color);
}

.circle {
  width: 24px;
  height: 24px;
  margin: 0 auto 10px;
  background-color:var(--primary-color);
  border-radius: 50%;
  color:var(--white-text);
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step:not(.active) .circle {
  color: transparent;
}

.step p {
  font-size: 14px;
  color:var(--shiped-text);
  margin-top: 0;
}

.summary-section{
    border-radius:10px;
    padding:50px;
    border:1px solid #FE816D4D;
}
.summary-section h3{
    font-weight: 500;
    font-size: 28px;
    text-transform: capitalize;
    color:var(--primary-color);
}


.summary-section p{
    font-weight: 400;
    font-size: 18px;
    text-transform: capitalize;
    color:var(--sub-text);
}
.summary-section ul{
    margin-top:40px;
}

.summary-section ul li{
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-weight:500;
    font-size: 26px;
    color:var(--text-color);
    border-bottom:1px solid var(--border-light-color);
    padding-bottom:30px;
    margin-bottom:30px;
}

.summary-section ul li:last-child{
    margin-bottom:0;
    border-bottom:unset;
}



.track-summary-flex{
    display:flex;
    justify-content:space-between;
    gap:40px;

}
.summary-section{
    width:50%;
}
.track-address-info{
    display:flex;
    align-items:center;
    gap:20px;
}

.track-address-info img{
    width:30px;
    height:30px;
}
.track-address-info span{
    font-weight: 400;
    font-size: 20px;
    color:var(--shiped-text);
}
.track-address-info a{
    font-weight: 400;
    font-size: 20px;
    color:var(--shiped-text);
}
.adress-track{
    display:flex;
    flex-direction:column;
    gap:25px;
    margin-top:40px;
}


.sticky-fixed .header-main{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: #ffc5bc;
    box-shadow: 0 0 25px rgb(0 0 0 / 20%);
}

/* .............................. header responsive .......................... */


@media only screen and (min-width:1366px) and (max-width:1440px) {
    .main-menu {
        gap: 45px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1365px) {
    
    .top-right-item {
        padding: 10px 5px;
        padding-right: 10px;
        gap: 5px;
    }
    .top-right-item::after {
        height: 60%;
    }

    .main-menu {
        gap: 40px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    
    .top-right-item {
        padding: 10px 5px;
        padding-right: 15px;
        gap: 5px;
    }
    .top-right-item::after {
        height: 60%;
    }

    .top-left {
        width: 40%;
        gap: 25px;
    }

    .top-right {
        width: 60%;
        gap: 10px;
    }

    .search-box {
        width: 55%;
    }
    .main-menu {
        gap: 25px;
    }
   

    .category-dropdown {
        padding: 10px 15px;
    }

    .header-login a {
        padding: 10px 15px;
    }

    .top-header {
        padding-top: 10px;
    }

    .category-dropdown a img {
        height: 18px;
        width: 18px;
    }
    
    .cate-dropdown-content {
        top: 50px;
    }
}


@media only screen and (max-width:991px) {
    .header-main {
        display: none;
    }
    .top-right {
        display: none;
    }
    .top-header-main {
        background-color: rgb(254 129 109 / 46%);
    }
    .search-box {
        display: none;
    }

    .top-right-mobile {
        display: flex;
        gap: 25px;
        align-items: center;
        justify-content: end;
    }

    .top-header {
        padding: 25px 0;
    }
}



/* .............................. footer, login-register responsive .......................... */

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .login-shape1 {
        width: 300px;
    }
}


@media only screen and (min-width:992px) and (max-width:1199px) {
    /* footer */
    footer {
        padding: 80px 0 0;
    }

    .footer-logo p {
        font-size: 14px;
    }

    .useful-links h5 {
        font-size: 20px;
    }

    .useful-links ul li a {
        font-size: 14px;
    }

    .arrow-icon {
        width: 16px;
        height: 16px;
    }

    .news-letter h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .main-btn {
        font-size: 16px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-details span {
        font-size: 14px;
    }

    .copyright span {
        font-size: 16px;
    }

    .terms-list {
        font-size: 16px;
    }

    .contact-icon i {
        font-size: 22px;
    }

    /* login */

    .login-shape1 {
        width: 150px;
    }

    .login-shape2 {
        width: 100px;
    }

}

@media only screen and (min-width:768px) and (max-width:991px) {
    .top-section {
        row-gap: 20px;
    }

    .terms-list a {
        font-size: 14px;
    }

    .copyright span {
        font-size: 14px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-details span {
        font-size: 14px;
    }

    .contact-icon i {
        font-size: 22px;
    }

    .contact-box {
        width: 48%;
    }

    .middle-section {
        justify-content: start;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-info {
        justify-content: start;
    }

    .login-shape1 {
        width: 150px;
    }

    .login-shape2 {
        width: 100px;
    }

    .input-field input {
        height: 50px;
        font-size: 14px;
    }

    .login-main {
        max-width: 450px;
        padding: 30px;
    }

    .forgot-password {
        font-size: 14px;
    }

    .login-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .or-section span {
        font-size: 14px;
    }

    .social-btns a {
        padding: 12px 25px;
        font-size: 14px;
    }

    .account-text h6 {
        font-size: 14px;
    }

    .login-header h2 {
        font-size: 25px;
    }

    .login-page {
        padding: 60px 0;
    }

}

@media only screen and (max-width:767px) {
     /* footer */
    .top-section {
        row-gap: 30px;
    }
   
    .bg-footer-section:after {
        background-size: auto;
    }

    .contact-icon i {
        font-size: 22px;
    }

    .contact-box {
        width: 48%;
    }

    .middle-section {
        justify-content: start;
        flex-wrap: wrap;
        gap: 16px;
    }

    .contact-info {
        justify-content: start;
        gap: 16px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .copyright span {
        font-size: 16px;
    }

    .terms-list a {
        font-size: 16px;
    }

    .bottom-section {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
    }

    .terms-list {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }

    footer {
        padding: 50px 0 0;
    }

    .contact-details span {
        font-size: 14px;
    }

    .contact-details h5 {
        font-size: 18px;
    }

    .main-btn {
        font-size: 16px;
    }

     /* login */

    .login-shape1 {
        width: 150px;
    }

    .login-shape2 {
        width: 100px;
    }

    .input-field input {
        height: 50px;
        font-size: 14px;
    }

    .login-main {
        max-width: 450px;
        padding: 30px;
    }

    .forgot-password {
        font-size: 14px;
    }

    .login-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .or-section span {
        font-size: 14px;
    }

    .social-btns a {
        padding: 12px 25px;
        font-size: 14px;
    }

    .account-text h6 {
        font-size: 14px;
    }

    .login-header h2 {
        font-size: 25px;
    }

    .login-page {
        padding: 50px 0;
    }
    footer {
        border-radius: 25px 25px 0 0;
    }
}

@media only screen and (max-width: 575px) {
    /* footer */
    .contact-box {
        width: 100%;
    }
    
    .footer-logo p {
        font-size: 14px;
    }

    .useful-links ul li a {
        font-size: 14px;
    }

    .news-letter h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .news-letter input {
        padding: 8px 30px 8px 58px;
        font-size: 16px;
    }

    .top-section {
        padding-bottom: 40px;
    }

    .useful-links h5 {
        font-size: 22px;
    }

    .terms-list a {
        font-size: 14px;
    }

    .copyright span {
        font-size: 14px;
    }

    /* login */

    .login-shape1,
    .login-shape2 {
        display: none;
    }

    .login-main {
        max-width: 100%;
        width: 100%;
        padding: 16px;
        gap: 20px
    }

    .login-header h2 {
        font-size: 20px;
    }

    .social-btns {
        gap: 10px;
        flex-direction: column;
    }

    .social-btns a {
        width: 100%;
    }

    .login-btn {
        padding: 8px 25px;
    }

    .login-header {
        gap: 10px;
    }

    .login-header .form-img {
        width: 40px;
    }
}

@media only screen and (max-width: 480px) {
    /* login */
    .login-header h2 {
        font-size: 18px;
    }
}


/* .............................. Accout page responsive .......................... */



@media only screen and (min-width:1441px) and (max-width:1699px) {

    /* notification */
    .notification-content p {
        font-size: 16px;
    }

    .notification-time {
        font-size: 16px;
    }
}


@media only screen and (min-width:1366px) and (max-width:1440px) {
    .accout-tab-wrapper {
        gap: 30px;
    }

    .right-content {
        gap: 24px;
    }

    /* notification */
    .notification-content p {
        font-size: 16px;
    }

    .notification-time {
        font-size: 16px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1365px) {

    .accout-tab-wrapper {
        gap: 30px;
    }

    .right-content {
        gap: 24px;
    }

    .menu-list .menu-item .menu-link {
        font-size: 18px;
    }

    .menu-wrapper .menu-list {
        gap: 12px;
    }

    /* notification */
    .box-inner {
        width: 100%;
    }

    .notification-box {
        flex-direction: column;
    }

    .notification-content p {
        font-size: 16px;
    }

    .notification-time {
        font-size: 16px;
    }

    .notification-icon img {
        width: 65px;
        height: 65px;
    }


    /* orders */
    .left-sec span {
        font-size: 16px;
    }

    .return-btn {
        font-size: 16px;
    }


    /* address */
    .address-info span {
        font-size: 18px;
    }

    .profile-edit {
        gap: 25px;
    }


}

@media only screen and (max-width:1199px) {

    /* notification */
    .box-inner {
        width: 100%;
    }

    .notification-box {
        flex-direction: column;
    }

    .notification-content p {
        font-size: 16px;
    }

    .notification-time {
        font-size: 14px;
    }

    .notification-icon img {
        width: 65px;
        height: 65px;
    }

    .tab-title {
        padding: 14px 30px;
    }

    .tab-title h4 {
        font-size: 18px;
    }

    /* address */
    .address-info span {
        font-size: 18px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {

    .accout-tab-wrapper {
        gap: 30px;
    }

    .right-content {
        gap: 24px;
    }

    .menu-list .menu-item .menu-link {
        font-size: 18px;
    }

    .menu-wrapper .menu-list {
        gap: 12px;
    }

    .accout-tab-wrapper .tab-content {
        width: calc(100% - 330px);
    }

    .profile-sidebar-wrapper {
        width: 300px;
    }

    .profile-edit {
        padding: 20px;
    }

    .profile-edit .edit-btn {
        padding: 10px 30px;
    }

    .account-details form {
        gap: 24px;
    }

    .sidebar-user .image-wrap {
        width: 65px;
        height: 65px;
        min-width:65px;
    }

    .logout-btn .btn-text {
        font-size: 18px;
    }

    /* notification */
    .notification-box {
        padding: 20px;
    }

    /* wishlist */
    .wishlist-box .product-image img {
        width: 80px;
    }

    .wishlist-box .box-inner {
        gap: 20px;
    }

    .wishlist-content h3 {
        font-size: 16px;
    }

    .wishlist-content .price {
        font-size: 18px;
    }

    .star-icon i {
        font-size: 18px;
    }

    .cart-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    /* orders */

    .return-exchanges-info {
        flex-direction: column;
        align-items: start;
    }

    .return-btn {
        align-self: end;
    }

    .left-sec span {
        font-size: 16px;
    }


    /* address */
    .address-form .input-field {
        width: 100%;
    }

    .address-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .address-info span {
        font-size: 16px;
    }
    
    .account-details .notification-info .form-content {
        padding: 30px 24px;
    }
    
    .no-data span {
        font-size: 18px;
    }

}



@media only screen and (max-width:991px) {
    .accout-tab-wrapper {
        flex-direction: column;
    }

    .profile-sidebar-wrapper {
        width: 100%;
    }

    .accout-tab-wrapper .tab-content {
        width: 100%;
    }

    .menu-wrapper .menu-list {
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .menu-list .menu-item .menu-link {
        font-size: 16px;
        white-space: nowrap;
    }

    .profile-sidebar-wrapper .profile-sidebar-content {
        gap: 24px;
    }

    .logout-button {
        display: block;
    }

    .logout-btn {
        display: none;
    }

    .accout-tab-wrapper {
        gap: 30px;
    }

    .sidebar-user .image-wrap {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .right-content {
        gap: 30px;
    }

    .profile-edit .edit-btn {
        padding: 12px 30px;
    }

    .menu-list .menu-item {
        display: inline-block;
        width: auto;
    }

    .account-page {
        padding: 60px 0;
    }

    /* notification */
    .notification-box {
        flex-direction: column;
        padding: 20px;
        gap: 5px;
    }

    /* wishlist */
    .wishlist-box .product-image img {
        width: 80px;
    }

    .wishlist-box .box-inner {
        gap: 20px;
    }

    .wishlist-content h3 {
        font-size: 16px;
    }

    .wishlist-content .price {
        font-size: 18px;
    }

    .star-icon i {
        font-size: 18px;
    }

    .cart-btn {
        font-size: 14px;
        padding: 8px 20px;
        margin-top: 20px;
    }

    /* orders */

    .return-exchanges-info {
        flex-direction: column;
        align-items: start;
    }

    .return-btn {
        align-self: end;
    }

    .left-sec span {
        font-size: 16px;
    }

    .main-btn {
        font-size: 16px;
    }


    .sticky-fixed .top-header-main{
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 99;
        background-color: #ffc5bc;
        box-shadow: 0 0 25px rgb(0 0 0 / 20%);
    }
    
    .menu-list .menu-item a {
        padding: 10px 15px;
    }
    
    .address-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .address-info span {
        font-size: 16px;
    }
    
    .profile-edit {
        gap: 25px;
    }
    
    .news-letter h2 {
        margin-bottom: 15px;
        font-size: 24px;
    }
    
    .account-details .notification-info .form-content {
        padding: 50px 24px;
    }
    
}

@media only screen and (max-width:767px) {
    .logout-button a {
        padding: 8px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .logout-button a img {
        width: 20px;
    }

    .sidebar-user .image-wrap {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .sidebar-user .user-name {
        font-size: 16px;
    }

    .profile-info-row {
        gap: 24px;
        flex-direction: column;
        border-bottom: none;
    }

    .right-content {
        gap: 24px;
    }

    .account-details form .form-content {
        padding: 12px 24px;
    }

    .profile-info {
        padding: 24px;
    }

    .profile-edit {
        padding: 24px;
    }

    .accout-tab-wrapper {
        gap: 20px;
    }

    .profile-info .image-wrap {
        width: 80px;
        height: 80px;
    }

    .profile-info .user-name {
        font-size: 18px;
    }

    .account-page {
        padding: 50px 0;
    }

    /* notification */
    .notification-icon img {
        width: 60px;
        height: 60px;
    }

    .notification-content p {
        font-size: 14px;
    }

    .notification-time {
        font-size: 12px;
    }

    .box-inner {
        gap: 10px;
    }

    .wishlist-box .product-image img {
        width: 60px;
    }

    .wishlist-box .box-inner {
        gap: 16px;
    }

    /* orders */

    .left-sec {
        gap: 16px;
    }

    /* address */
    .address-info span {
        font-size: 16px;
    }

    .more-btns a {
        font-size: 14px;
    }

}

@media only screen and (max-width:600px) {
    .box-inner {
        flex-direction: column;
    }

    .notification-content p {
        text-align: center;
    }

    /* orders */
    .left-sec {
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }

    .return-exchanges-info {
        gap: 16px;
    }

    .return-exchanges-info {
        padding-top: 20px;
    }

    .return-btn {
        align-self: center;
    }

}

@media only screen and (max-width:575px) {
    .logout-button a {
        padding: 8px 16px;
    }

    .notification-img {
        width: 60%;
        margin: auto;
    }

    .no-data span {
        font-size: 14px;
    }

    .no-data {
        padding: 10px;
    }

    .account-details .notification-info .form-content {
        padding: 20px;
        gap: 40px;
    }

    .tab-title {
        padding: 12px 20px;
    }

    .tab-title h4 {
        font-size: 16px;
    }

    /* wishlist */
    .wishlist-content {
        align-items: center;
        gap: 8px;
    }

    .wishlist-box .box-inner {
        align-items: center;
    }

    .wishlist-content h3 {
        text-align: center;
    }

    .delete-icon {
        position: absolute;
        right: 15px;
    }

    .rating-section {
        flex-direction: column;
        gap: 8px;
    }

    .cart-btn {
        margin-top: 8px;
    }

    /* orders */
    .left-sec span {
        font-size: 14px;
    }

    /* address */
    .address-info span {
        font-size: 14px;
    }

    .address-content h3 {
        font-size: 16px;
    }



    .more {
        padding: initial;
        right: 5px;
    }

    .profile-edit {
        gap: 16px;
    }

    .address-box .box-inner {
        align-items: start;
    }

    .more-btns {
        width: 150px;
    }

    .accout-tab-wrapper .tab-content {
        padding: 0px;
        border:none;
    }
    
    .wishlist-list .rating-section {
        flex-direction: column;
    }

    .faq-content p {
        font-size: 16px;
        line-height: 27px;
    }

}

@media only screen and (max-width:480px) {
    .sidebar-user .left-sidebar {
        align-items: start;
        flex-direction: column;
    }

    .sidebar-user .user-name {
        font-size: 14px;
        width: 100%;
    }

    .logout-button a {
        padding: 5px 14px;
        font-size: 12px;
    }

    .logout-button a img {
        display: none;
    }

    .sidebar-user {
        align-items: start;
        gap: 5px;
    }

    .profile-sidebar-wrapper {
        padding: 20px;
    }

    .accout-tab-wrapper {
        padding: 20px;
    }

    .menu-list .menu-item .menu-link {
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .accout-tab-wrapper .tab-content {
        padding: 0px;
        border:none;
    }

    .profile-info {
        padding: 20px;
        flex-direction: column;
    }

    .account-details form .form-content {
        padding: 8px 20px;
        gap: 0px;
    }

    .right-content {
        gap: 10px;
    }

    .account-details form {
        gap: 10px;
    }

    .profile-edit {
        padding: 10px;
    }

    .profile-info-row {
        gap: 20px;
    }

    .profile-edit .edit-btn {
        padding: 12px 16px;
    }

    /* notification */
    .account-details .notification-info .form-content {
        gap: 30px;
    }

    .notification-img {
        width: 65%;
    }

    .account-details .form-content {
        padding: 10px;
    }

    .account-details {
        gap: 10px;
    }

    /* orders */
    .main-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* address */
    .address-box {
        padding: 10px;
    }


}



/* return modal */

@media only screen and (min-width:768px) and (max-width:991px) {
    #return-modal.modal .modal-dialog {
        max-width: 650px;
    }

    #return-modal .modal-body {
        padding: 30px;
    }

    .modal-title {
        font-size: 30px;
    }
}

@media only screen and (max-width:767px) {
    #return-modal.modal .modal-dialog {
        max-width: 95%;
        width: 100%;
    }

    #return-modal .modal-body {
        padding: 24px;
    }

    .modal-title {
        font-size: 28px;
    }

    .order-summary h2 {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .summary-box .box-inner {
        flex-direction: row;
    }

    #return-modal .modal-body {
        gap: 24px;
    }

    .form-title h5 {
        font-size: 18px;
    }

    .return-form .input-group label {
        font-size: 16px;
    }

    .custom-radio+label::before {
        width: 20px;
        height: 20px;
    }

    .input-group {
        padding-left: 30px;
    }
}

@media only screen and (max-width:575px) {
    .exchange-options {
        flex-direction: column;
    }

    .form-title h5 {
        font-size: 16px;
    }

    .return-form .input-group label {
        font-size: 14px;
    }

    .form-data textarea {
        font-size: 14px;
    }

    .summary-box .box-inner {
        flex-direction: column;
    }

    .modal-header .btn-close {
        padding: 5px;
        right: 14px;
    }
    
    .modal-header .btn-close i{
        font-size: 16px;
    }

    .modal-title {
        font-size: 22px;
    }

    .order-summary h2 {
        font-size: 20px;
    }

    #return-modal .modal-body {
        padding: 20px;
    }

    .input-group {
        width: 100%;
    }
    
    .menu-list .menu-item a {
        padding: 10px 15px;
    }
    
}




/* ................................... hero responsive css ..................................  */

@media only screen and (min-width:1200px) and (max-width:1365px) {
    .hero-slide {
        height: 550px;
    }
    .hero-content h2 {
        font-size: 48px;
    }
    .hero-content {
        width: 70%;
        padding-left: 120px;
    }
    .hero-right {
        padding: 30px;
        height: 550px;
    }
    .hero-right-img {
        width: 300px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero-slide {
        height: 450px;
    }
    .hero-content h2 {
        font-size: 42px;
    }
    .hero-content {
        width: 70%;
        padding-left: 100px;
    }
    .hero-right {
        padding: 30px;
        height: 450px;
    }
    .hero-right-img {
        width: 300px;
        max-width: 80%;
    }
    .hero-right-content h2 {
        font-size: 25px;
    }
    .hero-right-content > span {
        padding: 10px 20px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero-slide {
        height: 450px;
    }
    .hero-content h2 {
        font-size: 42px;
    }
    .hero-content {
        width: 70%;
        padding-left: 100px;
    }
    .hero-right {
        padding: 30px;
        height: auto;
        width: 100%;
        margin-top: 50px;
    }
    .hero-right-img {
        width: 320px;
        max-width: 80%;
    }
    .hero-right-content h2 {
        font-size: 25px;
        width: 50%;
    }
    .hero-right-content > span {
        padding: 10px 20px;
    }

    .hero-slider {
        width: 100%;
    }

    .hero-main {
        flex-direction: column;
    }
    
}


@media only screen and (max-width:767px) {

    .hero-slide {
        height: 350px;
    }
    .hero-content h2 {
        font-size: 35px;
    }
    .hero-content {
        width: 70%;
        padding-left: 80px;
        padding-bottom: 80px;
        gap: 15px;
    }
    .hero-right {
        padding: 30px;
        height: auto;
        width: 100%;
        margin-top: 50px;
    }
    .hero-right-img {
        width: 300px;
    }
    .hero-right-content h2 {
        font-size: 25px;
        width: 50%;
    }
    .hero-right-content > span {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-slider {
        width: 100%;
    }
    .hero-main {
        flex-direction: column;
    }

    .main-btn {
        font-size: 16px;
    }

    .hero-section {
        margin: 20px 0;
    }

}

@media only screen and (max-width:575px) {

    .hero-content h2 {
        font-size: 25px;
    }
    .hero-content {
        width: 80%;
        padding-left: 40px;
        padding-bottom: 100px;
        gap: 10px;
    }

    .hero-slide {
        height: 320px;
    }

    .hero-content > span {
        font-size: 18px;
    }

    .hero-right-img {
        width: 130px;
    }

    .hero-right {
        padding: 20px;
        margin-top: 15px;
    }

    .hero-right-content h2 {
        width: 80%;
    }

    .hero-main {
        gap: 25px;
    }

}



@media only screen and (min-width:1366px) and (max-width:1750px) {

    .service-content {
        padding-left: 55px;
    }
    .service-icon img {
        height: 55px;
        width: 55px;
    }

    .category-container {
        gap: 10px;
    }
    .category-icon {
        padding: 15px 10px;
    }
    .cate-title {
        font-size: 15px;
        padding: 15px 5px 0;
    }

    .main-category {
        gap: 25px;
    }

    .main-category-content {
        width: 70%;
    }
    .main-category-img {
        width: 180px;
    }

    .app-content h2 {
        font-size: 40px;
    }

    .app-inner-container {
        padding: 40px;
    }

    .apps-plateform img {
        width: 200px;
    }

    .apps-plateform {
        gap: 20px;
    }

    .app-img {
        right: 70px;
        height: 450px;
        width: 450px;
        top: -60px;
    }

    .app-img-inner {
        width: 250px;
    }

    .blog-item {
        padding: 25px;
    }

    .blog-info::after {
        left: -15px;
    }

    .blog-content p {
        font-size: 16px;
    }

    .testi-content p {
        font-size: 18px;
        line-height: 30px;
    }

    .trending-slider .trending-slide {
        margin: 0 15px;
    }
    .product-cart-info {
        gap: 10px;
    }
    
    .categories-inner .category-container {
        gap: 30px;
    }
    
    .time-count {
        gap: 15px;
    }
    .time-count span::after {
        padding-left: 15px;
    }

    .offers-countdown {
        padding: 10px 15px;
    }

    .about-shape {
        width: 100px;
    }
    
    .about-img {
        padding-right:0;
    }
    
    .about-slider .about-slide {
        height: 150px;
    }

}

@media only screen and (min-width:1200px) and (max-width:1365px) {

    .service-content {
        padding: 30px 10px;
        padding-left: 50px;
    }
    .service-icon img {
        height: 40px;
        width: 40px;
    }
    .service-content h3 {
        font-size: 16px;
    }

    .service-content span {
        font-size: 12px;
    }
    .category-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }
    .cate-title {
        padding: 25px 15px 0;
    }
    .category-item {
        padding-bottom: 20px;
    }

    .main-category {
        gap: 25px;
    }

    .main-category-item {
        padding: 20px;
    }

    .main-category-content {
        width: 75%;
    }
    .main-category-img {
        width: 150px;
    }

    .app-content h2 {
        font-size: 30px;
    }

    .app-inner-container {
        padding: 40px;
    }

    .apps-plateform img {
        width: 200px;
    }

    .apps-plateform {
        gap: 20px;
    }

    .app-img {
        right: 70px;
        height: 400px;
        width: 400px;
        top: -45px;
    }

    .app-img-inner {
        width: 230px;
    }

    .blog-item {
        padding: 20px;
    }

    .blog-info::after {
        left: -15px;
    }

    .blog-content p {
        font-size: 16px;
    }

    .product-tabs ul li a {
        font-size: 16px;
        padding: 5px 25px;
    }

    .offer-percent {
        font-size: 20px;
    }

    .home-offer-content h4 {
        font-size: 25px;
        line-height: 27px;
    }

    .offer-product-img {
        width: 270px;
    }

    .offer-days span {
        height: 60px;
        width: 60px;
        font-size: 25px;
    }

    .offer-shape img {
        width: 250px;
    }
    .home-offer-content {
        gap: 15px;
    }

    .testimonial-slide {
        padding: 25px;
    }

    .testi-top {
        margin-bottom: 20px;
    }

    .testi-info {
        gap: 10px;
    }

    .testi-img {
        width: 70px;
        height: 70px;
    }

    .testi-name h3 {
        font-size: 24px;
    }

    .testi-name span {
        font-size: 16px;
    }

    .testi-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .testi-review i {
        font-size: 20px;
    }

    .testi-icon {
        height: 70px;
        width: 70px;
        bottom: -30px;
    }

    .testimonial-slide {
        margin-top: 70px;
    }

    .testimonial-slider .slick-dots li button:before {
        height: 15px;
        width: 15px;
    }

    .trending-slider .trending-slide {
        margin: 0 10px;
    }

    .product-cart-info .main-btn {
        padding: 7px 20px;
    }

    .product-icons {
        height: 35px;
        width: 35px;
    }

    .product-icons img {
        width: 18px;
    }

    .product-cart-info {
        gap: 10px;
    }

    .product-tabs-content .product-section {
        gap: 20px;
    }

    .categories-inner .category-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    
    .time-count {
        gap: 10px;
    }
    .time-count span::after {
        padding-left: 10px;
    }

    .offers-countdown {
        padding: 10px 10px;
        gap: 15px;
    }

    .offers-section .product-section {
        gap: 45px 20px;
    }

    .black-friday-section .product-section {
        gap: 45px 20px;
    }

    .about-shape {
        width: 100px;
    }

    .blogs-slider .blog-item {
        margin: 0 10px;
    }
    
    .faq-header {
        padding: 8px 10px;
    }

    .faq-title {
        gap: 10px;
    }

    .faq-title span {
        font-size: 18px;
    }

    .faq-section .main-title h2 {
        width: 70%;
    }

    .empty-cart-section {
        padding: 80px 0;
    }
    .empty-cart-img {
        max-width: 420px;
    }

    .cart-total {
        margin-left: 40px;
    }

    .about-slider .about-slide {
        height: 150px;
    }

}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .category-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
    }
    .cate-title {
        padding: 25px 15px 0;
    }
    .category-item {
        padding-bottom: 20px;
    }
    .main-category {
        gap: 25px;
    }

    .main-category-item {
        padding: 15px;
    }

    .main-category-content {
        width: 80%;
    }
    .main-category-img {
        width: 130px;
    }
    .main-category-content h2 {
        font-size: 20px;
    }
    .product-tabs ul li a {
        font-size: 16px;
        padding: 5px 20px;
    }
    .product-tabs-content .product-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .offer-percent {
        font-size: 20px;
    }

    .home-offer-content h4 {
        font-size: 25px;
        line-height: 27px;
    }

    .offer-product-img {
        width: 250px;
        padding: 5px;
    }

    .offer-days span {
        height: 60px;
        width: 60px;
        font-size: 25px;
    }

    .offer-shape img {
        width: 240px;
    }
    .home-offer-content {
        gap: 15px;
    }

    .trending-slider .trending-slide {
        margin: 0 10px;
    }

    .app-content h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .app-inner-container {
        padding: 25px;
    }

    .apps-plateform img {
        width: 150px;
    }

    .apps-plateform {
        gap: 15px;
        margin-top: 20px;
    }

    .app-img {
        right: 70px;
        height: 300px;
        width: 300px;
        top: -35px;
    }

    .app-img-inner {
        width: 170px;
    }

    .app-content span {
        font-size: 20px;
    }

    .app-main {
        padding: 50px 0 70px;
    }

    .blog-item {
        padding: 20px;
    }

    .blog-info::after {
        left: -15px;
    }

    .blog-content p {
        font-size: 16px;
        line-height: 27px;
    }

    .testimonial-slide {
        padding: 25px;
    }

    .testi-top {
        margin-bottom: 20px;
    }

    .testi-info {
        gap: 10px;
    }

    .testi-img {
        width: 70px;
        height: 70px;
    }

    .testi-name h3 {
        font-size: 20px;
    }

    .testi-name span {
        font-size: 16px;
    }

    .testi-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .testi-review i {
        font-size: 20px;
    }

    .testi-icon {
        height: 70px;
        width: 70px;
        bottom: -30px;
    }

    .testimonial-slide {
        margin-top: 70px;
    }

    .testimonial-slider .slick-dots li button:before {
        height: 15px;
        width: 15px;
    }

    .product-cart-info {
        gap: 10px;
    }

    .categories-inner .category-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .offers-section .product-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 20px;
    }

    .black-friday-section .product-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 20px;
    }

    .time-count {
        gap: 10px;
    }
    .time-count span::after {
        padding-left: 10px;
    }

    .offers-countdown {
        padding: 10px 10px;
        gap: 15px;
    }

    .black-friday-section .offers-countdown {
        padding: 10px 20px;
    }

    .black-friday-section .days-count {
        font-size: 16px;
    }

    .black-friday-section .time-count span {
        font-size: 16px;
    }

    .black-friday-title h2 {
        font-size: 35px;
    }

    .blogs-slider .blog-item {
        margin: 0 10px;
    }

    .about-slider .about-slide {
        margin: 0 5px;
        height: 150px;
    }

    .about-shape {
        width: 100px;
    }

    .about-img {
        height: 400px;
    }
    .about-left-imgs .about-img {
        height: 400px;
    }
    
    .faq-header {
        padding: 8px 10px;
        padding-right: 15px;
    }

    .faq-title {
        gap: 10px;
    }

    .faq-title span {
        font-size: 18px;
    }

    .faq-section .main-title h2 {
        width: 60%;
    }

    .empty-cart-section {
        padding: 80px 0;
    }
    .empty-cart-img {
        max-width: 420px;
    }

    .cart-total {
        margin-left: 10px;
    }

    .quantity-box {
        gap: 5px;
    }

    .table-cart td {
        padding: 10px;
    }

    .table-cart th {
        padding: 10px;
    }
    .cart-products {
        gap: 10px;
    }

    .cart-total .main-btn {
        padding: 10px 15px;
    }

    .table-bottom .main-btn {
        padding: 10px 20px;
    }

    .filt-gallry-image img {
        height: 100px;
    }
    .filt-gallry-image {
        gap:10px;
    }


}

@media only screen and (min-width:1025px) and (max-width:1199px) {

    .service-content {
        padding: 25px 10px;
        padding-left: 60px;
    }
    
    .service-section .row {
        row-gap: 35px;
    }

    .service-icon {
        padding: 10px;
    }

    .service-icon img {
        height: 40px;
        width: 40px;
    }
    .service-content h3 {
        font-size: 20px;
    }

    .service-content span {
        font-size: 16px;
    }

    .service-section {
        padding: 60px 0 30px;
    }
}

@media only screen and (min-width:992px) and (max-width:1024px) {
    .service-section .row {
        row-gap: 45px;
    }
    .service-content {
        padding-left: 60px;
    }
    .service-section {
        padding: 60px 0 30px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .service-section .row {
        row-gap: 45px;
    }
    .service-content {
        padding: 30px 10px;
        padding-left: 60px;
    }
    .service-icon img {
        height: 50px;
        width: 50px;
    }
    .service-section {
        padding: 60px 0 30px;
    }

    .main-title h2 {
        font-size: 25px;
    }

    .categories-section {
        padding: 30px 0 30px;
    }

    .category-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    .cate-title {
        padding: 25px 15px 0;
    }
    .category-item {
        padding-bottom: 20px;
    }

    .main-category-section {
        padding: 30px 0;
    }

    .main-category {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
    }

    .main-category-item {
        padding: 15px;
    }

    .main-category-content {
        width: 80%;
    }
    .main-category-img {
        width: 130px;
    }
    .main-category-content h2 {
        font-size: 20px;
    }

    .home-product-main {
        padding: 30px 0;
    }

    .home-product-main .main-title {
        flex-direction: column;
        gap: 25px;
    }

    .product-tabs ul {
        gap: 10px;
    }

    .product-tabs ul li a {
        font-size: 16px;
        padding: 5px 20px;
    }
    .product-tabs-content .product-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-offer-section {
        padding: 30px 0;
    }

    .offer-percent {
        font-size: 16px;
    }

    .home-offer-content h4 {
        font-size: 22px;
        line-height: 27px;
    }

    .offer-product-img {
        width: 180px;
        padding: 5px;
    }

    .offer-days span {
        height: 50px;
        width: 50px;
        font-size: 20px;
    }

    .offer-shape img {
        width: 150px;
    }

    .offer-time {
        gap: 15px;
    }

    .offer-days h3 {
        font-size: 16px;
    }

    .home-offer-content {
        gap: 15px;
        padding: 20px;
    }

    .trending-slider .trending-slide {
        margin: 0 10px;
    }

    .app-content h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .app-inner-container {
        padding: 20px;
    }

    .apps-plateform img {
        width: 130px;
    }

    .apps-plateform {
        gap: 10px;
        margin-top: 10px;
    }

    .app-img {
        right: 50px;
        height: 270px;
        width: 270px;
        top: -25px;
    }

    .app-img-inner {
        width: 150px;
    }

    .app-content span {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .app-main {
        padding: 40px 0 50px;
    }

    .blog-section {
        padding: 60px 0 60px;
    }

    .blog-section .main-title {
        margin-bottom: 40px;
    }

    .blog-item {
        padding: 15px;
    }

    .blog-info::after {
        left: -10px;
        border-bottom: 25px solid var(--primary-color);
        border-left: 25px solid transparent;
    }

    .blog-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .blog-content a span {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .blog-img {
        height: 230px;
        margin-bottom: 15px;
    }

    .blog-info {
        padding: 7px 15px;
    }

    .blog-info li i {
        font-size: 14px;
    }

    .blog-info li {
        gap: 5px;
    }

    .blog-info li span {
        font-size: 14px;
    }

    .testimonial-section {
        padding: 30px 0;
    }

    .testimonial-section .main-title {
        margin-bottom: 40px;
    }

    .testimonial-section .main-title h2 {
        font-size: 35px;
    }

    .testimonial-slide {
        padding: 25px;
    }

    .testi-top {
        margin-bottom: 20px;
    }

    .testi-info {
        gap: 10px;
    }

    .testi-img {
        width: 70px;
        height: 70px;
    }

    .testi-name h3 {
        font-size: 20px;
    }

    .testi-name span {
        font-size: 16px;
    }

    .testi-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .testi-review i {
        font-size: 20px;
    }

    .testi-icon {
        height: 70px;
        width: 70px;
        bottom: -30px;
    }

    .testimonial-slide {
        margin-top: 70px;
    }

    .testimonial-slider .slick-dots li button:before {
        height: 15px;
        width: 15px;
    }

    .trending-products {
        padding: 30px 0;
    }

    .categories-inner .category-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .categories-inner {
        padding: 60px 0;
    }

    .categories-inner .cate-title {
        font-size: 16px;
        padding-top: 20px;
    }

    .categories-inner .category-icon img {
        height: 50px;
        width: 50px;
    }

    .categories-inner .category-item {
        padding-bottom: 20px;
    }
    
    .offers-section .product-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .black-friday-section .product-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .time-count {
        gap: 10px;
    }
    .time-count span::after {
        padding-left: 10px;
    }

    .offers-countdown {
        padding: 10px 10px;
        gap: 15px;
    }

    .black-friday-section .offers-countdown {
        padding: 10px 20px;
        gap: 10px;
    }

    .black-friday-section .days-count {
        font-size: 16px;
    }

    .black-friday-section .time-count span {
        font-size: 16px;
    }

    .offers-section {
        padding: 60px 0 30px;
    }

    .black-friday-section {
        padding: 40px 0 60px;
    }

    .offers-section .main-title h2 {
        font-size: 35px;
    }
    .offers-section .main-title span {
        font-size: 20px;
    }

    .black-friday-title h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .black-friday-title p {
        font-size: 18px;
    }

    .about-img {
        height: 400px;
    }
    .about-left-imgs .about-img {
        height: 400px;
    }

    .aboutus-section {
        padding: 60px 0 30px;
    }

    .about-left-shape {
        width: 100px;
    }

    .about-shape {
        width: 80px;
    }

    .about-content {
        margin-top: 45px;
    }

    .blogs-slider .blog-item {
        margin: 0 10px;
    }

    .popular-blogs {
        padding: 30px 0 60px;
    }

    .about-content h2 {
        font-size: 35px;
    }
    
    .faq-container .row {
        row-gap: 30px;
    }

    .faq-section .main-title h2 {
        width: 80%;
        font-size: 35px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-header {
        padding: 8px 10px;
        padding-right: 15px;
    }

    .faq-title {
        gap: 10px;
    }

    .faq-title span {
        font-size: 18px;
    }

    .empty-cart-section {
        padding: 60px 0;
    }
    .empty-cart-img {
        max-width: 420px;
    }

    .cart-container {
        padding: 60px 0;
    }

    .cart-total {
        margin-left: 0;
        margin-top: 45px;
    }

    .cart-products {
        gap: 15px;
    }

    .cart-total .main-btn {
        width: auto;
        max-width: fit-content;
        display: block;
        margin-left: auto;
    }

}


@media only screen and (max-width:767px) {

    .service-section .row {
        row-gap: 35px;
    }
    .service-content {
        padding: 20px 10px;
        padding-left: 50px;
    }
    .service-icon img {
        height: 40px;
        width: 40px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content span {
        font-size: 12px;
    }
    .service-icon {
        padding: 10px;
    }

    .service-section {
        padding: 30px 0 25px;
    }


    .main-title {
        margin-bottom: 25px;
    }

    .main-title h2 {
        font-size: 24px;
    }
    
    .trending-products .main-title h2 {
        width: 75%;
    }

    .categories-section {
        padding: 25px 0 25px;
    }

    .category-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .cate-title {
        padding: 25px 15px 0;
    }
    .category-item {
        padding-bottom: 20px;
    }

    .main-category-section {
        padding: 25px 0;
    }

    .main-category {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .main-category-item {
        padding: 15px;
    }

    .main-category-content {
        width: 85%;
    }
    .main-category-img {
        width: 100px;
    }
    .main-category-content h2 {
        font-size: 18px;
    }

    .home-product-main {
        padding: 25px 0;
    }

    .home-product-main .main-title {
        flex-direction: column;
        gap: 25px;
    }

    .home-product-main .main-title h2 {
        width: 100%;
        text-align: center;
    }

    .product-tabs {
        width: 100%;
    }

    .product-tabs ul {
        gap: 10px;
        margin-left: auto;
        margin-right: auto;
        max-width: fit-content;
    }

    .product-tabs ul li a {
        font-size: 16px;
        padding: 5px 20px;
    }
    .product-tabs-content .product-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .home-offer-section {
        padding: 25px 0;
    }

    .offer-percent {
        font-size: 14px;
    }

    .home-offer-content h4 {
        font-size: 20px;
        line-height: 27px;
    }

    .offer-product-img {
        width: 150px;
        padding: 5px;
    }

    .offer-days span {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }

    .offer-shape {
        display: none;
    }

    .offer-time {
        gap: 10px;
    }

    .offer-days h3 {
        font-size: 14px;
    }

    .home-offer-content {
        gap: 10px;
        padding: 15px;
    }

    .home-offer-content .main-btn {
        font-size: 16px;
    }
    
    .trending-slider .trending-slide {
        margin: 0 10px;
    }

    .app-content h2 {
        font-size: 20px;
        line-height: 25px;
    }

    .app-inner-container {
        padding: 20px;
    }

    .apps-plateform img {
        width: 100px;
    }

    .apps-plateform {
        gap: 10px;
        margin-top: 10px;
    }

    .app-img {
        right: 25px;
        height: 150px;
        width: 150px;
        top: 0px;
    }

    .app-img-inner {
        width: 130px;
    }

    .app-content span {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .app-main {
        padding: 30px 0 40px;
    }

    .blog-section {
        padding: 50px 0 50px;
    }

    .blog-section .main-title {
        margin-bottom: 25px;
    }

    .blog-item {
        padding: 12px;
        border-radius: 12px;
    }

    .blog-info::after {
        left: -10px;
        border-bottom: 25px solid var(--primary-color);
        border-left: 25px solid transparent;
    }

    .blog-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .blog-content a span {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .blog-img {
        height: 200px;
        margin-bottom: 15px;
    }

    .blog-img img {
        border-radius: 12px;
    }

    .blog-info {
        padding: 5px 5px;
    }

    .blog-info li i {
        font-size: 12px;
    }

    .blog-info li {
        gap: 5px;
    }

    .blog-info li span {
        font-size: 12px;
    }

    .testimonial-section {
        padding: 25px 0;
    }

    .testimonial-section .main-title {
        margin-bottom: 25px;
    }

    .testimonial-section .main-title h2 {
        font-size: 24px;
    }

    .testimonial-slide {
        padding: 20px;
    }

    .testi-top {
        margin-bottom: 15px;
    }

    .testi-info {
        gap: 10px;
    }

    .testi-img {
        width: 50px;
        height: 50px;
    }

    .testi-name h3 {
        font-size: 20px;
    }

    .testi-name span {
        font-size: 16px;
    }

    .testi-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .testi-review i {
        font-size: 20px;
    }

    .testi-icon {
        height: 70px;
        width: 70px;
        bottom: -30px;
    }

    .testimonial-slide {
        margin-top: 70px;
    }

    .testimonial-slider .slick-dots li button:before {
        height: 15px;
        width: 15px;
    }

    .trending-products {
        padding: 30px 0;
    }

    .product-cart-info .main-btn {
        padding: 7px 15px;
    }

    .product-icons {
        height: 35px;
        width: 35px;
    }

    .product-icons img {
        width: 18px;
    }

    .product-cart-info {
        gap: 10px;
    }

    .categories-inner .category-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .categories-inner {
        padding: 50px 0;
    }

    .categories-inner .cate-title {
        font-size: 16px;
        padding-top: 20px;
    }

    .categories-inner .category-icon img {
        height: 50px;
        width: 50px;
    }

    .categories-inner .category-item {
        padding-bottom: 20px;
    }
    
    .offers-section .product-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .black-friday-section .product-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .time-count {
        gap: 10px;
    }
    .time-count span::after {
        padding-left: 10px;
    }

    .offers-countdown {
        padding: 10px 10px;
        gap: 15px;
    }

    .black-friday-section .offers-countdown {
        padding: 10px 25px;
        gap: 10px;
    }

    .black-friday-section .days-count {
        font-size: 16px;
    }

    .black-friday-section .time-count span {
        font-size: 16px;
    }

    .offers-section {
        padding: 50px 0 30px;
    }

    .black-friday-section {
        padding: 30px 0 50px;
    }

    .offers-section .main-title h2 {
        font-size: 24px;
    }
    .offers-section .main-title span {
        font-size: 16px;
    }

    .black-friday-title {
        text-align: center;
    }

    .black-friday-title h2 {
        font-size: 24px;
        margin-bottom: 5px;
        text-align: center;
    }

    .black-friday-title p {
        font-size: 16px;
        text-align: center;
    }

    .black-friday-top {
        flex-direction: column;
        gap: 30px;
    }

    .about-img {
        height: 300px;
    }
    .about-left-imgs .about-img {
        height: 300px;
    }

    .aboutus-section {
        padding: 50px 0 30px;
    }

    .about-left-shape {
        width: 80px;
    }

    .about-shape {
        width: 80px;
    }

    .about-content {
        margin-top: 45px;
    }

    .blogs-slider .blog-item {
        margin: 0 5px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 25px;
    }

    .about-content ul li span {
        font-size: 16px;
        line-height: 25px;
    }

    .about-slider .about-slide {
        margin: 0 5px;
    }

    .popular-blogs {
        padding: 25px 0 50px;
    }

    .about-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slider-arrow {
        top: -60px;
    }

    .faq-container .row {
        row-gap: 20px;
    }

    .faq-section .main-title h2 {
        width: 100%;
        font-size: 35px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-header {
        padding: 8px 10px;
        padding-right: 10px;
    }

    .faq-title {
        gap: 10px;
    }

    .faq-title span {
        font-size: 16px;
    }

    .faq-content {
        padding: 20px 20px;
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .empty-cart-section {
        padding: 80px 0;
    }
    .empty-cart-img {
        max-width: 350px;
    }

    .cart-container {
        padding: 50px 0;
    }

    .cart-total {
        margin-left: 0;
        margin-top: 45px;
    }

    .cart-products {
        gap: 10px;
    }

    .quantity-box {
        gap: 5px;
    }

    .table-cart td {
        padding: 15px 15px;
    }

    .table-cart th {
        padding: 10px 15px;
    }
   
    .cart-total .main-btn {
        padding: 10px 15px;
    }

    .table-bottom .main-btn {
        padding: 10px 20px;
    }
    
    .cart-total .main-btn {
        width: auto;
        max-width: fit-content;
        display: block;
        margin-left: auto;
    }

    .cart-product-img {
        height: 50px;
        width: 50px;
        min-width: 50px;
    }

    .free-shipping {
        padding: 20px;
    }

    .cart-products .cart-text {
        word-wrap: break-word;
        min-width: 150px;
        max-width: 150px;
    }

}


@media only screen and (max-width:575px) {

    .service-section .row {
        row-gap: 25px;
    }

    .service-icon img {
        height: 35px;
        width: 35px;
    }
   
    .category-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .main-title .main-btn {
        display: none;
    }

    .cate-view-btn {
        display: block;
    }

    .main-category {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    .product-tabs-content .product-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 20px;
    }

    .home-product-main .main-title {
        align-items: start;
    }

    .home-offer-main {
        flex-direction: column-reverse;
    }
    
    .offer-product {
        margin: auto;
    }

    .offer-product::after {
        display: none;
    }

    .offer-product-img {
        width: 250px;
    }

    .home-offer-content {
        padding-top: 25px;
    }

    .slider-arrow {
        top: -60px;
        height: 35px;
        width: 35px;
    }

    .slider-arrow.prev-arrow {
        right: 45px;
    }

    .app-inner-container {
        flex-direction: column;
        gap: 25px;
    }

    .app-content {
        width: 100%;
        text-align: center;
    }

    .app-img {
        position: relative;
        height: auto;
        width: auto;
        top: unset;
        right: unset;
        background-color: transparent;
    }

    .apps-plateform img {
        width: 125px;
    }

    .apps-plateform {
        margin-top: 20px;
        justify-content: center;
    }

    .app-img-inner {
        width: 150px;
    }

    .testi-top {
        flex-direction: column;
        gap: 20px;
    }

    .testi-icon {
        width: 60px;
        height: 60px;
        bottom: -20px;
    }

    .testi-icon img {
        width: 25px;
    }

    .testimonial-slide {
        margin: 0 10px;
        margin-top: 50px;
    }

    .testimonial-slider .slick-dots li {
        margin: 0 5px;
    }

    .testimonial-slider .slick-dots li.slick-active button:before {
        width: 50px !important;
    }

    .testimonial-slider .slick-dots li.slick-active {
        width: 50px !important;
    }

    .testimonial-slider .slick-dots li button:before {
        height: 10px;
        width: 10px;
    }

    .blog-section {
        padding: 40px 0 50px;
    }

    .blog-info li span {
        font-weight: 400;
        font-size: 14px;
    }

    .testi-review i {
        font-size: 16px;
    }

    .testi-name h3 {
        font-size: 18px;
    }

    .main-category-img {
        width: 120px;
    }

    .blog-item {
        padding: 15px;
    }

    .product-cart-info .main-btn {
        padding: 8px 20px;
    }

    .product-icons {
        height: 40px;
        width: 40px;
    }

    .product-icons img {
        width: 20px;
    }
    
    .categories-inner .category-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .offers-section .product-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 20px;
    }

    .black-friday-section .product-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 20px;
    }

    .about-img {
        height: 250px;
        padding-right: 0;
        margin-top: 20px;
    }
    .about-left-imgs .about-img {
        height: 250px;
    }

    .about-left-shape {
        width: 50px;
    }

    .about-shape {
        width: 50px;
    }

    .about-content {
        margin-top: 40px;
    }

    .about-img-box {
        gap: 10px;
    }

    .faq-section .main-title h2 {
        width: 100%;
        font-size: 24px;
    }

    .faq-icon {
        height: 35px;
        width: 35px;
        min-width: 35px;
    }

    .faq-icon i {
        font-size: 16px;
    }

    .empty-cart-content h4 {
        font-size: 30px;
    }

    .cart-total .main-btn {
        width: 100%;
        max-width: 100%;
    }

    .cart-total h2 {
        font-size: 22px;
        padding-bottom: 15px;
    }

    .cart-total-info {
        padding: 15px 0;
    }

    .table-bottom {
        flex-direction: column;
        align-items: end;
    }

    .table-bottom .main-btn {
        padding: 8px 15px;
    }

    .vendor-info-item {
        gap: 15px;
    }

    .filt-gallry-image img {
        height: 100px;
    }
    .filt-gallry-image {
        gap:10px;
    }
    
    .main-title h2{
        font-size:20px;
    }
    
}


@media only screen and (min-width:1200px) and (max-width:1440px){
    .filter-tags-section .filter-tags{
        padding:6px 18px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px){
    .product-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .filter-tags-section .filter-tags{
        padding:6px 18px;
    }
    .Product-heading h2{
        font-size:38px;
        margin-bottom:6px;
    }

    .Product-heading ul li{
        font-size:18px;
    }
    .Product-heading ul li a i {
        font-size: 18px;
    }
    .bg-product-banner{
        padding:90px 0px;
    }


    .price{
        font-size:34px;
    }
    .share-flex span{
        font-size:18px;
    }
    .socai-links a i{
        width:35px;
        height:35px;
    }
    .share-flex{
        gap:12px;
    }
    .form-label {
        width: 47%;
        padding: 12px 30px;
        gap: 12px;
    }

    .recent-blog-flex {
        padding:10px 10px;
    }
    
    .recnet-blog-image {
        width:30%;
        border-radius:10px;
    }
    
    .recnet-blog-image img {
        border-radius:10px;
    }
    
    .recent-blog-info {
        width:70%;
    }
    
    .recent-blog-info h4 {
        font-size: 14px;
        line-height:20px;
    }
    
    .blog-listing-section .blog-info li {
        gap:5px;
    }
    
    .blog-listing-section .blog-info {
        padding:5px 10px;
        gap:10px;
    }
    
    .blog-listing-section .blog-info li i {
        font-size:14px;
    }
    
    .blog-listing-section .blog-info li span {
        font-size:14px;
    }
    
    .blog-listing-section .blog-info::after {
        border-bottom: 25px solid var(--primary-color);
        border-left: 25px solid transparent;
        left: -7px;
    }

}


@media only screen and (min-width:768px) and (max-width:991px){
    .product-section{
        grid-template-columns: repeat(1, 1fr);
    }
    .filter-tags-section .filter-tags{
        padding:6px 18px;
    }
    .Product-heading h2{
        font-size:38px;
        margin-bottom:6px;
    }

    .Product-heading ul li{
        font-size:18px;
    }
    .Product-heading ul li a i {
        font-size: 18px;
    }
    .bg-product-banner{
        padding:90px 0px;
    }

    .bg-product-detail .row{
        gap:20px;
    }
    .product-detail-info h2{
        margin-bottom:0;
    }
    .price{
        font-size:28px;
    }
    .share-flex span{
        font-size:18px;
    }
    .socai-links a i{
        width:30px;
        height:30px;
    }
    .additional-info-section{
        padding:30px 0px;
    }
    .product-additional-tabing ul{
        gap:16px;
    }
    .product-additional-tabing ul li a{
        font-size:16px;
        padding:4px 16px;
    }
    .product-additional-tabing ul{
        margin-bottom:30px;
    }
    .feedback{
        padding:30px;
    }
    .form-label {
        width: 47%;
        padding: 12px 30px;
        gap: 12px;
    }
    .form-section{
        gap:10px;
    }
    .form-textarea{
        height:150px;
    }
    .form-section button {
        font-size: 16px;
        padding: 14px 24px;
    }
}

@media only screen and (max-width:767px){
    .product-collection .row{
        gap:40px;
    }
    .product-information a{
        font-size:16px;
    }
    .product-information{
        gap:0px;
    }
    .product-information span{
        font-size:18px;
    }
    .rating span{
        font-size:12px;
    }

    .product-section{
        grid-template-columns: repeat(2, 1fr);
    }
    .filter-tags-section .filter-tags{
        padding:6px 18px;
    }
    .pagination {
        gap: 10px;
        padding: 50px 0px;
    }
    .Product-heading h2{
        font-size:34px;
        margin-bottom:6px;
    }

    .Product-heading ul li{
        font-size:16px;
    }
    .Product-heading ul li a i {
        font-size: 18px;
    }
    .bg-product-banner{
        padding:80px 0px;
        background-position: center;
    }

    .bg-product-detail .row{
        gap:20px;
    }
    .product-detail-info h2{
        font-size:20px;
        margin-bottom:0;
    }
    .product-detail-info{
        gap:15px;
    }
    .price{
        font-size:28px;
    }
    .product-discription{
        font-size:14px;
    }
    .share-flex span{
        font-size:18px;
    }
    .socai-links a i{
        width:30px;
        height:30px;
    }
    .additional-info-section{
        padding:30px 0px;
    }
    .product-additional-tabing ul{
        flex-wrap:nowrap;
        overflow-x:auto;
        justify-content:start;
    }
    .product-additional-tabing ul li a{
        font-size:14px;
        padding:6px 16px;
        width:max-content;
    }
    .product-additional-tabing .tab-pane{
        padding:20px;
    }
    .detail-section p{
        font-size:14px;
    }
    .customer-info p{
        font-size:14px;
    }
    .rating-flex{
        align-items:start;
        gap: 18px;
        flex-wrap: wrap;
    }
    .feedback h4{
        font-size:24px;
    }
    .feedback{
        padding:20px;
    }
    .form-label{
        padding:12px 18px;
        width:100%;
    }
    .form-section{
        gap:20px;
    }
    .form-textarea{
        height:150px;
    }
    .form-section button{
        font-size:16px;
        padding:16px 24px;
    }
    .color-flex{
        flex-wrap:wrap;
    }
    .product-variable span{
        font-size:14px;
    }
    .quantity-cart{
        flex-wrap:wrap;
    }
    
}


@media only screen and (max-width:375px){
    .product-section{
        grid-template-columns: repeat(1, 1fr);
    }
    .pagination a, .pagination span{
        width:30px;
        height:30px;
    }
    .Product-heading h2{
        font-size:24px!important;
        margin-bottom:6px;
    }
    .bg-product-banner{
        padding:50px 0px;
    }
    .thumbnail-slider .slick-list{
        height:unset!important;
    }
    .quantity-cart{
        flex-wrap:wrap;
    }
    .add-to-cart{
        padding:8px 20px;
    }
    .quantity{
        width:50%;
    }
    .features ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .bg-product-detail{
        padding:40px 0px;
    }
    .product-additional-tabing ul{
        margin-bottom:20px;
    }
    .variable-detail ul li span{
        font-size:14px;
    }
    .rating-flex{
        gap:18px;
        flex-wrap:wrap;
    }
    .name-flex h4{
        font-size:18px;
        width:100%;
    }
    
    .name-flex{
        flex-wrap:wrap;
    }
    .view-more{
        font-size:18px;
    }
    .form-label{
        width:100%;
        margin-bottom:0;
    }
    .form-section button {
        padding: 14px 18px;
    }
    .feedback {
        padding: 20px 12px;
    }
}




/* ................................... become seller & terms responsive css ..................................  */

@media only screen and (min-width:768px) and (max-width:991px){
    .seller-main {
        max-width: 450px;
    }
    .step-item {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }
    .input-field .business-type-section {
        height: 50px;
    }
    .input-field .business-type-section select{
        height: 50px;
        font-size: 14px;
    }
    .seller-page{
        padding: 60px 0;
    }
    .input-field textarea{
         font-size: 14px;
    }
    
    /*terms*/
    .terms-content{
        font-size: 16px;
    }
    .terms-content p {
        font-size: 16px;
    }
    .terms-page{
        padding: 60px 0;
    }
}

@media only screen and (max-width:767px){
     .seller-main {
        max-width: 450px;
    }
    .step-item {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }
    .input-field .business-type-section {
        height: 50px;
    }
    .input-field .business-type-section select{
        height: 50px;
    }

    .bottom-btn a{
        padding: 12px 30px;
    }
    .seller-page{
        padding: 50px 0;
    }

    .input-field .business-type-section select{
        font-size: 14px;
    }
    .input-field textarea{
         font-size: 14px;
    }
    
    /*terms*/
    
    .terms-content{
        font-size: 16px;
        gap: 16px;
    }
    .terms-content p {
        font-size: 16px;
    }
    .terms-page{
        padding: 50px 0;
    }
}

@media only screen and (max-width:575px){
    .seller-main {
        gap: 30px;
    }
    .step-item {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .seller-title h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .seller-form form {
        gap: 16px;
    }
    
    /*terms*/
      .terms-header h2{
        font-size: 24px;
    }
    .terms-content{
        margin-top: 20px;
    }
    .terms-data{
        gap: 10px;
    }
    .Product-heading h2{
        font-size: 28px;
    }
    
}



/* ................................... contact us responsive css ..................................  */


@media only screen and (min-width:1366px) and (max-width:1440px){
    .inner-details {
        margin-bottom: 150px;
    }
    .contact-details span {
        font-size: 14px;
    }
    .contact-card{
        padding: 16px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1365px){
    .inner-details {
        margin-bottom: 130px;
    }
    .contact-details span {
        font-size: 14px;
    }
    .contact-card{
        padding: 12px;
    }
    .contact-inner-info .input-field input{
        height: 50px;
    }
    .contact-card .contact-info {
        gap: 12px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    .contact-icon i {
        font-size: 22px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px){
    .inner-details {
        margin-bottom: 0px; 
        padding: 50px 35px;
    }
    .contact-details span {
        font-size: 14px;
    }
    .contact-card{
        padding: 12px;
    }
    .contact-inner-info .input-field input{
        height: 50px;
    }
    .contact-card .contact-info {
        gap: 12px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    .contact-icon i {
        font-size: 22px;
    }
    .contact-inner-info {
        padding: 20px;
        margin-bottom: 0;
    }
    .contact-inner-info h2{
        font-size: 30px;
    }

    .contact-inner-boxs {
        gap: 16px;
        flex-wrap: wrap;
    }

    .contact-inner-boxs .contact-card:first-child{
        width: 100%;
    }
    .contact-card{
        width: 48%;
    }

    .inner-details h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .contact-inner-info h2{
        margin-bottom: 0;
    }
   
}

@media only screen and (max-width:991px){
     .inner-details{
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        margin-bottom: 0;
    }

    .contact-top {
        background-color: rgb(254 129 109 / 46%);
        padding: 30px;
        border-radius: 10px;
    }
    .inner-details h2{
        font-size: 30px;
        margin-bottom: 16px;
    }

    .contact-inner-boxs {
        gap: 16px;
        margin-top: 30px;
    }

    .contact-card{
        padding: 16px;
    }

    .contact-inner-info {
        padding: 30px;
        margin-bottom: 0;
        max-width: 100%;
        margin-top: 40px;
    }

    .contact-bottom{
        padding: 0;
    }

    .contact-inner-info h2{
        margin-bottom: 0;
    }

    .contact-page {
        padding: 60px 0;
    }
}

@media only screen and (max-width:767px){
     .contact-inner-boxs {
        gap: 16px;
        flex-wrap: wrap;
    }

    .contact-inner-boxs .contact-card:first-child{
        width: 100%;
    }
    .contact-card{
        width: 48%;
    }
    .contact-page {
        padding: 50px 0;
    }
}

@media only screen and (max-width:575px){
    .contact-inner-info {
        padding: 16px;
        margin-top: 20px;
    }
    .contact-top{
        padding: 16px;
    }
    .inner-details p{
        font-size: 14px;
    }
    .inner-details h2 {
        font-size: 20px;
    }
    .main-btn {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
   .contact-card{
    width: 100%;
   }
}


/*.................................blog page responsive css.............................*/

@media only screen and (min-width:1200px) and (max-width:1440px){
    .bd-information h4{
        font-size:36px;
        margin-bottom:1rem;
    }
    .bd-information p{
        font-size:16px;
    }

}


@media only screen and (min-width:992px) and (max-width:1199px){
    .blog-left .blog-info {
        padding: 7px 10px;
        gap:8px;
    }
    .blog-left .blog-item {
        padding: 12px;
    }
    .blog-info li i{
        font-size:14px;
    }
    .blog-info li span{
        font-size:14px;
    }
    .blog-info .blog-img {
        height: 250px;
        margin-bottom: 14px;
    }
    /*.recent-blog-flex{*/
    /*    flex-direction:column;*/
    /*}*/
    .recnet-blog-image{
        width:45%;
    }
    .recent-blog-info{
        width:100%;
    }
    
    .blog-inner-image{
        margin-top:1rem;
    }
    .comment-heading{
        align-items:center;
    }
    .comment-heading span{
        font-size:30px;
    }
    .rating-flex{
        gap:16px;
    }
    .image-date-flex .date-blog{
        font-size:18px;
    }
    .user-blog{
        font-size:18px;
    }
    .bd-information h4{
        font-size:34px;
    }
    .post-tags h5{
        font-size:18px;
    }
    .blog-post-tags{
        flex-direction:column;
    }
    .bd-share-flex span{
        font-size:18px;
    }
    .comment-heading img {
        width: 34px;
        height: 34px;
    }
    .comment-heading span{
        font-size:24px;
    }
    .rating-flex{
        gap:16px;
    }
    .post-tags h5 {
        font-size: 20px;
    }
    .bd-share-flex span {
        font-size: 20px;
    }
    .post-tags span {
        gap: 12px;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width:768px) and (max-width:991px){
    .blog-section .row{
        gap:50px;
        flex-direction:column-reverse;
    }
    .blog-heading h2{
        font-size:34px;
    }
    .recnet-blog-image {
        width: 18%;
        height: 60px;
        border-radius:10px;
    }
    
    .recnet-blog-image img {
        border-radius: 10px;
    }
    
    .blog-left .row{
        flex-direction:row;
        gap:25px 0;
    }
    
    .blog-section .blog-main .row{
        gap:25px 0;
        flex-direction:row;
    }
    
    .post-tags h5 {
        font-size: 20px;
    }
    .bd-share-flex span {
        font-size: 20px;
    }
    .post-tags span {
        gap: 12px;
        flex-wrap: wrap;
    }
    
}


@media only screen and (max-width:767px){
    .blog-section .row{
        gap:50px;
        flex-direction:column-reverse;
    }
    .recnet-blog-image {
        width: 18%;
        border-radius: 10px;
    }
    
    .recnet-blog-image img {
        border-radius: 10px;
    }
    
    .blog-left .row{
        flex-direction:row;
        gap:25px 0;
    }
    .user-blog{
        font-size:16px;
    }
    .image-date-flex .date-blog{
        font-size:16px;
    }
    .image-date-flex{
        padding-bottom:10px;
    }
    .bd-information h4{
        font-size:24px;
    }
    .bd-information p{
        font-size:16px;
    }
    
    .blog-post-tags{
        flex-direction:column;
        gap:10px;
        margin-top: 20px;
    }
    .post-tags h5{
        font-size:14px;
    }
    
    .post-tags {
        gap:12px;
    }
    
}

@media only screen and (max-width:575px){
    .blog-heading{
        flex-direction:column;
        gap:30px;
    }
    .blog-heading h2{
        font-size:28px;
    }
    .select-menu .select-btn{
        padding:6px 24px;
    }
    .recent-blog-info h4{
        font-size:14px;
    }
    .recent-blog-flex {
        padding: 12px 14px;
    }
    .recnet-blog-image {
        width: 30%;
    }
  
    .blog-post-tags .filter-tags {
        font-size: 14px;
        padding: 6px 16px;
    }
    .post-tags span{
        gap:10px;
    }
    .shere-flex a {
        width: 30px;
        height: 30px;
    }
    .bd-share-flex span{
        font-size:16px;
    }
    .comment-heading span{
        font-size:24px;
    }
    .comment-heading img {
        width: 30px;
        height: 30px;
    }
    .blog-inner-image{
        flex-direction:column;
        gap:10px;
    }
    .blog-img-slide{
        width: 100%;
    }
    
    .scrollTop {
        height: 45px;
        width:45px;
        line-height: 45px;
    }
    
    .scrollTop a {
        font-size:20px;
    }
    
}

@media only screen and (max-width:320px){
    .select-menu .select-btn{
        padding:6px 20px;
        font-size:16px;
    }
    
    .blog-heading{
        gap:20px
    }
    .select-menu .options.feature-option{
        width:140px;
    }
}




/*.................................picked order page responsive css.............................*/


@media only screen and (min-width:1366px) and (max-width:1699px) {

    .ordered-box {
        padding: 30px;
    }
    .ordered-box h5{
        font-size: 25px;
    }
    .order-info .inner-box h4 {
        font-size: 22px;
    }
    .orderbox-content h4 {
        font-size: 25px;
    }
    .cart-summary h3 {
        font-size: 22px;
    }
    
}

@media only screen and (min-width:1200px) and (max-width:1365px) {

    .ordered-box {
        padding: 30px;
    }
    .ordered-box h5{
        font-size: 24px;
    }
    .order-info .inner-box h4 {
        font-size: 22px;
    }
    .orderbox-content h4 {
        font-size: 25px;
    }
    .cart-summary h3 {
        font-size: 22px;
    }

    .feedback-header h3{
        font-size: 28px;
    }

    .pick-order-content{
        padding: 30px;
    }

    /* checkout */
    .checkout-form .input-field input{
        height: 55px;
    }
    
}

@media only screen and (min-width:992px) and (max-width:1199px) {

    .ordered-box {
        padding: 20px;
    }
    .ordered-box h5{
        font-size: 24px;
    }
    .order-info .inner-box h4 {
        font-size: 20px;
    }
    .order-info .inner-box span{
        font-size: 18px;
    }
    .orderbox-content h4 {
        font-size: 22px;
    }
    .cart-summary h3 {
        font-size: 20px;
    }

    .cart-orderbox span{
        font-size: 16px;
    }

    .feedback-header h3{
        font-size: 25px;
    }

    .pick-order-content{
        padding: 24px;
    }

    .feedback-box{
        padding-left: 24px;
        padding-right: 0;
    }

     /* checkout */
    .checkout-form .input-field input{
        height: 50px;
    }

    .checkout-form form .row {
        row-gap: 20px !important;
    }

    .checkout-form .input-field{
        padding: 0 10px;
    }

    .checkout-form label {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
}

@media only screen and (max-width: 991px) {
    .feedback-main{
        max-width: 100%;
        padding: 0 12px;
    }
    .feedback-box {
        padding-left: 0;
        margin-top: 40px;
    }
    .ordered-box h5 {
        font-size: 25px;
    }
    .order-info .inner-box h4 {
        font-size: 22px;
    }
    .order-info .inner-box span{
        font-size: 20px;
    }

    .pick-order-content{
        padding: 24px;
    }
    .ordered-box {
        padding: 24px;
    }
    .orderbox-content h4 {
        font-size: 25px;
    }
    .cart-summary h3 {
        font-size: 22px;
    }
    .picked-order-page{
        padding: 60px 0;
    }

    /* checkout */
    .placeorder-btn {
        font-size: 16px;
    }
    
    .checkout-form .input-field{
        padding: 0;;
    }
}

@media only screen and (max-width: 767px){
    .picked-order-page{
        padding: 50px 0;
    }
    .ordered-box h5 {
        font-size: 22px;
    }
    .order-info .inner-box h4 {
        font-size: 20px;
    }
    .order-info .inner-box span {
        font-size: 18px;
    }
    .orderbox-content h4 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .cart-summary h3 {
        font-size: 20px;
    }
    .feedback-box{
        padding: 0;
    }
    .order-info .inner-box span {
        font-size: 16px;
    }
    .order-info .inner-box h4 {
        font-size: 18px;
    }
    .orderbox-content h4 {
        font-size: 20px;
    }


    /* checkout */
    .checkout-header h2{
        font-size: 30px;
    }
    .checkout-form form .row {
        row-gap: 20px;
    }
    .checkout-form label {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .checkout-content .order-summary-info {
        gap: 20px;
    }
}

@media only screen and (max-width: 575px){
    .pick-order-content {
        padding: 10px;
    }
    .ordered-box {
        padding: 20px;
    }
    .ordered-box h5{
        font-size: 18px;
    }
    .order-info {
        flex-direction: column;
        gap: 10px;
    }
    .order-info .inner-box{
        width: 100%;
    }
    .order-info .inner-box:first-child{
        border: none;
    }
    .orderbox-content {
        margin-top: 24px;
    }
    .orderbox-header {
        gap: 24px;
    }
    .cart-summary h3 {
        font-size: 18px;
    }
    .cart-orderbox span {
        font-size: 16px;
    }
    .total-summary .cart-orderbox span {
        font-size: 18px;
    }
    .feedback-box {
        margin-top: 20px;
    }

    .feedback-header h3{
        font-size: 22px;
    }
    .feedback-header p {
        font-size: 14px;
    }
    .feedback-header{
        gap: 2px;
    }
    .feedback-btn {
        padding: 12px 30px;
        margin-top: 0;
    }


    /* checkout */
    .checkout-header h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .checkout-content .ordered-box h5{
        font-size: 22px;
    }
    .checkout-content .orderbox-content{
        margin-top: 24px;
    }
    .coupons-headerbox h3{
        font-size: 18px;
    }
    .condition-box{
        gap: 0px;
    }
    .condition-box input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border-radius: 2px;
    }
    .condition-box label{
        font-size: 14px;
    }
}





/*.................................place order page responsive css.............................*/

@media only screen and (min-width:1200px) and (max-width:1365px){
    .order-btns .main-btn {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px){
    .order-btns .main-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
    .placeorder-content .wishlist-content h3{
        font-size: 20px;
    }
    .placeorder-content .summary-box{
        margin-right: 0;
    }
    .order-btns{
        gap: 20px;
    }
    .placeorder-content .wishlist-content h3.quantity {
        font-size: 18px;
    }
    .placeorder-content .wishlist-content .price {
        font-size: 22px;
    }
    .track-order h3 {
        font-size: 22px;
    }
    .placeorder-main {
        gap: 50px;
    }
    .blog-content a span  {
        font-size: 20px;
    }
}


@media only screen and (max-width: 991px){
    .order-btns {
        flex-direction: row;
    }
    .order-btns .main-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
    .placeorder-content .wishlist-content h3{
        font-size: 20px;
    }
    .placeorder-content .summary-box{
        margin-right: 0;
    }
    .order-btns{
        gap: 20px;
    }
    .placeorder-content .wishlist-content h3.quantity {
        font-size: 18px;
    }
    .placeorder-content .wishlist-content .price {
        font-size: 22px;
    }
    .track-order h3 {
        font-size: 22px;
    }
    .placeorder-main {
        gap: 50px;
    }
    .place-header h2 {
        font-size: 30px;
    }
    .placeorder-content .row {
        row-gap: 20px;
    }
    .place-header p {
        font-size: 20px;
    }
    .placeorder-page{
        padding: 60px 0;
    }
    
    .about-img-box {
        padding-right:0;
    }
}

@media only screen and (max-width: 767px){
    .placeorder-page{
        padding: 50px 0;
    }
    .place-header h2 {
        font-size: 25px;
    }
    .place-header h2 img{
        width: 35px;
    }
    .place-header p {
        font-size: 18px;
    }
    .placeorder-content .summary-box .product-image img {
        width: 60px;
    }
    .placeorder-main .summary-box .wishlist-content{
        gap: 5px;
    }
    .placeorder-content .wishlist-content h3 {
        font-size: 16px;
    }
    .placeorder-content .wishlist-content .price {
        font-size: 18px;
    }
    .placeorder-content .wishlist-content h3.quantity {
        font-size: 16px;
    }

    .view-btn  .main-btn {
        font-size: 14px;
        padding: 8px 20px;
    }
    .track-order h3 {
        font-size: 20px;
    }
    .track-order a img{
        width: 20px;
    }
    .track-order i {
        font-size: 16px;
    }
    .order-btns .main-btn {
        padding: 8px 20px;
    }
    .place-header {
        gap: 2px;
    }
    
    .top-right-mobile .top-right-icon img {
        width:20px;
        height: 20px;
    }
    
    .search-btn img {
        width: 20px;
        height: 20px;
    }
    
    .toggle-btn i {
        font-size: 20px;
    }
    
    .top-right-mobile {
        gap:15px;
    }
}


@media only screen and (max-width: 575px){
    .order-btns{
        gap: 16px;
        flex-direction:column;
    }
    .track-order h3 {
        font-size: 18px;
    }
    .view-btn .main-btn {
        font-size: 12px;
        padding: 5px 15px;
    }
    .view-btn{
        position: absolute;
        right: 10px;
        top: 10px;
    }
    .place-header p {
        font-size: 15px;
    }
    .place-header h2 img {
        width: 22px;
    }
    .place-header h2 {
        font-size: 20px;
        gap: 4px;
    }
    .place-header {
        gap: 5px;
    }
    .placeorder-main {
        gap: 30px;
    }
}


/*.......................order-tracking page responsive css..............................*/


@media only screen and (min-width:1200px) and (max-width:1440px){
    .place-header h2{
        font-size:32px;
    }
    .place-header p{
        font-size:20px;
    }
    .track-order-flex span {
        font-size: 24px;
    }
    .summary-section h3{
        font-size:24px;
    }
    .summary-section p{
        font-size:14px;
    }
    .summary-section ul li{
        font-size:22px;
    }
}

@media only screen and (min-width:992px) and (max-width:1199px){
    .track-order-flex span{
        font-size:20px;
    }
    .summary-section p{
        font-size:16px;
    }
    .summary-section{
        padding:30px;
    }
    .summary-section ul {
        margin-top: 30px;
    }
    .summary-section ul li{
        font-size:20px;
    }
    .track-address-info span{
        font-size:18px;
    }
    .adress-track{
        margin-top:30px;
    }
    .place-header h2{
        font-size:32px;
    }
    .place-header p{
        font-size:20px;
    }
    
    
}

@media only screen and (min-width:768px) and (max-width:991px){
    .track-orders h4{
        font-size:30px;
    }
    .Estimated-delivery {
        padding-left: 10px;
        margin-left: 10px;
    }
    .track-order-flex {
        flex-wrap: wrap;
        gap: 10px;
    }
    .order-tracking{
        margin:50px 0px;
    }
    .summary-section ul li{
        font-size:18px;
    }
    .track-summary-flex{
        gap:20px;
    }
    .track-order-flex span{
        font-size:18px;
    }
    .summary-section{
        padding:30px;
    }
    .summary-section h3{
        font-size:20px;
        margin-bottom:4px;
    }
    .summary-section ul{
        margin-top:20px;
    }
    .summary-section ul li{
        margin-bottom:12px;
        padding-bottom:12px;
    }
    .adress-track{
         margin-top:20px;
         gap:20px;
    }
    .track-address-info span{
        font-size:18px;
    }
}

@media only screen and (max-width:767px){
    .track-order-flex {
        flex-direction: column;
        gap: 10px;
    }
    .track-order-flex span{
        font-size:18px;
    }
    .order-tracking{
        margin:50px 0px;
        flex-direction:column;
    }
    .order-tracking::before{
        display:none;
    }
    .track-summary-flex{
        flex-direction:column;
    }
    .summary-section{
        width:100%;
        padding:30px;
    }
    .summary-section p{
        font-size:14px;
    }
    .summary-section ul{
        margin-top:30px;
    }
    .summary-section ul li{
        font-size:18px;
        padding-bottom:20px;
        margin-bottom:20px;
    }
    .track-address-info span{
        font-size:18px;
    }
    .adress-track{
        margin-top:30px;
    }
    .track-delivery{
        flex-direction:column;
        align-items:start;
        gap:10px;
    }
    .Estimated-delivery{
        padding-left:0;
        margin-left:0;
    }
    .step h4{
        margin-bottom:10px!important;
    }
    
    .bg-product-banner .Product-heading ul li i {
        font-size: 16px;
    }
    .bg-product-banner .Product-heading ul li a i {
        font-size: 16px;
    }

}

@media only screen and (max-width:575px){
    .track-orders h4{
        font-size:24px;
        margin-bottom:30px;
    }

    .track-order-flex span {
        font-size: 16px;
    }
    .track-delivery {
        align-items: start;
        flex-direction: column;
    }
    .Estimated-delivery {
        gap: 8px;
        padding-left: 0;
        border-left:none;
        margin-left: 0;
    }
    .track-delivery{
        gap:10px;
    }
    .summary-section{
        padding:20px;
    }
    .summary-section ul li{
        font-size:16px;
    }
    .track-summary-flex{
        gap:20px;
    }
    .track-address-info span{
        font-size:16px;
    }
    .track-address-info a{
        font-size:16px;
    }
    .summary-section h3{
        font-size:20px;
    }
    
}

@media only screen and (max-width:375px){
    .slider-arrow {
        top: -52px;
        height: 30px;
        width: 30px;
    }
}



