:root {
	--white: #e8e6e6;
	--black: #000000;
	--grey: #1c1c1c;
	--mid-grey: #161616;
	--gold: #a69254; /*--was #A7951D --*/
	--dark-gold: #887741;
}

html {
  scroll-behavior: smooth;
}
body {
	background-color: var(--black);
}

/* ----------------------------------------------------- Background Styles ------------------------------------------------- */
.bg-grey {
	background-color: var(--grey);
	transition-property: all;
    transition-duration: 500ms;
}
.bg-grey:hover, .bg-mid-grey:hover, .bg-gold:hover {
	background-color: var(--dark-gold);
}
.bg-mid-grey {
	background-color: var(--mid-grey);
	transition-property: all;
    transition-duration: 500ms;
}

.bg-gold {
	background-color: var(--gold);
	transition-property: all;
    transition-duration: 500ms;
}

.bg-gold-gradient {
  background: linear-gradient(rgba(166,146,84,1), rgba(0,0,0,1));
}

/* ----------------------------------------------------- Menu Styles ------------------------------------------------- */

.menu ul {
	padding: 0px;
	margin: 0;
}
.menu li {
	list-style: none;
	display: inline-block;
	padding: 3px 5px;
	background-image: none;
	margin-bottom: 10px;
}

.menu a {
	color: white;
	text-decoration: none;
}


.menu-item-15 {
	background-color: var(--gold) !important;
	color: var(--white) !important;
	padding: 20px;
	border: none !important;
	font-weight: 500;
	margin-top: 20px;
}

.menu-item-14 {
	background-color: transparent!important;
	color: var(--white) !important;
	padding: 20px;
	border: 1px solid var(--gold);
	font-weight: 500;
	margin-top: 20px;
}

.menu-item-84 {
	background-color: transparent!important;
	color: var(--white) !important;
	padding: 20px;
	border: 1px solid var(--gold);
	font-weight: 500;
	margin-top: 20px;
}

.menu-item-14:hover {
	background-color: var(--gold);
	color: var(--white) !important;
}

.menu-item-84 {
	background-color: var(--gold);
	color: var(--white) !important;
}





.menu ul li ul {
	position:absolute;
	left:-999em;
	z-index:9999 !important;
	width: auto;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
}
.menu ul li ul li {
	display: block;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 20px;
}
.menu ul li:hover ul, .menu ul li ul:hover {
	left:auto;
}

/** Menu arrows **/
.menu li > a:after {
    content: '  ▾';
	vertical-align: 1px;
}

.menu li > a:only-child:after {
    content: '';
}


/* ----------------------------------------------------- Header And Banner Image Styles ---------------------------------------------------------------- */

header {
	/*position: absolute;*/
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	/*padding: 50px 5%;*/
}

.logo {
	max-width: 200px;
	/*min-width: 200px;*/
	z-index: 99999;
  	position: relative;
}

.banner-image {
	width: 100%;
	height: auto;
	min-height: 75vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0.65);
	background-blend-mode: multiply;
	display: flex;
	flex-direction: column;
}
.banner-overlay {
	min-height: 75vh;
	align-content: center;
}

.back-button {
	background-color: var(--brand-blue);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	display: block;
	font-size: 50px;
	color: var(--white) !important;
	text-decoration: none !important;
	margin: 40px 0;
	border: none;
	cursor: pointer;
}


/* ----------------------------------------------------- Slider Styles ---------------------------------------------------------------- */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px; /* <-- spacing between tiles */
  transition: transform 0.5s ease;
}

.bg-grey {
  background: #1c1c1c;
  color: #fff;
  /*min-height: 280px;*/
}

/*
.content-padding {
  padding: 40px 60px;
}

.content-padding-sm {
  padding: 30px;
}
*/

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 10;
	padding: 0;
}

.left-arrow {
  left: 0px;
}

.right-arrow {
  right: 0px;
}

