body {
	background: #fff;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #636363;
	letter-spacing: 0.02rem;
	line-height: 1.2;
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

b,
strong {
	font-weight: 700;
}

ul,
li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.list-style-type-disc li {
	list-style-type: disc;
	margin-left: 14px;
	margin-top: 20px;
}

p {
	line-height: 1.6rem;
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
}

.svg-icon {
	width: 40px;
	height: 40px;
	fill: currentColor;
}

.section {
	position: relative;
	display: block;
}

.font-size-12 {
	font-size: 12px;
}

.font-size-14 {
	font-size: 14px;
}

.font-15 {
	font-size: 15px;
	line-height: 1.4rem;
}

.font-13 {
	font-size: 13px;
	line-height: 1.2rem;
}

.font-18 {
	font-size: 18px;
}

.font-size-17 {
	font-size: 17px;
}



/* NAV BAR */
.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0;
}

@media (min-width: 1400px) {
	.nav {
		max-width: 1320px;
	}
}

.nav-left,
.nav-right {
	display: flex;
	gap: 20px;
	flex: 1;
}

.nav-left {
	justify-content: start;
}

.nav-right {
	justify-content: left;
}

.nav a {
	color: #fff;
	text-decoration: none;
}

.nav a.active {
	color: gold;
}

.nav ul {
	display: flex;
	flex-direction: row;
	gap: 40px;
}

.nav ul li a {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.06rem;
	text-decoration: none !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav ul li a:hover,
.nav ul li a:focus {
	color: #000000;
}

/* LOGO LEFT (MOBILE) */
.logo-left {
	display: none;
	align-items: center;
}

.logo-left img {
	height: 40px;
}

/* HAMBURGER */
.hamburger {
	width: 30px;
	height: 22px;
	position: absolute;
	right: 0px;
	top: 14px;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	background: #000;
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}

.hamburger.active span {
	background: #fff;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
}

.hamburger span:nth-child(3) {
	top: 18px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}

.overlay {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, .70);
	display: none;
}

.overlay.show {
	display: block;
}

/* MOBILE STYLES */
@media (max-width: 1920px) {

	.logo-left {
		display: flex;
	}

	.logo-center {
		display: none;
	}

	.hamburger {
		display: block;
	}

	.nav {
		position: fixed;
		top: 0;
		left: -250px;
		/* hidden off-screen */
		height: 100%;
		width: 250px;
		background: #343434;
		flex-direction: column;
		padding: 60px 20px;
		gap: 20px;
		transition: left 0.3s ease;
		z-index: 1000;
	}

	.nav-left,
	.nav-right {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}

	.nav.show {
		left: 0;
	}

	.nav ul {
		gap: 15px;
		flex-direction: column;
	}

	.nav ul li {
		width: 100%;
	}

	.nav ul li a {
		display: block;
	}

}


.scrollup {
	width: 50px;
	height: 50px;
	opacity: 1;
	position: fixed;
	bottom: 8px;
	left: 15px;
	display: none;
	text-indent: -9999px;
	background: url(../images/icons/circle-arrow.svg) no-repeat;
	z-index: 5;
	background-size: 100% auto;
}



/* App Css */

.full-cover-bg {
	width: 100%;
	height: 100%;
}

body {
	background-color: #fff;
}

.app-wrapper-container {
	width: 100%;
	display: block;
	position: relative;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 15px;
	padding-bottom: 110px;
}

.app-top-section {}

.full-height {
	height: 100vh;
}

.full-width {
	width: 100%;
}

.full-cover-bg {
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.splash-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
}

/* Logo animation */
.splash img {
	width: 111px;
	/* adjust to your logo size */
	animation: scaleUp 1.5s ease forwards;
	max-width: 111px;
	padding-top: 30px;
}

