/*# sourceMappingURL=./compiled.map */

@charset "UTF-8";

:root {
	--font-family: "pacifico", serif;
	--font-family-secondary: "Poppins", sans-serif;
	--display-lg-size: clamp(1.96rem, calc(1.58rem + 2.15vw), 4rem);
	--display-lg-weight: 700;
	--display-lg-line-height: 1.2;
	--display-lg-letter-spacing: .012em;
	--display-md-size: clamp(1.8rem, calc(1.5rem + 1.68vw), 2.62rem);
	--display-md-weight: 800;
	--display-md-line-height: 1.6;
	--display-md-letter-spacing: .012em;
	--h1-size: clamp(1.66rem, calc(1.43rem + 1.29vw), 2.28rem);
	--h1-weight: 700;
	--h1-line-height: 1.6;
	--h1-letter-spacing: .012em;
	--h2-size: clamp(1.4rem, calc(1.28rem + .69vw), 1.73rem);
	--h2-weight: 600;
	--h2-line-height: 1.6;
	--h2-letter-spacing: .016em;
	--h3-size: clamp(1.29rem, calc(1.2rem + .46vw), 1.51rem);
	--h3-weight: 600;
	--h3-line-height: 1.6;
	--h3-letter-spacing: .016em;
	--h4-size: clamp(1.18rem, calc(1.13rem + .27vw), 1.32rem);
	--h4-weight: 500;
	--h4-line-height: 1.6;
	--h4-letter-spacing: .02em;
	--h5-size: clamp(1.13rem, calc(1.1rem + .19vw), 1.23rem);
	--h5-weight: 500;
	--h5-line-height: 1.6;
	--h5-letter-spacing: .02em;
	--h6-size: clamp(1.09rem, calc(1.07rem + .12vw), 1.15rem);
	--h6-weight: 500;
	--h6-line-height: 1.6;
	--h6-letter-spacing: .02em;
	--body-xl-size: clamp(1.04rem, calc(1.03rem + .06vw), 1.07rem);
	--body-xl-weight: 400;
	--body-xl-line-height: 1.6;
	--body-xl-letter-spacing: .024em;
	--body-size: clamp(1rem, calc(1rem + 0vw), 1rem);
	--body-weight: 400;
	--body-line-height: 1.6;
	--body-letter-spacing: .024em;
	--body-sm-size: clamp(.96rem, calc(.97rem + -.05vw), .93rem);
	--body-sm-weight: 400;
	--body-sm-line-height: 1.6;
	--body-sm-letter-spacing: .024em;
	--caption-lg-size: clamp(.92rem, calc(.94rem + -.1vw), .87rem);
	--caption-lg-weight: 400;
	--caption-lg-line-height: 1.6;
	--caption-lg-letter-spacing: .024em;
	--caption-size: clamp(.88rem, calc(.91rem + -.14vw), .81rem);
	--caption-weight: 400;
	--caption-line-height: 1.7;
	--caption-letter-spacing: .024em;
	--caption-sm-size: clamp(.85rem, calc(.88rem + -.18vw), .76rem);
	--caption-sm-weight: 300;
	--caption-sm-line-height: 1.7;
	--caption-sm-letter-spacing: .024em;
	--overline-size: clamp(.81rem, calc(.85rem + -.21vw), .71rem);
	--overline-weight: 500;
	--overline-line-height: 1.7;
	--overline-letter-spacing: .024em;
}

[aria-label="Menu Trigger"] {
	cursor: pointer;
}

html body {
	font-family: var(--font-family-secondary);
	font-size: var(--body-size);
	font-weight: var(--body-weight);
	line-height: var(--body-line-height);
	letter-spacing: var(--body-letter-spacing);
	color: #000;
}

html body h1, html body .h1 {
	font-size: var(--h1-size);
	font-weight: var(--h1-weight);
	line-height: var(--h1-line-height);
	letter-spacing: var(--h1-letter-spacing);
}

html body h2, html body .h2 {
	font-family: var(--font-family);
	font-size: var(--h2-size);
	font-weight: var(--h2-weight);
	line-height: var(--h2-line-height);
	letter-spacing: var(--h2-letter-spacing);
}

html body h3, html body .h3 {
	font-size: var(--h3-size);
	font-weight: var(--h3-weight);
	line-height: var(--h3-line-height);
	letter-spacing: var(--h3-letter-spacing);
}

html body h4, html body .h4 {
	font-size: var(--h4-size);
	font-weight: var(--h4-weight);
	line-height: var(--h4-line-height);
	letter-spacing: var(--h4-letter-spacing);
}

html body h5, html body .h5 {
	font-size: var(--h5-size);
	font-weight: var(--h5-weight);
	line-height: var(--h5-line-height);
	letter-spacing: var(--h5-letter-spacing);
}

html body h6, html body .h6 {
	font-size: var(--h6-size);
	font-weight: var(--h6-weight);
	line-height: var(--h6-line-height);
	letter-spacing: var(--h6-letter-spacing);
}