@media (max-width: 991.98px) {
  .slider {
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .slider {
    gap: 16px;
	width: 90%;
    margin-left: 2px;
  }
}

/* ----------------------------------------------------- Generic Content Styles ---------------------------------------------------------------- */

.content-padding {
	padding: 5%;
}
.content-padding-sm {
	padding: 2.5%;
}
.content-padding-lrg {
	padding: 10%;
}
.content-margin {
	margin: 5% 0;
}
.border-bottom {
	border-bottom: solid 3px var(--gold) !important;
}

.testimonial {
	margin-bottom: 40px;
	padding: 30px;
}

.link-row {
  display: flex;
  justify-content: left;
  gap: 40px;
  flex-wrap: wrap;
}

.link-row a {
	text-decoration: none;
	border-bottom: solid 1px var(--gold);
	padding: 10px;
}

.link-row a:hover {
	text-decoration: none;
	border-bottom: solid 1px var(--gold);
	background-color: var(--gold);
	padding: 10px;
}

.image-block {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay */
.image-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%; /* adjust for stronger/weaker gradient */
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    pointer-events: none;
}

.image-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    max-width: 80%;
    z-index: 2; /* ensures text sits above the gradient */
}

.image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ----------------------------------------------------- Community Content Styles ---------------------------------------------------------------- */

.nxtlvl-community {
  position: relative;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
}

.community-heading {
  position: relative;
  z-index: 5;
  font-size: 6vw;
  line-height: 1;
  margin: 0;
}

.highlight {
  color: #f2d94e;
}

/* Floating images behind text */
.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}

.floating-images img {
  position: absolute;
  width: 480px;
  border-radius: 16px;
  opacity: 0.1;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  filter: brightness(0.5);
}

/* Fade-in active state */
.floating-images img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .floating-images img {
    width: 350px;
  }
}

/*
@media (max-width: 767.98px) {
  .floating-images img {
    width: 150px;
  }
  .community-heading {
    font-size: 1.6rem;
  }
}
*/

/* ----------------------------------------------------- Button and A Styles ---------------------------------------------------------------- */
button {
	cursor: pointer;
	padding: 10px 20px;
	font-weight: 500;
	margin-top: 20px;
	transition-property: all;
    transition-duration: 500ms;
}
.btn-gold  {
	background-color: var(--gold) !important;
	color: var(--white) !important;
	border: none !important;
}
.btn-gold:hover  {
	background: var(--white) !important;
	color: var(--gold) !important;
}

.btn-outline{
	background-color: transparent!important;
	color: var(--white) !important;
	border: 1px solid white;
}

.btn-outline:hover {
	background-color: var(--gold) !important;
	color: var(--white) !important;
	border: 1px solid var(--gold);
}

.field-wrap input[type="submit"] {
  background: var(--gold);
  border: none;
  width: 100% !important;
  padding: 5px;
	cursor: pointer;
	transition-property: all;
    transition-duration: 500ms;
}

.field-wrap input[type="submit"]:hover {
  	background: var(--white) !important;
	color: var(--gold) !important;
}


/* # WooCommerce Cart Icon CSS with FontAwesome 5
---------------------------------------------------------------------------------------------------- */
/*.basket-icon {
	margin: -5px 10px 0;
}*/
.basket-icon li {
	list-style: none;
}
.cart-contents {
    position: relative;
    display: flex !important;
    flex-flow: column nowrap;
    justify-content: center;
}

.cart-contents::before {
	font-family: FontAwesome;
    font-weight: 900;	
    content: "\f291" !important;
    font-size: 22px;
	color: var(--navy-blue);
}

.cart-contents:hover {
    text-decoration: none;
}

.cart-contents-count {
	position: absolute;
    	top: 20px;
   	right: -8px;
   	transform: translateY(-105%) translateX(25%);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 12px;
	line-height: 22px;
	height: 22px;
   	width: 22px;
	vertical-align: middle;
	text-align: center;
	color: #fff;
    	background: var(--gold);
    	border-radius: 50%;
    	padding: 1px;  
}
/* ---------------------------------------------- */

/* ----------------------------------------------------- Woocommerce Styles ---------------------------------------------------------------- */