@keyframes scaleUp {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	60% {
		transform: scale(1.2);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

@keyframes fadeOut {
	to {
		opacity: 0;
		visibility: hidden;
	}
}

.top-bar-wrapper {
	display: block;
	background-color: #ffffff;
	padding: 10px 0;
	min-height: 40px;
}

.app-back-btn {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.625rem;
	color: #fff;
	text-decoration: none !important;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: start;
}

.app-bar-title {
	font-size: 1.875rem;
	color: #fff;
}

.splash-wrap.full-cover-bg {
	background-position: top center;
}

.top-bar-section {
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.75rem;
	color: #ffffff;
	font-weight: 600;
	min-height: 53px;
	padding: 2.5rem 0 0;
	letter-spacing: 0;
}

.padding-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.heading {
	display: block;
	position: relative;
}

.heading h2 {
	font-size: 1.625rem;
	color: #000;
	font-weight: 600;
	line-height: 100%;
}

.custom-hori-scroll {
	display: flex;
	gap: 0;
	justify-content: start;
	overflow: hidden;
	width: 100%;
}

.hori-scroll-box {
	width: 180px;
	display: block;
	min-width: 180px;
}

.hori-scroll-box-alt {
	width: 100%;
	min-width: 100%;
	padding-bottom: 5px;
	height: 100%;
}

.product-box {
	background-color: #ffffff !important;
	border-radius: 0.725rem;
	padding: 0 0 10px;
	display: flex;
	justify-content: start;
	flex: 1 1 0%;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
	position: relative;
}

.product-box-image {
	/*overflow: hidden;*/
	border-radius: 0;
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	max-height: 120px;
	/*min-height: 120px;*/
	position: relative;
}

.product-box-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	/*position: absolute;*/
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.product-box-content {
	display: block;
	width: 100%;
	padding: .1rem;
	padding-top: .5rem;
	text-align: center;
	white-space: normal;
}

.product-box-content h4 {
	color: #000;
	font-size: 1rem;
	font-weight: 600;
	display: block;
	margin-bottom: .5rem;
}

.product-box-content p {
	font-size: 0.825rem;
	line-height: 1.2rem;
	color: #4a4949;
	margin-bottom: 1rem;
	min-height: 2.45rem;
}

.custom-btn {
	border-radius: 0.425rem;
	color: #fff;
	background-color: #000;
	font-size: 0.825rem;
	letter-spacing: 0.02rem;
	padding: 0.5rem 1.25rem;
	border-color: transparent;
	line-height: 100%;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.04rem;
	border: none;
	border: 2px solid transparent;
}

.custom-btn:hover {
	border-color: #000;
	color: #000;
}

.full-width-image-section {
	display: block;
	position: relative;
}

.full-width-image-section img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	display: block;
}

.dimension-wrapper {
	padding: 1.625rem 1.125rem;
	background-color: #ffffff;
	border-radius: 0.625rem;
	overflow: hidden;
}

.dimension-box-middle {
	max-width: 50px;
	text-align: center;
	width: 100%;
	font-size: 2rem;
	color: #000;
}

.dimension-box-middle i {
	margin-top: 1.45rem;
}

.dimension-box .form-control,
.dimension-box .form-select {
	height: 44px;
	border-radius: 6px;
	padding: 10px 15px;
	font-family: "Montserrat", sans-serif;
	color: #000;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.075);
	font-size: 14px;
}

.circle-arrow-bg-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none !important;
	/* Outer border */
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background-color: transparent;
	transition: 0.3s ease-in-out;
	position: relative;
	background: transparent url('../images/circle-arrow-left.png') no-repeat center;
	background-size: 100%;
	text-indent: -99999999px;
}

.circle-arrow-bg-btn.circle-arrow-bg-btn-loading-next {
	background: transparent url('../images/circle-arrow.png') no-repeat center;
	background-size: 100%;
	text-indent: -99999999px;
	animation: spin 0.8s linear infinite;
	transform-origin: center;
}

.circle-arrow-bg-btn.circle-arrow-bg-btn-alt {
	background: transparent url('../images/circle-arrow-right.png') no-repeat center;
	background-size: 100%;
	text-indent: -99999999px;
	animation: none;
	transform-origin: center;
}


.circle-arrow-bg-btn .circle-arrow-bg-btn-loading {
	position: absolute;
	inset: 0;
	background: transparent url('../images/circle-arrow.png') no-repeat center;
	background-size: 100%;
	text-indent: -99999999px;
	animation: spin 0.8s linear infinite;
	transform-origin: center;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}