html body header {
	padding: 20px 0;
	background: white;
	position: relative;
	z-index: 1000;
}

html body header .search-form {
	position: relative;
	display: flex;
	align-items: center;
}

html body header .search-form .search-field {
	padding: 8px 40px 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	width: 200px;
	transition: all .3s ease;
}

html body header .search-form .search-field:focus {
	outline: none;
	border-color: #333;
	width: 250px;
}

html body header .search-form .search-field::placeholder {
	color: #999;
}

html body header .search-form .search-submit {
	position: absolute;
	right: 8px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	transition: opacity .3s ease;
}

html body header .search-form .search-submit:hover {
	opacity: .7;
}

html body header .search-form .search-submit svg {
	width: 20px;
	height: 20px;
}

html body header#masthead {
	padding: 0 !important;
	position: relative !important;
}

html body header#masthead #mega-menu-wrap-menu-1 {
	background: none !important;
}

html body header .header-left-icons {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
}

@media (max-width:767px) {
	html body header .header-left-icons {
		display: none;
	}
}

html body header .header-left-icons .account-icon, html body header .header-left-icons .search-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #333;
	background: none;
	border: none;
	cursor: pointer;
	transition: color .3s;
}

html body header .header-left-icons .account-icon:hover, html body header .header-left-icons .search-icon:hover {
	color: #000;
}

html body header .header-left-icons .account-icon svg, html body header .header-left-icons .search-icon svg {
	width: 24px;
	height: 24px;
}

html body header .header-right-icons {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
}

html body header .header-right-icons .facebook-icon, html body header .header-right-icons .instagram-icon {
	width: 24px;
	height: 24px;
	filter: invert(1);
}

html body header .header-right-icons .cart-icon {
	position: relative;
}

html body header .header-right-icons span.cart-count {
	background: red;
	color: white;
	font-size: 10px;
	font-weight: bold;
	height: 18px;
	line-height: 18px;
	position: absolute;
	width: 18px;
	border-radius: 50%;
	right: -8px;
	top: -8px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

html body .inner-banner {
	margin-top: -150px;
	height: auto;
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: black;
}

html body .inner-banner h1 {
	font-size: var(--display-lg-size);
	font-weight: var(--display-lg-weight);
	line-height: var(--display-lg-line-height);
	letter-spacing: var(--display-lg-letter-spacing);
}

html body .inner-banner .homeslider {
	position: relative;
	padding-top: 150px;
	padding-bottom: 80px;
	min-height: 85vh !important;
	background-size: cover;
	background-position: top center;
}

@media (max-width:768px) {
	html body .inner-banner .homeslider {
		padding-top: 100px;
		padding-bottom: 40px;
		min-height: 60vh !important;
		background-position: center center;
	}
}

@media (max-width:576px) {
	html body .inner-banner .homeslider {
		padding-top: 80px;
		padding-bottom: 30px;
		min-height: 50vh !important;
	}
}

html body .inner-banner .homeslider::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2));
	pointer-events: none;
}

html body .inner-banner .homeslider .img-wrap {
	background: none !important;
}

html body #heroBanner {
	margin-top: -150px;
	height: auto;
	background-color: black;
	overflow: hidden;
}

html body #heroBanner h1 {
	font-size: var(--display-lg-size);
	font-weight: var(--display-lg-weight);
	line-height: var(--display-lg-line-height);
	letter-spacing: var(--display-lg-letter-spacing);
}

html body #heroBanner .home-slider {
	position: relative;
	padding-top: 150px;
	padding-bottom: 80px;
	min-height: 85vh !important;
	background-size: cover;
	background-position: top center;
	display: flex;
	align-items: center;
}

html body #heroBanner .home-slider::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2));
	pointer-events: none;
}

html body #heroBanner .home-slider .banner-cont-box a {
	color: #fff;
	background: #d0af5f;
	display: inline-block;
	padding: 16px 47px;
	border-radius: 50px;
	border: 1px solid #d0af5f;
	transition: .2s;
}

html body .quotes {
	position: absolute;
	top: -50px;
	left: -150px !important;
	opacity: .05;
}

html body .product-img img {
	max-width: 100%;
	height: auto;
}

html body span.woocommerce-Price-amount.amount {
	font-size: var(--h5-size);
	font-weight: var(--h5-weight);
}

html body .comment-form {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 8px;
}