.woocommerce {
	padding: 175px 5% 5% 5%;
}
.woocommerce-products-header {
	padding: 15px;
}
mark.count {
	display: none;
}
.woocommerce .woocommerce-result-count {
    padding-left: 5.8%;
	display: none;
}
.woocommerce .woocommerce-ordering {
    padding-right: 5.8%;
	display: none;
}
.woocommerce ul.products {
    padding: 15px !important;
	width: 80%;
}
.woocommerce li.product {
	border-bottom: solid 3px var(--gold) !important;
	padding-bottom: 5% !important;
}
.woocommerce .woocommerce-breadcrumb {
	display: none;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background-color: var(--gold) !important;
	font-weight: 400;
  	margin-top: 40px;
}

.woocommerce button.button.alt {
	border-radius: 0 !important; 
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
	font-weight: bold;
	color: var(--secondary) !important;
}
/*.woocommerce div.product form.cart {
	padding: 0 20%;
}*/
form.gift-cards_form.cart {
	padding: 0 !important;
}
.gift-card-content-editor.step-content label {
    margin-top: 2px !important;
}
.gift_card_template_button {
    margin-top: 2em !important;
}
.woocommerce ul.products li.product a img {
	transition: transform .2s;
	width: 25% !important;
  	float: right;
}
/*.woocommerce ul.products li.product a img:hover {
	transform: scale(1.15);
}*/
span.price.subscription-price {
	color: var(--primary) !important;
}
ul.wcsatt-options-prompt-radios {
	padding: 0;
}
.woocommerce span.onsale {
	display: grid;
    align-content: space-around;
	width: 75px !important;
    height: 75px !important;
	top: 4% !important;
    right: 12% !important;
	left: auto !important;
	background-color: var(--primary) !important;
}

/*a:hover {
	opacity: 0.6;
}*/
/*a.button.product_type_simple {
	position: absolute !important;
	right: 0;
	margin-top: -35px !important;
}*/

h2.woocommerce-loop-product__title {
	max-width: 75%;
	/*z-index: 9999;
	position: relative;*/
	font-size: 50px !important;
}
h2.woocommerce-loop-category__title {
	font-size: 50px !important;
}
.woocommerce-loop-category__title {
	z-index: 9999;
	position: relative;
}
.woocommerce ul.products li.product .price {
	width: 75%;
}

/*---Category page---*/
.category-banner {
	height: 65vh;
}
.number {
	max-width: 30%;
	padding-right: 10px;
}
/*.term-description {
	padding: 5.8% 5.8% 2% 5.8%;
}*/

/*---Product page---*/
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	float: right !important;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	float: none !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	text-align: center;
}
.woocommerce div.product div.images {
}
.woocommerce #content div.product .woocommerce-tabs, .woocommerce div.product .woocommerce-tabs, .woocommerce-page #content div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs {
	padding: 5.8%;
}
.related.products h2 {
	padding-left: 5.8%;
}
/*
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 20% !important;
}*/
.woocommerce div.product p.price, .woocommerce div.product span.price {
	margin-top: 10px;
}
/*---Quantity---*/
.woocommerce div.product form.cart div.quantity {
	border: 1px solid var(--primary);
	border-radius: 0;
	padding: 3px;
	float: none !important;
	width: 50%;
	margin: 10px auto !important;
	display: none !important;
}
form.gift-cards_form.cart div.quantity {
	text-align: center !important;
	width: 100% !important;
}
input.minus, input.plus {
	border: 0;
	padding: 2px 14px;
	background: #fff;
}
.woocommerce .quantity input[type="number"] {
	border: 0 !important;
}
.woocommerce div.product form.cart .button {
	border-radius: 0 !important;
	font-weight: normal;
	float: none !important;
	width: 50%;
	margin-bottom: 10px;
	cursor: pointer;
}
.woocommerce div.product form.cart .button.gift_card_add_to_cart_button {
	width: 100% !important;
}

.category-description {
}

.sidebar {
	display: none !important;
}

sidebar {
	display: none !important;
}

.product__content img, .woocommerce-product-details__short-description img { /*removed:  */
	margin: 0 15px 0px 0;
    float: left;
}

