@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600;700&display=swap");




.navbar-nav {
	font-size: medium;
}



.search {
	font-size: 1.6rem !important;
}

/* ////////////////////// */
/* HEADER */


/* ///////////////////// */
/* CART */
.cart {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;

	position: absolute;
	top: 4rem;
	/* right: 16rem; */
	right: 0;
	height: 17rem;
	width: 26.5rem;
	background-color: rgb(255, 255, 255);
	box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.1);
	border-radius: 1rem;
	z-index: 5;
	transition: all 0.2s ease-out;
}

.cart-heading {
	font-size: 1.1rem;
	font-weight: 700;
	padding: 1.6rem 1.8rem;
	border-bottom: 0.8px solid rgba(182, 188, 200, 0.49);
}

.empty-cart {
	display: none;
	text-align: center;
	margin-top: 20%;
	font-size: 1.2rem;
	font-weight: 500;
	color: hsl(219, 9%, 45%);
}

.cart.show {
	top: 6.1rem;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.empty-cart.show,
.cart-bottom.show {
	display: block;
}

.cart-bottom {
	display: none;
	padding: 1.2rem 1.6rem;
}

.cart-info {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	align-items: center;
}

.cart-image {
	/* display: inline-block; */
	height: 40px;
	width: 40px;
	border-radius: 5px;
}

.cart-text {
	color: hsl(219, 9%, 45%);
	font-size: 1.1rem;
	font-weight: 500;
	/* letter-spacing: 0.6px; */
	line-height: 2;
}

.count-items {
	display: inline-block;
	width: 1rem;
}

.current-price {
	display: inline-block;
	color: #000;
	font-weight: 700;
	width: 5rem;
	margin-left: 4px;
}

.delete {
	cursor: pointer;
	color: hsl(220, 14%, 75%);
	font-size: 1.5rem;
}

.delete:hover,
.delete:active {
	color: hsl(220, 13%, 13%);
}

.btn-checkout {
	border: none;
	background-color: hsl(26, 100%, 55%);
	color: hsl(223, 64%, 98%);

	width: 96%;
	padding: 1rem 5rem;
	border-radius: 8px;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-checkout:hover {
	background-color: #ffa45f;
}

/* /////////////////// */
/* BODY */

.heading-secondary {
	display: block;
	color: hsl(26, 100%, 55%);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1px;
	margin-bottom: 2rem;
}

.heading-primary {
	color: hsl(220, 13%, 13%);
	font-size: 30px;
	line-height: 1;
	letter-spacing: 0.3px;
	margin-bottom: 3rem;
}

.description {
	color: hsl(219, 9%, 45%);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.8px;
	margin-bottom: 2rem;
	line-height: 1.5;
}

.price-discount {
	/* color: red; */
	font-size: 2.3rem;
	font-weight: 700;
	position: relative;
	margin-bottom: 5px;
}

/* .price-discount::after {
	position: absolute;
	display: inline-block;
	content: "50%";
	top: 6px;
	left: 9.9rem;

	font-size: 1rem;
	font-weight: 700;
	color: hsl(26, 100%, 55%);
	background-color: #ffe5d1;
	padding: 2px 4px;
	border-radius: 2px;
} */

.price-original {
	color: hsl(220, 14%, 75%);
	font-size: 12px;
	font-weight: 500;
	text-decoration: line-through;
	margin-bottom: 3rem;
}

.buttons {
	display: flex;
	gap: 2rem;
}

.btn-left {
	background-color: hsl(223, 64%, 98%);
	display: flex;
	align-items: center;
	gap: 2.8rem;
	padding: 1rem 1rem;
	border-radius: 8px;
}

.plus,
.minus {
	background: none;
	border: none;
	height: 1.8rem;
	width: 2rem;

	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-number {
	width: 10px;
	font-size: 1.5rem;
	font-weight: 500;
}

.cart-icon {
	height: 1rem;
}

.btn-right {
	background-color: hsl(26, 100%, 55%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: hsl(223, 64%, 98%);

	padding: 1rem 5rem;
	border-radius: 8px;
	gap: 1rem;
	box-shadow: 0 2.4rem 3.6rem rgba(255, 125, 26, 0.2);
	transition: all 0.3s;
}

.plus:hover,
.minus:hover,
.plus:active,
.minus:active {
	opacity: 0.5;
}

.btn-right:hover,
.btn-right:active {
	background-color: #ffa45f;
}

.add-cart {
	background: none;
	border: none;
	color: inherit;

	font-size: 1.3rem;
	font-weight: 600;
}

.plus,
.minus,
.btn-right,
.add-cart {
	cursor: pointer;
}

.main-img {
	height: 80%;
	width: 85%;
	border-radius: 10px;
	cursor: pointer;

	display: block;
	margin: 0 auto;
	margin-bottom: 2rem;
}

.thumbnails {
	margin: 0 auto;
	width: 80%;
	display: flex;
	justify-content: space-between;
}

.thumb-img {
	height: auto;
	width: 6rem;
	cursor: pointer;
}

.thumb-img img {
	height: 100%;
	width: 100%;
	border-radius: 5px;
}

.thumb-img img:hover {
	opacity: 0.6;
}

.thumb-img.active-thumb img {
	opacity: 0.3;
}

.thumb-img.active-thumb {
	border: 2px solid hsl(26, 100%, 55%);
	border-radius: 7px;
}

/* ///////////////// */
/* Floating image */

.overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	min-height: 100%;
	width: 100vw;
	min-width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 5;
}

.overlay.activate {
	display: block;
}

.floating-img {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	top: 0%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto;
	width: 50rem;
	z-index: 10;
	transition: all 0.3s ease-in-out;
}

.floating-img.activate {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	top: 51%;
}

/* ////////////////// */
/* FLOATING section */

.main-img-float {
	height: auto;
	width: 80%;
	border-radius: 10px;
	/* cursor: pointer; */

	display: block;
	margin: 0 auto;
	margin-bottom: 2rem;
}

.thumbnails-float {
	margin: 0 auto;
	width: 80%;
	display: flex;
	justify-content: space-around;
}

.thumb-img-float {
	height: auto;
	width: 6rem;
	cursor: pointer;
}

.thumb-img-float img {
	height: 100%;
	width: 100%;
	border-radius: 5px;
}

.thumb-img-float img:hover {
	opacity: 0.6;
}

.thumb-img-float.active-thumb img {
	opacity: 0.6;
	/* background-image: linear-gradient(white, white); */
}

.thumb-img-float.active-thumb {
	border: 2px solid hsl(26, 100%, 55%);
	border-radius: 7px;
}

/* /////////////////// */
/* BUTTONS */

.btn-swipe {
	position: absolute;
	height: 4rem;
	width: 4rem;
	/* top: 0;
  left: 0; */
	background-color: hsl(0, 0%, 100%);
	border: none;
	cursor: pointer;
	border-radius: 50%;
}

.btn-swipe ion-icon {
	height: 50%;
	width: 50%;
}

.btn-swipe.btn-swipe-left {
	top: 40%;
	left: 10%;
	transform: translate(-50%, -50%);
}

.btn-swipe.btn-swipe-right {
	top: 40%;
	right: 10%;
	transform: translate(50%, -50%);
}

.btn-swipe:hover,
.btn-swipe:active {
	color: hsl(26, 100%, 55%);
}

.close-icon {
	color: hsl(0, 0%, 100%);
	height: 3.3rem;
	width: 3.3rem;
	cursor: pointer;

	position: absolute;
	top: -8%;
	right: 8%;
}

.close-icon:hover,
.close-icon:active {
	color: hsl(26, 100%, 55%);
}

/* Existing styles remain the same */

@media screen and (max-width: 1024px) {
	.container {
		flex-direction: column;
		align-items: center;
	}

	.left-imgs,
	.right-text {
		width: 100%;
		margin: 10px 0;
	}

	.main-img,
	.main-img-float {
		width: 90%;
		margin: 0 auto;
	}

	.thumbnails,
	.thumbnails-float {
		width: 90%;
		margin-top: 1rem;
	}

	.thumb-img,
	.thumb-img-float {
		width: 5rem;
	}

	.thumb-img img,
	.thumb-img-float img {
		border-radius: 4px;
	}

	.price-discount {
		font-size: 2rem;
	}

	.price-discount::after {
		left: 8rem;
		font-size: 0.9rem;
	}

	.heading-primary {
		font-size: 3rem;
	}

	.description {
		font-size: 14px;
	}

	.btn-right {
		padding: 0.8rem 4rem;
	}
}

@media screen and (max-width: 768px) {
	.container {
		padding: 10px;
	}

	.main-img,
	.main-img-float {
		width: 85%;
		margin-bottom: 1.5rem;
	}

	.thumbnails,
	.thumbnails-float {
		width: 85%;
	}

	.thumb-img,
	.thumb-img-float {
		width: 4rem;
	}

	.price-discount {
		font-size: 1.8rem;
	}

	.price-discount::after {
		left: 6.5rem;
		font-size: 0.8rem;
	}

	.heading-primary {
		font-size: 2.5rem;
	}

	.description {
		font-size: 12px;
	}

	.btn-right {
		padding: 0.7rem 3.5rem;
	}
}

@media screen and (max-width: 480px) {
	.container {
		padding: 5px;
	}

	.main-img,
	.main-img-float {
		width: 100%;
		margin-bottom: 1rem;
	}

	.thumbnails,
	.thumbnails-float {
		width: 100%;
	}

	.thumb-img,
	.thumb-img-float {
		width: 3.5rem;
	}

	.price-discount {
		font-size: 1.5rem;
	}

	.price-discount::after {
		left: 5.5rem;
		font-size: 0.7rem;
	}

	.heading-primary {
		font-size: 2rem;
	}

	.description {
		font-size: 10px;
	}

	.btn-left {
		padding: 0.7rem;
	}

	.btn-right {
		padding: 0.6rem 2rem;
		font-size: 1rem;
	}

	.add-cart {
		font-size: 1.2rem;
	}

	.btn-swipe {
		height: 3rem;
		width: 3rem;
	}

	.btn-swipe ion-icon {
		height: 40%;
		width: 40%;
	}

	.close-icon {
		height: 2.8rem;
		width: 2.8rem;
	}
}

/* General styles */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	background-color: #f5f5f5 !important;
}

.navbar {
	padding: 10px 20px;
}

.navbar-brand img {
	height: 50px;
}

.nav-cart {
	color: hsl(219, 9%, 45%);
	font-size: 2.8rem;
	margin-left: auto;
	cursor: pointer;
}

.nav-cart-after {
	position: absolute;
	display: none;
	pointer-events: none;
	top: 0.9rem;
	right: 11rem;
	font-size: 1rem;
	text-align: center;

	height: 1.7rem;
	width: 1.7rem;
	color: rgb(255, 255, 255);
	padding: 2px 2px;
	border-radius: 50%;
	background-color: hsl(26, 100%, 55%);
}

.nav-cart-after.show {
	display: inline-block;
}

.nav-cart:hover,
.nav-cart:active {
	color: hsl(220, 13%, 13%);
}

.checkout-card {
	width: 300px;
	height: 100%;
	background-color: white;
	border-radius: 0 10px 10px 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	right: -320px;
	/* Start offscreen */
	top: 0;
	transition: right 0.3s ease-in-out;
}

.checkout-header {
	padding: 15px;
	background-color: #f9f9f9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	border-bottom: 1px solid #ddd;
}

.close-btn {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

.checkout-body {
	padding: 20px;
	font-size: 16px;
}

.checkout-body p {
	margin-bottom: 10px;
}

.checkout-footer {
	padding: 15px;
	text-align: center;
}

.proceed-btn {
	background-color: #ff6200;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.proceed-btn:hover {
	background-color: #e55a00;
}



.cart {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;

	position: absolute;
	top: 4rem;
	/* right: 16rem; */
	right: 0;
	height: 20rem;
	width: 26.5rem;
	background-color: rgb(255, 255, 255);
	box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.1);
	border-radius: 1rem;
	z-index: 5;
	transition: all 0.2s ease-out;
}

.cart-heading {
	font-size: 1.1rem;
	font-weight: 700;
	padding: 1.6rem 1.8rem;
	border-bottom: 0.8px solid rgba(182, 188, 200, 0.49);
}

.empty-cart {
	display: none;
	text-align: center;
	margin-top: 20%;
	font-size: 1.2rem;
	font-weight: 500;
	color: hsl(219, 9%, 45%);
}

.cart.show {
	top: 6.1rem;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.empty-cart.show,
.cart-bottom.show {
	display: block;
}

.cart-bottom {
	display: none;
	padding: 1.2rem 1.6rem;
}

.cart-info {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	align-items: center;
}

.cart-image {
	/* display: inline-block; */
	height: 40px;
	width: 40px;
	border-radius: 5px;
}

.cart-text {
	color: hsl(219, 9%, 45%);
	font-size: 1.1rem;
	font-weight: 500;
	/* letter-spacing: 0.6px; */
	line-height: 2;
}

.count-items {
	display: inline-block;
	width: 1rem;
}

.current-price {
	display: inline-block;
	color: #000;
	font-weight: 700;
	width: 5rem;
	margin-left: 4px;
}

.delete {
	cursor: pointer;
	color: hsl(220, 14%, 75%);
	font-size: 1.5rem;
}

.delete:hover,
.delete:active {
	color: hsl(220, 13%, 13%);
}

.btn-checkout {
	border: none;
	background-color: hsl(26, 100%, 55%);
	color: hsl(223, 64%, 98%);

	width: 96%;
	padding: 1rem 5rem;
	border-radius: 8px;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-checkout:hover {
	background-color: #ffa45f;
}










.sidebar {
	width: 250px;
	position: fixed;
	top: 0px;
	bottom: 0;
	left: 0;
	padding-top: 65px;
	background-color: #ffffff;
	border-right: 1px solid #ddd;
}

/* .sidebar a {
         display: block;
         padding: 15px;
         text-decoration: none;
         color: #000;
      } */

.sidebar_main {
	/* padding-top: 20px; */
	margin-top: 25px;
	padding: 0 15px;
}

.sidebarCat_main {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 13px;
	padding: 3px;
	text-decoration: none;
	color: #000;
}

.sidebar p {
	margin: 0;
}

.sidebarCat_img {
	max-width: 30px;
	margin-right: 5px;
}

.sidebarCat_icon {
	font-size: 13px;
	margin-left: auto;
	color: #898989;
}

.sidebarCat_main:hover .sidebarCat_icon {
	color: #fcb800;
}


.sidebarCat_main:hover {
	color: #fcb800;
}

/* for mobile view  */
.btn-back {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #000;
}

.btn-back:hover {
	color: #ff0000;
	/* Change color on hover */
}

/* for mobile veiw  */
.main-content {
	margin-left: 270px;
	padding: 20px;
	margin-top: 75px;
}

.remove-scrollbar {
	appearance: none;
	scrollbar-width: none;
}

.categorybuttons {
	border: .1px solid #efefef;
	transition: .3s ease-in-out;
	text-transform: uppercase;
	cursor: pointer;
}

.categorybuttons:hover {
	background: #fc80006b !important;
}

.home-title {
	font-size: 20px;
	color: #1f1f1f;
	font-weight: 600;
	font-family: open sans, sans-serif;
}

.static-catblock p.static-catname {
	position: absolute;
	top: 50%;
	left: 12%;
	transform: translate(-15%, -50%);
	font-weight: 700;
	font-size: 14px;
	width: 40%;
	color: #666;
	margin-bottom: 0;
}


.selfcolor {
	color: #f4511e !important;
}


.pin_slider {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	overflow: auto;
}

.single_post {
	float: left;
	position: relative;
	width: 180px;
	transition: transform 0.3s ease-out;
}

.hvr-float {
	box-shadow: 0 0 1px transparent;
	display: inline-block;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-timing-function: ease-out;
	vertical-align: middle;
}

.hvr-float:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.single_post a {
	text-decoration: none;
}

.onlinetext {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration: none;
}

.selfbgcolor {
	background-color: #f4511e !important;
}

.flash_item {
	width: 171px !important;
}


.product-view a {
	text-decoration: none;
	transition: 0.4s;
}

.product-view a:hover {
	background: #d8d2d2;
}

.footer-main .title {
	color: #1f1f1f;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.f-title {
	border-bottom: 1px solid #1f1f1f;
	padding: 5px;
	padding-bottom: 10px;
}

.text {
	color: #071C00;
	font-size: 14px;
	padding-right: 5px;
}

.contact-des {
	color: #000;
	font-size: 13px;
	opacity: .8;
}

.contact-des a {
	text-decoration: none;
	color: #000;
	font-size: 14px;
	opacity: .8;
}

.contact-des a:hover {
	color: #B1150A;
}



.social-newsletter-area .social-newsletter-inner {
	padding: 10px 30px;
	background-color: #fff;
	border-radius: .375rem;
	border-radius: .375rem;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-direction: column;
}


.social-icons .social-icon {
	display: inline-block;
	padding: 0 10px;
	list-style: none;
}

.social-icon a {
	color: #666;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 18px;
	background-color: #fff;
	display: block;
	border-radius: 50%;
	border-radius: 50%;
	box-shadow: 0 5px 5px rgba(0, 0, 0, .08);
	box-shadow: 0 5px 5px rgba(0, 0, 0, .08);
	box-shadow: 0 5px 5px rgba(0, 0, 0, .08);
	transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.social-icon a:hover {
	color: #fff !important;
	background-color: #008cdf;
}

.social-icon .youtube:hover {
	color: #fff !important;
	background-color: red;
}

























@media (max-width: 991px) {
	#web_view {
		display: none;
	}

	.sidebar {
		width: 200px;
		padding-top: 50px;
	}

	.navbar-expand-lg .navbar-collapse {
		flex-direction: column;
	}

	.navbar-nav {
		margin-top: 10px;
		text-align: center;
	}

	.form-control {
		width: 100%;
		margin-bottom: 10px;
	}

	.btn-outline-warning {
		width: 100%;
		display: none;
	}

	.sidebarCat_img {
		width: 40px;
		height: 30px;
	}

	.main-content {
		margin-left: 200px;
		padding: 20px;
		margin-top: 125px;
	}

	.sidebar_main {
		padding-top: 20px !important;
		margin-top: 75px;
		padding: 0 10px;
	}

	.static-catblock p.static-catname {
		font-weight: 600;
		font-size: 10px;
	}


}

@media (max-width: 767px) {
	.sidebar {
		position: static;
		width: 100%;
		height: auto;
		display: none;
		/* Initially hidden on mobile */
	}

	.navbar-toggler {
		display: inline-block;
	}

	.navbar-collapse {
		text-align: center;
	}

	.form-control,
	.btn-outline-warning {
		width: 100%;
	}

	.sidebarCat_main {
		justify-content: center;
		padding: 15px;
	}

	.sidebarCat_cata {
		text-align: center;
	}

	.static-catblock p.static-catname {
		font-weight: 700;
		font-size: 14px;
	}

	.main-content {
		margin-left: auto;
		padding: 20px;
		margin-top: 125px;
	}
}

@media (max-width: 576px) {
	.sidebar {
		width: 100%;
	}

	.sidebarCat_img {
		width: 40px;
		height: 25px;
	}

	.sidebarCat_cata {
		font-size: 0.9rem;
	}

	.static-catblock p.static-catname {
		font-weight: 400;
		font-size: 9px;
	}

	.home-title {
		font-size: 15px;
	}

	.d-inline {
		font-size: 0.8rem;
		display: none !important;
	}

}