html body .comment-form .comment-notes {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

html body .comment-form .comment-notes .required {
	color: #e74c3c;
}

html body .comment-form .comment-form-rating {
	margin-bottom: 25px;
}

html body .comment-form .comment-form-rating label {
	display: block;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

html body .comment-form .comment-form-rating label .required {
	color: #e74c3c;
}

html body .comment-form .comment-form-rating .stars {
	margin: 0;
}

html body .comment-form .comment-form-rating .stars span[role="group"] {
	display: inline-flex;
	gap: 5px;
}

html body .comment-form .comment-form-rating .stars span[role="group"] a {
	color: #ddd;
	font-size: 24px;
	text-decoration: none;
	transition: color .2s;
}

html body .comment-form .comment-form-rating .stars span[role="group"] a:before {
	content: "★";
}

html body .comment-form .comment-form-rating .stars span[role="group"] a:hover, html body .comment-form .comment-form-rating .stars span[role="group"] a[aria-checked="true"] {
	color: #f39c12;
}

html body .comment-form .comment-form-comment, html body .comment-form .comment-form-author, html body .comment-form .comment-form-email {
	margin-bottom: 20px;
}

html body .comment-form .comment-form-comment label, html body .comment-form .comment-form-author label, html body .comment-form .comment-form-email label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

html body .comment-form .comment-form-comment label .required, html body .comment-form .comment-form-author label .required, html body .comment-form .comment-form-email label .required {
	color: #e74c3c;
}

html body .comment-form .comment-form-comment textarea, html body .comment-form .comment-form-comment input[type="text"], html body .comment-form .comment-form-comment input[type="email"], html body .comment-form .comment-form-author textarea, html body .comment-form .comment-form-author input[type="text"], html body .comment-form .comment-form-author input[type="email"], html body .comment-form .comment-form-email textarea, html body .comment-form .comment-form-email input[type="text"], html body .comment-form .comment-form-email input[type="email"] {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color .3s;
}

html body .comment-form .comment-form-comment textarea:focus, html body .comment-form .comment-form-comment input[type="text"]:focus, html body .comment-form .comment-form-comment input[type="email"]:focus, html body .comment-form .comment-form-author textarea:focus, html body .comment-form .comment-form-author input[type="text"]:focus, html body .comment-form .comment-form-author input[type="email"]:focus, html body .comment-form .comment-form-email textarea:focus, html body .comment-form .comment-form-email input[type="text"]:focus, html body .comment-form .comment-form-email input[type="email"]:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, .1);
}

html body .comment-form .comment-form-comment textarea, html body .comment-form .comment-form-author textarea, html body .comment-form .comment-form-email textarea {
	resize: vertical;
	min-height: 120px;
}

html body .comment-form .comment-form-cookies-consent {
	margin-bottom: 20px;
}

html body .comment-form .comment-form-cookies-consent input[type="checkbox"] {
	margin-right: 8px;
}

html body .comment-form .comment-form-cookies-consent label {
	display: inline;
	font-weight: normal;
	color: #666;
	font-size: 14px;
}

html body .comment-form .form-submit {
	margin-top: 25px;
}

html body .comment-form .form-submit .cf-turnstile {
	margin-bottom: 15px;
}

html body .comment-form .form-submit .submit {
	background: #3498db;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background .3s;
}

html body .comment-form .form-submit .submit:hover {
	background: #2980b9;
}

html body .comment-form .form-submit .submit:active {
	transform: translateY(1px);
}

html body .variations .variation-item {
	margin-bottom: 20px;
}

html body .variations .variation-item .variation-label {
	margin-bottom: 8px;
}

html body .variations .variation-item .variation-label label {
	font-weight: 600;
	color: #333;
	font-size: 14px;
	text-transform: capitalize;
}

html body .variations .variation-item .variation-value select {
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	background-color: white;
	cursor: pointer;
	transition: border-color .3s;
}

html body .variations .variation-item .variation-value select:hover {
	border-color: #999;
}

html body .variations .variation-item .variation-value select:focus {
	outline: none;
	border-color: #3498db;
}

html body .variations .variation-item .variation-value .reset_variations {
	display: inline-block;
	margin-left: 10px;
	font-size: 13px;
	color: #666;
	text-decoration: none;
}

html body .variations .variation-item .variation-value .reset_variations:hover {
	color: #3498db;
}

html body .single .product-type-variable .qib-container {
	position: relative;
	top: unset;
	left: unset;
	width: auto;
	display: block;
	right: unset;
}

html body .single .qib-container:before {
	display: none !important;
}

html body .related.products .woocommerce-loop-product__title {
	font-family: var(--font-family-secondary);
	font-size: var(--h4-size);
}

html body .del h2 {
	font-size: var(--h4-size);
	font-family: var(--font-family-secondary);
}

#mega-menu-wrap-menu-1 .mega-menu-toggle {
	background: none !important;
}

#menu-strip button.search-icon.me-3 {
	background: none !important;
	border: none !important;
}

#menu-strip .facebook-icon, #menu-strip .instagram-icon {
	width: 40px;
	display: inline-block;
}

#menu-strip form.search-form.search-dropdown {
	position: absolute;
	top: 45px;
	width: 100%;
}

#menu-strip form.search-form .search-field {
	width: 100% !important;
}

#rmp_menu_trigger-1098 {
	display: none !important;
}