.product_meta {
	display: none !important;
}

.woocommerce div.product div.summary {
	margin-top: 3%;
}

.related.products {
	display: none;
}

/** woocommerce cart **/
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    max-width: 50% !important;
	width: 50% !important;
	padding-left: 0 !important;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    max-width: 50% !important;
	width: 50% !important;
}

.woocommerce-input-wrapper {
	width: 100%;
}
#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
	padding: 1em 2em 1em 3.5em;
	background: none;
}


/*
#tab-description {
	display: none !important;
}
*/
.woocommerce div.product .woocommerce-tabs {
	padding: 0 !important;
}
#tab-title-description {
	display: none !important;
}
#tab-title-additional_information, #tab-additional_information {
	display: none !important;
}

.wpsf-product-title {
	text-align: left;
}

#wps-slider-section .wps-product-section:not(.sp-wps-custom-template) .wpsf-product-title {
	font-weight: 400 !important;
}

.woocommerce a.button {
	background-color:  var(--gold) !important;
	text-align: center !important;
	border: none!important;
	border-radius: 0 !important;
	color: var(--white) !important;
	text-decoration: none !important;
	margin-right: 5px;
	font-weight: 400 !important;
	transition-property: all;
    transition-duration: 500ms;
	padding: 10px;
}

.wc-block-components-button {
	background-color:  var(--gold) !important;
	text-align: center !important;
	border: none!important;
	border-radius: 0 !important;
	color: var(--white) !important;
	text-decoration: none !important;
	margin-right: 5px;
	font-weight: 400 !important;
	transition-property: all;
    transition-duration: 500ms;
	padding: 10px;
}

.woocommerce a.button:hover {
	background-color:  var(--white) !important;
	color: var(--gold) !important;
	text-decoration: none !important;
	cursor: pointer;
}
.wc-block-components-button:hover {
	background-color:  var(--white) !important;
	color: var(--gold) !important;
	text-decoration: none !important;
	cursor: pointer;
}

[type="reset"], [type="submit"] {
	background-color:  var(--gold) !important;
	text-align: center !important;
	border: none;
	color: var(--white) !important;
	font-size: 15px;
	padding: 10px;
	text-decoration: none !important;
	margin-right: 5px;	
}
.woocommerce div.product form.cart .variations select {
	background-color:  var(--white) !important;
}
.wc-block-cart__submit-button {
	background-color:  var(--gold) !important;
}
.woocommerce ul.products li.product .price .from {
	font-size: initial !important;
	color:  var(--white) !important;
}
.wc-blocks-components-select .wc-blocks-components-select__label, .wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
	color: #444 !important;
}
.woocommerce div.product p.stock {
	color:  var(--gold) !important;
}
.woocommerce-message::before {
	color:  var(--gold) !important;
}
.woocommerce-message {
	border-top-color: var(--gold) !important;
}
#add_payment_method #payment div.payment_box p:last-child, .woocommerce-cart #payment div.payment_box p:last-child, .woocommerce-checkout #payment div.payment_box p:last-child {
	color: #000 !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	background: var(--grey) !important;
}

/* ------ Ninja forms styles ------ */
.nf-form-fields-required {
	font-size: 13px;
  	padding-bottom: 15px;
}
.nf-field-element input, .nf-field-element select {
	height: 35px !important;
}

/* ----------------------------------------------------- Footer Styles ---------------------------------------------------------------- */
footer {
	padding: 50px 5%;
	background-color: white !important;
}
footer p, footer a {
	color: black;
	font-size: 14px;
}


/* ----------------------------------------------------- 2200px + ---------------------------------------------------------------- */

@media only screen and (min-width : 2200px) {
}


/* ----------------------------------------------------- Smaller than 2200px ----------------------------------------------------- */

@media only screen and (max-width : 2200px) {
}


/* ----------------------------------------------------- Smaller than 1800px ----------------------------------------------------- */

@media only screen and (max-width : 1800px) {
}


/* ----------------------------------------------------- Smaller than 1750px ----------------------------------------------------- */

@media only screen and (max-width : 1750px) {
}


