/*--Header section css start here--*/
.header{
    padding: 0;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/*--Navbar--*/
.header .navbar-nav .nav-item .nav-link {
    padding: 9px 15px 9px 15px !important;
    color: var(--gray);
    font-size: 1rem;
    border-radius: 8px;
}
.comp-logo {
	overflow: clip;
    padding: 0px;
    max-width: 100%;
    margin-right: 0;
}


.menu-box h6 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
}

.menu-box p {
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.menu-box{
    padding: 7px 16px;
    margin: 10px 0;
    border-radius: 10px;
}


ul.navbar-nav {
    padding: 0px;
}

.header .navbar-nav .nav-item .nav-link:hover, 
.header .navbar-nav .nav-item .nav-link.show{
    background: var(--text-muted);
}

.header .navbar-nav .nav-item .nav-link:hover{
    color: var(--blue);
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color:var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand svg {
    color: var(--white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.header-right {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
}

.cart-icon {
	position: relative;
}
.items-added {
	position: absolute;
	background-color: var(--red);
	padding: 2px;
	font-size: 11px;
	color: var(--white);
	line-height: normal;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -9px;
	right: -6px;
	border-radius: 20px;
	text-align: center;
}

.header-start {
	display: flex;
	align-items: center;
}
/* Search Icon */
.search-btn {
	font-size: 1.25rem;
	padding: 0;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	background: none;
	color: var(--primary);
	position: absolute;
	top: 9px;
	left: 10px;
    width: 34px;
    height: 34px;
}

.search-box {
  background: var(--white);
  width: min(90%, 500px);
  padding: 0px 0;
  border-radius: 16px;
  transform: scale(0.8);
  transition: transform 0.4s ease;
  position: relative;
  display: flex;
}
.search-box form{
    position: relative;
}

.form-control.input-search {
	border-radius: 70px;
	height: 50px;
    padding-left: 50px;
}


.search-form input {
  flex: 1;
  padding: 14px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.search-form button {
  padding: 14px 20px;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color:var(--white);
  font-size: 16px;
  cursor: pointer;
}


/* Hero Section */
.hero-section {
    background: url(../img/hero_banner_bg.png) no-repeat 0 0;
    width: 100%;
    background-size: cover;
    padding: 5rem 0 3rem 0;
}
.hero-section .carousel-control-prev {
	width: auto;
	height: auto;
	left: 10px;
}

.hero-section .carousel-control-next{
    width: auto;
    right: 10px;
}

/*--category section start here--*/

.our-category-section {
  background: #f7fbfc;
}

.category-item {
  text-decoration: none;
  color: #000;
}

.category-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-name {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hover (very subtle like screenshot) */
.category-item:hover .category-img {
  transform: scale(1.04);
  transition: 0.3s ease;
}

/*--Our Prodcuts section css--*/

.product-item .card {
	border-color: #E5E7EB;
    border-radius: var(--bdrRadius);
    position: relative;
    transition: all 0.3s ease;
}
.product-thumb{
    background-color: #F2FAFE;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 208px;
    border-radius: var(--bdrRadius);
}
.offer-tag{
    background-color: var(--red);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 400;
    display: inline-flex;
    position: absolute;
    left: 20px;
    top: 20px;
}
.card-title, .card-title a {
	font-size: 1rem;
	color: var(--gray);
	font-weight: 400;
}

.card-price {
	font-size: 1.5rem;
	color: var(--primary);
	font-weight: 600;
}

.product-item .card .btn-cart {
	border-radius: 0 0 10px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 400;
    background-color: var(--primary);
}

.product-item .card:hover{
    box-shadow: var(--boxShadow);
    transform: translateY(-2px);
}

.product-item .card:hover .btn-cart{
    background-color: var(--blue);
}

.filter-btn {
	background-color: var(--text-muted);
	border-radius: 50px!important;
	color: var(--primary);
    font-size: 0.875rem;
    font-weight: 400!important;
}
.filter-btn:hover{
    background-color: var(--primary);
}
.filter-btn.btn-primary {
	background-color: var(--primary);
}


/* Footer */
.footer {
    background:var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	max-width: 70%;
}

.social-icons a {
	background-color: var(--white);
	padding: 8px;
	border-radius: var(--bdrRadius);
	color: var(--blue)!important;
}

.footer-brand h4 {
    margin: 0;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
}

.footer-col h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
	list-style: none;
	padding-left: 15px;
}

.footer-col ul li {
	margin-bottom: 0.5rem;
	list-style-type: disc;
	padding-left: 5px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.footer-col a:hover {
    color: var(--text-muted)!important;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icons a:hover {
    opacity: 0.7;
}

.footer hr {
    border: none;
    border-top: 1px solid var(--text-muted);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}
.footer-bottom a{
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.profile {
	font-size: 1rem;
	gap: 5px;
	display: flex;
	align-items: center;
    color: var(--primary);
}

.banner-img p,
.banner-content-list li{
    font-size: 0.75rem;
    color: var(--text-muted);
}

.banner-img h6{
    font-size: 0.875rem;
}

.banner-content-list li{
    display: flex;
    gap:20px;
    margin-bottom: 10px;
}

.ai-icons-img{
    width: 42px!important;
    height: 42px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-align: center;
    border-radius: 6px;
}

.inprogress-badge {
	color: #966742;
	background-color: var(--yellow--30);
	padding: 5px 10px;
	font-size: 0.75rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21%;
	border-radius: 50px;
	margin-top: 3px;
}

/*--Login modal section start here--*/
.modal-content{
    border-radius: var(--bdrRadius)!important;
}
.heading-section {
	display: flex;
	flex-direction: column;
	padding: 20px;
    text-align: left;
    background-color: var(--primary);
    margin-bottom: 30px;
    border-radius: 10px 10px 0 0;
}
.heading-section h1{
    font-size: 1.82rem!important;
    color: var(--white);
    font-weight: 600;
    text-align: left;
}
.heading-section p{
    color: var(--white);
    font-size: 0.875rem;
}

.text-link {
	font-size: 0.87rem;
	color: var(--blue);
}

.text-link:hover {
	color: var(--primary);
}
.login-signup {
	padding: 0 30px;
}
.login-signup label{
    font-size: 0.875rem;
}

.login-page-model .modal-footer {
	padding: 9px 0;
	align-items: center;
	justify-content: center;
}

.login-page-model .modal-footer p{
    font-size: 0.875rem;
    color: var(--gray);
}
.login-page-model p a{
    color: var(--blue);
}

.btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
    background:none;
}

.login-page-model .btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
    background:none;
    color: var(--white);
}

.login-signup .form-control {
	font-size: 0.875rem;
	height: 50px;
	border-radius: var(--bdrRadius);
	padding: 0 1rem;
}


/*--Quote page css start here--*/

.quotes-box {
	box-shadow: var(--boxShadow);
	border-radius: var(--bdrRadius);
	padding: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.quote-icon-img {
	padding: 5px;
	background-color: var(--blue-10);
	display: inline-flex;
	height: 72px;
	width: 72px;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border-radius: var(--bdrRadius);
}

.quotes-box:hover{
    transform: translateY(-5px);
}

.quote-detils h4 {
	color: var(--gray);
	margin-bottom: 10px;
	font-weight: 300;
}

.user-thumb {
	margin: 0 auto;
	overflow: hidden;
	width: 120px;
	height: 120px;
	overflow: hidden;
	border-radius: 50%;
	border: 2px solid var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.user-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.prescription-detail {
	text-align: center;
	gap: 10px;
}

.prescription-detail h6 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 5px 0 0 0;
}

/*--Cart page css start here--*/

.filter-sidebar {
	margin-top: 67px;
}

.filter-sidebar .offcanvas-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	padding-bottom: 10px;
}

.cart-list-section ul {
	list-style-type: none;
}

.cart-list li {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
	border-bottom: 1px solid #ccc;
	padding: 10px 0;
}

.cart-list-section .cart-product-thumb {
	width: 72px;
	height: 72px;
	min-width: 72px;
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	background-color: #fff;
	border: 1px solid #ccc;
    overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
    border-radius: var(--bdrRadius);
    position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.cart-list-section .cart-product-thumb img {
	width: 100%;
	height: 100%;
}

.cart-product-detials {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.delete-item {
	background-color: transparent;
	border: 0px;
}

.product-title {
	font-size: 0.875rem;
	color: #161515;
	font-weight: 600;
	text-decoration: none;
}
.samll-text {
	font-size: 0.75rem;
	color: #888;
	padding-bottom: 10px;
}

.qty-price {
	width: 100%;
}

.qty-price .number.cont-ad-name {
	border: 0px;
	padding: 0;
	background-color: #F2F2F4;
	padding: 6px;
	border-radius: 20px;
}

.number.cont-ad-name {
	border-radius: 30px;
	border: 0px solid #000000;
	background: #F2F2F4;
	padding: 10px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qty-price .number.cont-ad-name .minus, .qty-price .number.cont-ad-name .plus {
    font-size: 0.875rem;
    font-weight: 600;
}

.number.cont-ad-name .minus {
	width: 20px;
	height: 20px;
	min-height: 20px;
	min-width: 20px;
	border-radius: 20px;
	padding: 5px;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;	
    color: var(--primary);
    background-color: var(--white);
	cursor: pointer;
	margin-top: 0px;
}
.qty-price .number.cont-ad-name input {
	width: 40px;
	background-color: transparent;
}
.number.cont-ad-name input {
	height: 26px;
	width: 50px;
	text-align: center;
	font-size: 1rem;
	border: 0;
	border-radius: 0px;
	display: inline-block;
	vertical-align: middle;
    background-color: transparent;
}
.number.cont-ad-name .plus {
	cursor: pointer;
	width: 20px;
	height: 20px;
	min-height: 20px;
	min-width: 20px;
	border-radius: 20px;
	padding: 5px;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background-color: #F8C301; */
	color: var(--white);
	margin-top: 0px;
    background-color: var(--primary);
    border-color: var(--primary);
}

.number.cont-ad-name .plus span, .number.cont-ad-name .minus span {
	font-size: 1rem;
	font-weight: 600;
	line-height: normal;
	margin: 0 0 0 1px;
}


.cart-price-detail {
	position: sticky;
	bottom: 0;
	right: 0;
	width: 100%;
	background-color: #fff;
}

.cart-price-detail ul {
	list-style-type: none;
	width: 100%;
	padding: 0;
	margin: 0;
}

.cart-price-detail ul li {
	font-size: 1rem;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
}

.cart-price-detail ul li dd, .cart-price-detail ul li dt {
	margin: 0px;
	font-weight: normal;
}

.cart-price-detail ul li dt {
	text-align: right;
}

.cart-price-detail ul li.total {
	border-top: 1px solid #ccc;
	padding-top: 10px;
	margin-top: 5px;
}

.cart-price-detail ul li.total dd, .cart-price-detail ul li.total dt {
	font-weight: bold;
}


/*---checkout page--*/
.already-box-checkout {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #B2B2B2;
    background: #ffffff;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 65px;
}
.already-box-checkout a{
    color: var(--blue);
}
.shipping-adderss-main, .payment-method-blog {
	background: #faf9f9;
	border-radius: 10px;
	border: 1px solid #B2B2B2;
	padding: 15px 20px;
    font-size: 0.875rem;
}
.shipping-adderss-main .box {
	width: 47%;
}
.shipping-adderss-main .box p{
    margin-bottom: 0;
    font-weight: 600;
}
.shipping-title {
	color: #333333;
	font-size: 1.25rem;
	font-weight: 600;
}
.shipping-adderss-main .phone-input-label .form-select {
	width: 62px;
	border-right: 0px;
	border-radius: 6px 0px 0px 6px;
	background: #e6e6e6;
    appearance: auto!important;
    -moz-appearance: auto!important;
    -webkit-appearance: auto!important;
}
.shipping-adderss-main .phone-input-label .form-control {
	padding: 0.55rem .75rem;
	border-radius: 0px 6px 6px 0px;
}
.shipping-adderss-main .form-label {
	color: #333;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
}
.shipping-adderss-main .form-control, 
.shipping-adderss-main .form-select {
	padding: 0.55rem .75rem;
	border-radius: 6px;
    font-size: 14px;
}

.summary-box {
	border-radius: 10px;
	background: #faf9f9;
	border: 1px solid #B2B2B2;
	padding: 0px;
    margin-bottom: 15px;
}

.summary-box .accordion-header {
	padding: 15px 10px;
    cursor: pointer;
}
.summary-box .accordion-button {
	border-radius: 10px 0px 0px 0px !important;
	background: transparent !important;
	padding: 0;
    box-shadow: none;
}
.fitlest-textt {
	font-size: 0.875rem;
	color: #000;
}
.summary-box .accordion-collapse {
	padding: 0 15px 5px 15px;
}
.summary-box .accordion-collapse.show {
	border-top: 0px;
	margin-top: 0px;
	padding-top: 0;
}
.product-list {
	border-radius: 10px;
	background: #fff;
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.summary-box .product-list .product-img {
	width: 20%;
	min-width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-right: 10px;
	overflow: hidden;
	padding: 3px;
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.summary-box .product-list .product-img .img-bxx {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.product-list.coupon-code-box {
	border: 0;
	padding: 0;
	background: transparent;
}

.cart-box-cnt .cat-head {
	color: #333333;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: normal;
}
.cart-box-cnt .cat-head.fs-1 {
	font-size: 0.875rem !important;
}
.kk-price-num {
	color: #333333;
	font-weight: bold;
}

.payment-method-blog .form-check-input{
    position: relative;
    top: 5px;
}

.top {
	column-gap: 20px;
}

.shipping-adderss-main .home {
	column-gap: 5px;
	border: 1px solid #D9D9D9;
	border-radius: 6px;
	padding: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: #fff;
}
.summary-box .accordion-header .accordion-button:after{
    background: url(../img/arrow_down.svg) no-repeat 0 -4px!important;
}
.summary-box .accordion-button{
    border-bottom: 0px;
    box-shadow:none!important;
}
.shipping-adderss-main input[type="radio"] {
    width: 30px;
    height: 25px;
    display: inline-block;
    margin-right: 5px;
  }

  .rightsidebar .accordion{
    margin-top: 0px;
  }

.cart-total-box {
	display: flex;
	flex-direction: column;
	background-color: #F2F1EC;
	padding: 20px;
	border-radius: 8px;
	gap: 15px;
}

.total-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

.cart-item-details{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input:focus, input:focus-visible{
    outline: none!important;
    box-shadow: none!important;
}

.cart-icons-box{
    position: relative;
    padding-left: 15px;
}
.count-items {
	position: absolute;
	right: -5px;
	top: -4px;
	width: 15px;
	height: 15px;
	background: #FB19BA;
	border-radius: 40px;
}

.product-more-dtails .accordion-item {
	margin-bottom: 0px;
	border-left: 0 !important;
	border-right: 0 !important;
	border-top: 0 !important;
	border-radius: 0 !important;
    padding: 10px 5px;
}
.product-more-dtails h3{
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-more-dtails .category-list li {
	font-size: 0.875rem;
	color: #000;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
}
.product-more-dtails .price-range p{
    color: #161515;
    font-size: 0.875rem;
}
.product-more-dtails .accordion-item h3::after {
	background: url(../img/arrow_down.svg) no-repeat center center;
	content: '';
	width: 24px;
	height: 20px;
	display: flex;
	rotate: 180deg;
}

.product-more-dtails .accordion-item h3.collapsed::after {
    rotate: 0deg;
}

/*--Product zoom image slider--*/
.product-image-slider {
    max-width: 664px;
}
.product-image-slider .owl-stage-outer{
    background-color: #F6F6F6;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    margin-bottom: 20px;
}
.product-image-slider .owl-stage-outer .owl-stage{
    height: 100%;
    align-items: center;
}
.product-image-slider .owl-carousel .owl-item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-slider .owl-thumbs {
	display: flex;
	align-items: center;
	justify-content:flex-start;
	gap: 10px;
}
.product-image-slider .owl-thumbs .owl-thumb-item {
    height: 90px;
    width: 100%;
    max-width: 84px;
    background: transparent;
    border: none;
    overflow: hidden;
    background-color: #F6F6F6;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #F6F6F6;
}
.product-image-slider .owl-thumbs .owl-thumb-item.active{
    border: 1px solid #FB19BA;
}
.product-image-slider .owl-thumbs .owl-thumb-item img {
    max-width: 100%;
    height: auto;
}
.product-image-slider .owl-dots {
    position: absolute;
    bottom: 170px;
    left: 0;
    right: 0;
}
.product-image-slider .owl-carousel .owl-item img{
    width: auto;
    margin: 0 auto;
}


*--Profile dropdown section --*/
.profile-downdown{
    width: 270px !important;
}
.profile-downdown li{
    padding: 0px 0;
    border-bottom: 1px solid #ccc;
}
.profile-downdown li a{
    padding: 10px 15px;
    font-size: 0.875rem;
    color: #161515;
    font-weight: 500;
}
.profile-downdown li:last-child{
    border-bottom: 0px;
}
.profile-downdown {
	padding-top: 0;
}
.my-profile{
    padding:15px 15px;
}
.my-profile .profile-thumb{
    min-width: 24px;
    min-height: 24px;
    display: flex;
}
.my-profile .profile-detials{
    line-height: 1;
}
.dropdown-menu{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.dropdown-menu.show {
	display: block;
	width: 300px;
}

.nav-link.dropdown-toggle {
	display: flex;
	align-items: center;
}

.mobile-menu {
	position: fixed;
	z-index: 9999;
	background: var(--primary);
	left: 0;
	bottom: 0;
	width: 100%;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.4);
}
.mobile-menu ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu ul li{
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu ul li a {
	display: flex;
	flex-direction: column;
	padding: 10px;
	color: var(--white);
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 400;
    width: 100%;
}
.mobile-menu ul li:hover a{
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a i{font-size: 1.15rem;}

.profile-left-section li a{
    padding: 10px 10px;
    border-radius: 8px;
}

.profile-left-section li{
    display: flex;
    margin-bottom: 5px;
}
.profile-left-section li.active a, .profile-left-section li:hover a{
    background-color: var(--text-muted);
    color: var(--blue);
}

.profile-left-section .profile-thumb{
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    padding: 10px;
}

.change-profile-pic {
	position: relative;
	width: 70px;
	display: flex;
	flex-wrap: wrap;
    height: 70px;
    overflow: hidden;
    cursor: pointer;
}
.change-profile-pic:hover .upload-box {
    display: flex;
}

/* Hide file input */
.change-profile-pic input[type="file"] {
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 9;
    cursor: pointer;
}
.upload-box{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 16, 39, 0.8);
    cursor: pointer;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
}

/* Camera icon */
.camera-icon {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Camera lens */
.lens {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.order-listing {
	border: 1px solid var(--border-color);
	border-radius: var(--bdrRadius);
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.product-thumb-order {
	width: 90px;
	height: 90px;
	background-color: #F2F2F4;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	overflow: hidden;
}

.order-product-content {
	display: flex;
	flex-direction: column;
}
.order-name {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 5px;
}
.order-product-content .small-text {
	font-size: 0.75rem;
	margin-bottom: 10px;
    color: #1E232B;
}
.order-id {
	font-size: 0.875rem;
	color: #1E232B;
}
.deliverd {
	color: #29C70C;
}
.fade-up {
  animation: fadeUp 0.8s ease-in-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .comp-logo {
        max-width: 70%;
    }
    .navbar-toggler {
        background-color: transparent;
        border: 0px;
        padding: 0;
    }

    .header .nav-item {
        border-bottom: 1px solid var(--text-muted);
    }

    .header .navbar-nav .nav-item .nav-link {
        font-size: 1rem;
        text-transform: uppercase;
        font-weight: 600;
        padding: 1rem 1rem 1rem 1.5rem!important;
    }

    .dropdown-menu{
          width: 95%;
          margin:0 auto 20px auto;
    }

    .offcanvas{
        overflow: auto;
    }

    
    .header .contact-info {
        padding: 1.5rem;
    }

    .header .contact-info h2 {
        font-size: 1.52rem;
        margin-bottom: 1rem;
    }

    .header .info-item a, .header .info-item span{
        color: var(--dark-navy);
    }

    .header .info-item {
        display: flex;
        gap: 10px;
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        padding-bottom: 1rem;
    }

    .nav-logo{
        max-width: 40%;
    }

    .header-right {
        display: none;
    }
}

@media (max-width:992px){
   .search-box {
        background: var(--white);
        width: auto;
        padding: 0px 0;
        border-radius: 0;
        transform: scale(1);
        transition: transform 0.4s ease;
        position: relative;
        display: flex;
    }
    .header-start {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    .form-control.input-search {
        border-radius: 70px;
        height: 50px;
        padding-left: 50px;
        font-size: 0.875rem;
        width: 120px;
        -webkit-transition: all 0.3s ease-in-out;
	    -moz-transition: all 0.3s ease-in-out;
	    -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	    transition: all 0.3s ease-in-out;
    }
    .form-control.input-search:focus{
        width: 170px;
    }
    .hero-caption {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 0px;
    }

    .hero-banner-img {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
.section-title {
	text-align: center;
	flex-direction: column;
	justify-content: center;
    gap: 20px;
}
.category-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
}
.filter-btn{
    margin-bottom: 10px;
}
.footer-grid {
	grid-template-columns: repeat(2, 1fr);
    gap:0;
}
.footer-bottom p{
    font-size: 0.75rem;
    text-align: center;
}
.footer-col ul li{
    font-size: 0.875rem;
}
.footer {
	padding-bottom: 80px;
}

.hero-section.innerpage-hero {
	padding: 4rem 0 1rem 0;
}
.card-price {
	font-size: 1rem;
}
.card-title, .card-title a {
	font-size: 0.875rem;
}
.modal-backdrop {
	--bs-backdrop-zindex: 9999;
}
.modal{
    --bs-modal-zindex: 99999;
}
.quotes-box {
	display: flex;
	gap: 20px;
	padding: 10px;
}
.quote-icon-img {
	height: 52px;
	width: 52px;
	margin-bottom: 0px;
}
.profile-details-list h4 {
	font-size: 1rem;
}
}
@media(max-width:767px){
    .product-more-dtails p {
        font-size: 0.75rem;
    }
    .product-more-dtails .category-list li {
        font-size: 0.75rem;
    }
    .shipping-title {
        font-size: 1rem;
    }
    .shipping-adderss-main .box {
        width: 100%;
        margin-bottom: 10px;
    }
    .list-group-item.makeTitle {
        font-size: 0.75rem;
    }

    .shipping_billing_title {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    .shipping-adderss-main .form-label {
        font-size: 13px;
        margin-bottom: 0.15rem;
    }

    .heading-section h1 {
        font-size: 1.12rem !important;
    }
    .heading-section p {
        font-size: 0.75rem;
    }
    .login-signup {
        padding: 0 20px;
    }
    .heading-section{
        margin-bottom: 20px;
    }
    .login-signup label {
        font-size: 0.75rem;
    }
    .login-signup .form-control {
        font-size: 0.75rem;
        height: 43px;
        padding: 0 0.75rem;
    }
    .login-signup .btn.btn-primary {
        width: 100%;
    }
    .login-page-model .modal-footer p {
        font-size: 0.75rem;
    }
    .product-thumb {
        min-height: 158px;
        margin: 5px;
    }
    .offer-tag {
        padding: 2px 13px;
        font-size: 0.75rem;
        left: 10px;
        top: 10px;
    }
    .card-body {
        padding: 0.75rem;
    }
}