.app-footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	padding: 0.938rem;
	gap: 0.675rem;
}

.footer-call-image {}

.footer-call-image img {
	width: 50px;
	height: 50px;
	display: block;
}

.footer-call-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.top-bar-colm-transparent {
	background-color: transparent !important;
	color: #050505;
	font-size: 1.125rem;
	gap: 0.625rem;
	justify-content: start;
	letter-spacing: 0;
	font-weight: 700;
}

.top-icon {
	display: flex;
	width: 44px;
}

.top-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.top-bar-section-transparent {
	background-color: transparent !important;
}




/* Hide radio input */
.option-card input[type="radio"] {
	width: 0;
	height: 0;
	visibility: hidden;
	border: none !important;
	opacity: 0;
	position: absolute;
}

.option-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0.675rem;
	margin-bottom: 14px;
	background: #fff;
	border-radius: 0.675rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.25s ease;
	position: relative;
}

.option-card:hover {
	transform: translateY(-2px);
}

.color-box {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	overflow: hidden;
	min-width: 50px;
	max-width: 50px;
}

.color-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.option-card span {
	flex-grow: 1;
	font-size: 0.875rem;
	color: #000;
	font-weight: 500;
	letter-spacing: 0;
}

.check-icon {
	width: 24px;
	height: 24px;
	border: 2px solid #000;
	border-radius: 6px;
	position: relative;
	transition: all 0.2s ease;
}

/* Show tick when the radio is selected */
.option-card input[type="radio"]:checked~.check-icon::after {
	content: "";
	width: 12px;
	height: 6px;
	border-left: 3px solid #000;
	border-bottom: 3px solid #000;
	position: absolute;
	top: 6px;
	left: 5px;
	transform: rotate(-45deg);
}

/* Right-side two radio boxes */
.two-cols {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	margin-left: auto;
	min-width: 136px;
	max-width: 250px;
	width: 100%;
}

.check-block {
	display: flex;
	align-items: center;
	position: relative;
}

/* Tick when checked */
.check-block input[type="radio"]:checked~.check-icon::after {
	content: "";
	width: 12px;
	height: 6px;
	border-left: 3px solid #000;
	border-bottom: 3px solid #000;
	position: absolute;
	top: 6px;
	left: 5px;
	transform: rotate(-45deg);
}

.color-box-top {
	border: none !important;
	height: auto;
	max-width: 56px;
	width: 100%;
	border-radius: 0 !important;
}

.option-group-colour-section .option-card span {
	width: 100%;
	min-width: 120px;
	max-width: 120px;
}

.option-card-head {
	font-weight: 600;
	color: #000;
	letter-spacing: 0;
	font-size: 0.875rem;
	background-color: transparent !important;
	box-shadow: none;
	padding-top: 0;
	padding-bottom: 0;
}

.delivery-option-main-container {
	width: 100%;
}

.delivery-icon {
	display: flex;
	justify-content: center;
	width: 100%;
}

.delivery-icon img {
	width: 50px;
	height: auto;
	display: block;
}

.delivery-option-group .option-card {
	width: 160px;
	height: 160px;
}

.delivery-option-text {
	width: 100%;
	max-width: 90px;
}




.dash-nav-section {
	display: block;
	width: 100%;
	position: relative;
}

.dash-nav-section ul {
	display: flex;
	gap: 1rem;
	width: 100%;
	justify-content: start;
	overflow: hidden;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	white-space: nowrap;
}

.dash-nav-section ul li {}

.dash-nav-section ul li a {
	color: #000;
	font-size: 1rem;
	letter-spacing: 0.01rem;
	;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	padding: 0.675rem 1rem;
	background-color: transparent;
	border-radius: 0.5rem;
	border: 2px solid #000;
}

.dash-nav-section ul li a i {
	font-size: 1.25rem;
}

.dash-nav-section ul li a:hover,
.dash-nav-section ul li a:focus {
	color: #ffffff;
	background-color: #000;
}

.dash-nav-section {
	padding: 0rem 0;
}