/* ----------------------------------------------------- Smaller than 1650px ----------------------------------------------------- */

@media only screen and (max-width : 1650px) {	
}


/* ----------------------------------------------------- Smaller than 1550px ----------------------------------------------------- */

@media only screen and (max-width : 1550px) {
}


/* ----------------------------------------------------- Smaller than 1450px ----------------------------------------------------- */

@media only screen and (max-width : 1450px) {
}


/* ----------------------------------------------------- Smaller than 1350px ----------------------------------------------------- */

@media only screen and (max-width : 1350px) {
	.slider-image {
		width: calc(50% - 10px);
		min-width: calc(50% - 10px);
	}
}


/* ----------------------------------------------------- Smaller than 1250px ----------------------------------------------------- */

@media only screen and (max-width : 1250px) {
} 


/* ----------------------------------------------------- Smaller than 1125px ----------------------------------------------------- */

@media only screen and (max-width : 1125px) {
	
	
}


/* ----------------------------------------------------- Smaller than 1080px ----------------------------------------------------- */
@media only screen and (max-width : 1080px) {
	.caption-wrap .caption {
 	   font-size: 30px;
	}
}


/* ----------------------------------------------------- Smaller than 1024px - iPad landscape ----------------------------------------------------- */

@media only screen and (max-width : 1024px) {	
	.testimonial {
		margin-bottom: 40px;
		padding: 18px;
	}
	.bg-orange img {
    	max-width: 50px;
	}
}


/* ----------------------------------------------------- Smaller than 991px ------------------------------------------------------ */

@media only screen and (max-width : 991px) {
	.caption-wrap .caption {
 	   	font-size: 25px;
		padding: 16px 20px !important;
	}
	.menu li {
		padding: 1px 12px 2px 12px;
	}
	.banner-overlay {
		min-height: 80vh;
		padding-top: 100px !important;
	}
}

/* ----------------------------------------------------- Smaller than 870px ------------------------------------------------------ */

@media only screen and (max-width : 870px) {	

}

/* ----------------------------------------------------- Smaller than 800px ------------------------------------------------------ */

@media only screen and (max-width : 800px) {	
	
}


/* ----------------------------------------------------- Smaller than 768px - iPad portrait ------------------------------------------------------ */

@media only screen and (max-width : 768px) {
	.mobile-center {
		text-align: center !important;
	}
	.mobile-left {
		text-align: left !important;
	}
	.mobile-margin-top {
		margin-top: 20px;
	}
	.content-padding-sm {
		padding: 5%;
	}
	.metaslider .caption-wrap {
	    width: 90% !important;
	}
	.banner-image {
		min-height: 50vh;
	}
	.logo {
		max-width: 165px;
	}
	.slider-container {
		margin-bottom: 30px;
	}
	.woocommerce {
		padding: 130px 5% 5% 5%;
	}
	.woocommerce ul.products {
		width: 100%;
	}
	.woocommerce ul.products[class*="columns-"] li.product, .woocommerce-page ul.products[class*="columns-"] li.product {
		width: 100% !important;
	}
	.woocommerce ul.products li.product a img {
		width: 33% !important;
	}
	h2.woocommerce-loop-product__title {
		max-width: 65%;
		font-size: 35px !important;
	}

}


/* ----------------------------------------------------- Smaller than 700px ------------------------------------------------------ */

@media only screen and (max-width : 700px) {
}

/* ----------------------------------------------------- Smaller than Mobile ----------------------------------------------------- */

@media only screen and (max-width : 650px) {
	.psac-slider-and-carousel .owl-nav {
		width: 118% !important;
		left: -9%;
	}
	
	.psac-slider-and-carousel .owl-nav .owl-next, .psac-slider-and-carousel .owl-nav .owl-prev {
    	background: rgba(255,255,255,1) !important;
	}
}


/* ----------------------------------------------------- Smaller than 540px ------------------------------------------------------ */

@media only screen and (max-width : 540px) {	

}


/* ----------------------------------------------------- Smaller than 500px ------------------------------------------------------ */

@media only screen and (max-width : 450px) {

}