.quote-details-section .color-box {
	border: none;
	border-radius: 0;
	height: auto;
	width: 36px;
	min-width: 36px;
	max-width: 36px;
	margin-right: 0.5rem;
}

.quote-text-top {
	color: #5a5a5a;
	font-size: 13px;
	margin-bottom: 0px;
	letter-spacing: 0.02rem;
}

.quote-text-bottom {
	font-size: 13px;
}

.quote-details-box {
	display: flex;
	align-items: center;
	width: 100%;
	flex-grow: 1;
}


.total-card {
	background: linear-gradient(145deg, #141414, #1c1c1c);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.total-card span {
	font-size: 0.875rem;
}

.total-card hr {
	border-style: dashed;
}

.order-btn {
	position: relative;
	background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
	color: #fff !important;
	font-weight: 700;
	letter-spacing: 0.02rem;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	border: 2px solid #000;
	outline: none;
	text-transform: uppercase;
	font-size: 1rem;
	cursor: pointer;
}

/* Outer white border */
.order-btn::before {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 60px;
	border: 2px solid #000;
	pointer-events: none;
}

/* Hover effect (optional) */
.order-btn:hover {
	background: linear-gradient(145deg, #1a1a1a, #000);
}

.category-main-wrapper .product-box-content {
	width: 100%;
	padding: 0.675rem;
	display: flex;
	text-align: left;
	justify-content: center;
	align-items: center;

}

.category-main-wrapper .product-box-content h4 {
	margin-bottom: 0;
	color: #000;
	font-size: 0.8rem;
	letter-spacing: 0;
}

.category-main-wrapper .product-box {
	padding: 0rem;
	flex-direction: row;
	border-radius: 0.875rem;
	align-items: center;
	transition: all 0.3s ease;
}

.category-main-wrapper .product-box-image {
	border-radius: 0.5rem;
	width: 50%;
	max-width: 50%;
	min-width: 50%;
	max-height: 70px;
	min-height: 70px;
}

.category-main-wrapper .product-box:hover,
.category-main-wrapper .product-box:focus {
	background-color: #000 !important;
	border-color: transparent !important;
}

.category-main-wrapper .product-box:hover .product-box-content h4,
.category-main-wrapper .product-box:focus .product-box-content h4 {
	color: #fff;
}

.app-footer-box {
	flex-grow: 1;
	display: flex;
	width: 100%;
	max-width: 50%;
	justify-content: start;
	align-items: center;
	border-radius: 0.675rem;
	overflow: hidden;
}

.app-footer-box-inner {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 0.675rem 1rem;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
	background-color: #ededed;
	border-radius: 0.675rem;
	border: 2px solid transparent;
}

.app-footer-box-inner:hover,
.app-footer-box-inner:focus {
	border-color: #000;
}

.icon-sm {
	width: 20px;
	height: auto;
	display: block;
}

.footer-call-image img {
	width: 30px;
	height: auto;
	display: block;
	margin-right: 0.4rem;
}

.order-form-details .form-control {
	font-size: 0.825rem;
	color: #000;
	height: 48px;
	padding: 0.675rem 1rem;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.order-form-details textarea.form-control {
	height: auto;
}

.singlecolor .two-cols {
	justify-content: end;
}

.option-group-colour-section .option-card .full-quote-details-box span {
	max-width: 100%;
}

.splash-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30%;
	z-index: 10;
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
}

.splash-btn .order-btn {
	background: #ffffff !important;
	color: #000 !important;
	display: flex;
	gap: 0.3rem;
	border-color: #ffffff !important;
}

.splash-btn .order-btn:before {
	border: 2px solid #fff;
}

.splash-btn .order-btn .icon-sm {
	width: 12px;
	margin-top: -1px;
}

.splash-animate {
	transition: all 0.6s ease-in-out;

}



[x-cloak] {
	display: none !important;
}

.splash-hidden {
	opacity: 0;
	pointer-events: none;
}

/* Visible */
.splash-visible {
	opacity: 1;
}

.splash-slide-out-right {
	transform: translateX(100%);
	opacity: 0;
}

/* Slide out to left */
.splash-slide-out-left {
	transform: translateX(-100%);
	opacity: 0;
}