@font-face {
	font-family: "Fairplex Wide OT";
	src: url("../fonts/fairplexwideot-book-webfont.eot");
	src: url("../fonts/fairplexwideot-book-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/fairplexwideot-book-webfont.woff2") format("woff2"), url("../fonts/fairplexwideot-book-webfont.woff") format("woff"), url("../fonts/fairplexwideot-book-webfont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Fairplex Wide OT", serif;
	font-weight: 400;
	font-optical-sizing: auto;
	color: #420a0e;
	font-size: 18px;
	line-height: 30px;
	background-color: #fcfaf0;
}

.container {
	width: 96%;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header Styles */
.site-header {
	position: relative;
	width: 100%;
	z-index: 10;
	padding: 20px 0;
	background-color: #fcfaf0;
	transition: all 0.3s ease;
}

/* Transparent header style for homepage */
.site-header.transparent {
	position: fixed;
	top: 0;
	background-color: transparent;
}

/* Fixed header style for scroll */
.site-header.fixed {
	position: fixed;
	top: 0;
	background-color: #fcfaf0;
	z-index:9999;
}

.fixed .dropdown {
	background-color: #fcfaf0;
}

.site-header .main-nav ul li a,
.site-header .secondary-nav ul li a {
	color: #420a0e;
}

.site-header.transparent .main-nav ul li a,
.site-header.transparent .secondary-nav ul li a {
	color: #fcfaf0;
}

.header-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	max-width: 1200px;
}

.logo {
	display: flex;
	justify-content: center;
	grid-column: 2;
}

.logo a {
	display: block;
}

.logo img {
	max-height: 24px;
	width: auto;
	transition: all 0.3s ease;
}

/* Default logo (colored version) */
.logo img:first-child {
	display: block;
}

/* White logo for transparent header */
.logo img:last-child {
	display: none;
}

/* Show white logo on transparent header */
.site-header.transparent .logo img:first-child {
	display: none;
}

.menu-open .site-header.transparent .logo img:first-child {
	display: block;
}

.site-header.transparent .logo img:last-child {
	display: block;
}

.menu-open .site-header.transparent .logo img:last-child {
	display: none;
}

.main-nav {
	grid-column: 1;
}

.secondary-nav {
	grid-column: 3;
	justify-self: end;
}

.main-nav ul,
.secondary-nav ul {
	display: flex;
	list-style: none;
}

.main-nav ul li,
.secondary-nav ul li {
	margin: 0 50px;
	position: relative;
}

@media (max-width: 1100px) {
	.main-nav ul li,
	.secondary-nav ul li {
		margin: 0 20px;
	}
}

.main-nav ul > li:first-child {
	margin-left: 0;
}

.secondary-nav ul > li:last-child {
	display: none;
	margin-right: 0;
}

/* Dropdown styles */
.main-nav .dropdown {
	position: absolute;
	top: 30px;
	left: 0;
	/* background-color: #fcfaf0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	display: none;
	flex-direction: column;
	z-index: 100;
}

.main-nav .dropdown li {
	margin: 0;
	padding: 0;
}

.main-nav .dropdown li a {
	padding: 0 12px;
	display: block;
	white-space: nowrap;
	/* color: #420a0e !important; */
	font-size: 13px;
}

.main-nav li.has-dropdown:hover .dropdown {
	display: flex;
}

/* Dropdown indicator */
/* .main-nav li.has-dropdown > a::after {
	content: "";
	font-size: 8px;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
	transition: transform 0.3s ease;
	background-image: url("../images/arrow.png");
	background-size: cover;
	background-position: center;
	width: 10px;
	height: 6px;
}

.site-header.transparent .main-nav li.has-dropdown > a::after {
	background-image: url("../images/arrow-white.png");
}

.main-nav li.has-dropdown:hover > a::after {
	transform: rotate(180deg);
} */
.main-nav li.has-dropdown:hover .fa-angle-down {
	transform: rotate(180deg);
}

.fa-angle-down {
	font-size: 17px;
	color: currentColor;
	transition: 0.2s ease-in-out;
	transform: translateY(2px);
}

.main-nav ul li a,
.secondary-nav ul li a {
	color: #fff;
	font-size: 14px;
	letter-spacing: 0px;
	transition: opacity 0.3s ease;
}

/*.main-nav ul li a:hover,
.secondary-nav ul li a:hover {
	opacity: 0.7;
}*/

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-image {
	height: 100%;
	width: 100%;
	position: relative;
}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: opacity 0.5s ease;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.hero_down_angle {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 30px;
	color: #fcfaf0;
	z-index: 1000;
	font-size: 35px;
}

@keyframes bounceUpDown {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-20px);
	}
}

/* Intro Section */
.intro {
	padding: 82px 0;
	text-align: center;
}

#introhp
{
	padding: 180px 0;
}


@media (max-width: 767px) {
	.intro {
		padding: 40px 0 10px;
	}
}

@media (min-width: 1440px) {
	.intro .container {
		max-width: 39%;
	}
}

.intro p {
	margin-bottom: 20px;
}

.intro p:last-child
{
	margin-bottom: 0px;
}

/* Projects Section */
.projects {
	padding: 0px 0 80px;
}

.project-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 82px;
}

.project-gallery a
{
	cursor:default;
}

.project-gallery.col-2 {
	grid-template-columns: repeat(2, 1fr);
}

.project-gallery.col-1 {
	grid-template-columns: repeat(1, 1fr);
}

.project-gallery.style-2,
.project-gallery.style-3 {
	gap: 82px;
}

.project-gallery.style-3 .project-item:nth-child(5n),
.project-gallery.style-3 .project-item:nth-child(10n),
.project-gallery.style-3 .project-item:nth-child(15n),
.project-gallery.style-3 .project-item:nth-child(20n) {
	grid-column: 1 / -1;
}

.project-item {
	overflow: hidden;
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
}

.project-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.8s ease;
}

/* Black overlay only if span exists */
.project-item:has(span)::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.5s ease;
}

/* Show overlay on hover */
.project-item:has(span):hover::after {
	opacity: 1;
}

/* Text styling */
.project-item span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateY(20px);
	color: white;
	font-size: 1.5rem;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
	z-index: 2;
}

/* Animate text into view */
.project-item:hover span {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
}

#projectlistgrid .project-item:hover img {
	/*transform: scale(1.05);*/
}

#projectlistgrid .project-gallery .project-item::after {
	content: attr(data-title);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fcfaf0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	text-align: center;
	font-size: 25px;
}

#projectlistgrid .project-item:hover::after {
	opacity: 1;
}

.view-all-btn {
	text-align: center;
}

.slider_wrapp {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.slider_wrapp img {
	transition: 0.3s ease-in-out;
}

.slider_wrapp img:hover {
	/*scale: 1.1;*/
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border: 1px solid #420a0e;
	color: #420a0e;
	border-radius: 50px;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: #420a0e;
	color: #fcfaf0;
}

/* About Hero Section */
.about-hero {
	padding: 80px;
	position: relative;
	min-height: 700px;
	overflow: hidden;
}

.about-hero .container {
	/* max-width: 100%; */
	display: flex;
	gap: 50px;
	align-items: center;
}

.about-content {
	display: grid;
	/* grid-template-columns: 1fr 1fr; */
	gap: 260px;
	align-items: center;
	margin-top: 50px;
}

.about-text {
	max-width: 450px;
	margin: 0px auto;
}

.about-text h1 {
	font-size: 25px;
	margin-bottom: 30px;
}

.about-text p {
	margin-bottom: 20px;
}

.about-text .btn {
	margin-top: 20px;
}

.about-image {
	/* position: absolute; */
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: 0.4s ease-in;
}

.about-image img:hover {
	/*scale: 1.1;*/
}

/* Our Values Section */
.our-values {
	padding: 0px 0 60px 0px;
}

.our-values h2 {
	margin-bottom: 40px;
	font-size: 25px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.value-item {
	position: relative;
	color: #fff;
	overflow: hidden;
	transition: all 0.5s ease;
	height: 400px;
}

.value-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.value-item h3 {
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.value-item p {
	font-size: 13px;
	line-height: 24px;
	text-align: center;
}

.value-content {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px 50px;
	transition: bottom 0.5s ease;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}

.value-item:nth-child(2) .value-content,
.value-item:nth-child(4) .value-content {
	color: rgb(66, 10, 14);
}

.value-item:hover .value-content {
	bottom: 0;
}

/* Background colors are set via JavaScript from data-bg-color attributes */

@media (max-width: 1200px) {
	.about-content {
		gap: 60px;
	}

	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.about-hero {
		padding: 0px 0 40px;
		min-height: inherit;
	}

	.about-image {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 0px;
		margin-top: 30px;
	}

	.about-text {
		order: 2;
	}

	.about-image {
		order: 1;
	}

	.our-values {
		padding: 20px 0 40px;
	}

	.our-values h2 {
		margin-bottom: 20px;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.value-item {
		height: 500px;
	}
}

@media (max-width: 500px) {
	.about-content {
		margin-top: 20px;
	}

	.about-text h1 {
		margin-bottom: 20px;
	}

	.value-item {
		height: 350px;
	}
}

/* Process Section */
.process {
	padding: 20px 0 0px 0;
}

@media (max-width: 767px) {
	.process {
		padding: 20px 0 40px 0;
	}
}

.process-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.process-image img {
	width: 100%;
	height: auto;
}

.process-info-inner {
	padding: 0 100px 0 30px;
}

@media (max-width: 767px) {
	.process-info-inner {
		padding: 0;
	}
}

.process-info h2 {
	font-size: 25px;
	margin-bottom: 30px;
	font-weight: 400;
}

.process-steps {
	margin-bottom: 25px;
}

.process-step {
	margin-bottom: 25px;
}

.process-step h3 {
	font-size: 18px;
	margin-bottom: 5px;
	text-underline-offset: 5px;
	font-weight:600;
}

.process .btn {
	margin-top: 20px;
}

/* Instagram Section */
.instagram {
	padding: 82px 0 80px 0;
}

@media (max-width: 767px) {
	.instagram {
		padding: 20px 0 40px 0;
	}
}

.instagram h2 {
	font-size: 24px;
	margin-bottom: 40px;
	font-weight: 400;
}

.instagram-gallery {
	margin-left: -20px;
}

.instagram-item {
	overflow: hidden;
	height:245px !important;
}

.instagram-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.instagram-item:hover img {
	/*transform: scale(1.05);*/
}

/* Footer */
.site-footer {
	background-color: #420a0e;
	color: #fff;
	padding: 60px 0;
}

@media (max-width: 767px) {
	.site-footer {
		padding: 30px 0;
	}
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}

@media (max-width: 767px) {
	.footer-content {
		gap: 10px;
	}
}

.footer-col {
	text-align: center;
}

.footer-col h3 {
	font-size: 13px;
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-weight: 400;
	color:#fcfaf0;
}

.footer-col p,
.footer-col a {
	font-size: 12px;
	color:#fcfaf0;
	line-height: 17px;
}

.footer-col a:hover {
	color:#fcfaf0;
	text-decoration: underline;
}

.footer-col span {
	/* text-decoration: underline; */
	text-underline-offset: 2px;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.logo-mark {
	font-size: 36px;
	margin-bottom: 15px;
	width:80px;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icon {
	font-size: 14px;
	color: rgba(252, 250, 240, 1);
	transition: color 0.3s ease;
}

.social-icon:hover {
	color: rgba(252, 250, 240, 0.8);
}

/* Responsive Styles */
@media (max-width: 992px) {
	.about-hero .container {
		max-width: 100%;
		display: flex;
		gap: 10px;
		align-items: center;
		flex-direction: column-reverse;
	}

	.about-image {
		width: 100%;
	}

	.about-image {
		order: 1;
	}

	.process-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-logo {
		grid-column: span 3;
		margin: 20px 0;
	}
}

/* Mobile Header Styles */
body.menu-open {
	overflow: hidden;
}

.mobile-header {
	display: none;
}

.hamburger-menu {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 20px;
	position: relative;
	z-index: 10;
}

.hamburger-menu span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #420a0e;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) {
	margin-top: 2px;
}

.hamburger-menu span:nth-child(2) {
	transform-origin: center;
}

.hamburger-menu span:nth-child(3) {
	transform-origin: bottom left;
}

.site-header.transparent .hamburger-menu span {
	background-color: #fff;
}

.menu-open .site-header.transparent .hamburger-menu span {
	background-color: #420a0e;
}

.hamburger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(-5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(0, -5px);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fcfaf0;
	z-index: 5;
	margin-top: 60px;
	overflow-y: auto;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu nav ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu nav ul li {
	margin: 10px 0;
	position: relative;
}

.mobile-menu nav ul li a {
	display: block;
	padding: 10px 0;
	color: #420a0e;
	font-size: 18px;
	text-decoration: none;
}

.mobile-menu .dropdown {
	position: static;
	display: none;
	background: none;
	box-shadow: none;
	padding: 0 0 0 20px;
	margin: 10px 0;
}

.mobile-menu .dropdown.active {
	display: block;
}

.mobile-menu li.has-dropdown > a::after {
	content: "+";
	margin-left: 5px;
}

.mobile-menu li.has-dropdown.active > a::after {
	content: "-";
}

@media (max-width: 767px) {
	.desktop-header {
		display: none;
	}

	.mobile-header {
		display: block;
	}

	.hamburger-menu {
		display: block;
	}

	.mobile-header .header-container {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		align-items: center;
	}

	.mobile-header .logo {
		grid-column: 1;
	}

	.mobile-header .hamburger-menu {
		grid-column: 3;
		justify-self: end;
	}

	.project-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.instagram-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.main-nav ul,
	.secondary-nav ul {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.project-gallery {
		grid-template-columns: 1fr;
	}

	.instagram-gallery {
		grid-template-columns: repeat(1, 1fr);
	}

	.project-gallery.col-2 {
		grid-template-columns: 1fr;
	}

	.footer-content {
		/* grid-template-columns: 1fr; */
		text-align: center;
	}
}

/* CB Pages - Hero */
.container-full {
	max-width: inherit;
}

.container-lg {
	max-width: 1400px;
}

.container-md {
	max-width: 1200px;
}

.container-sm {
	max-width: 740px;
}


.page-hero .container img {
	width: 100%;
}

@media (max-width: 767px) {
	.page-hero {
		margin-top: 40px;
	}
}

.intro h2 {
	margin-bottom: 20px;
}

/* More Projects Section */
.more-projects {
	padding: 0px 0 80px;
	overflow: hidden;
	position: relative;
}

.more-projects h2 {
	margin-bottom: 30px;
}

.more-projects-carousel {
	margin: 0 -15px;
	overflow: visible;
}

.more-projects .container {
	overflow: hidden;
	position: relative;
}

.more-projects .container:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #fcfaf0;
	z-index: 1;
}

.more-projects-carousel .more-project-item {
	padding: 0 15px;
	width: 350px;
}

.more-projects-carousel .slick-list {
	overflow: visible !important;
}

.more-projects-carousel .slick-track {
	margin-left: 0;
}

.more-projects-carousel .more-project-item img {
	width: 100%;
	height: auto;
}

.more-projects-carousel .more-project-title {
	margin-top: 15px;
}

.page-breadcumb {
	margin-top: 50px;
	padding-top:39px;
}

.page-breadcumb ul {
	padding-left: 0;
}

.page-breadcumb ul li {
	list-style: none;
	display: inline-block;
	margin-right: 10px;
	position: relative;
}

.page-breadcumb ul li:after {
	position: absolute;
	top: 0;
	bottom: 0px;
	right: -10px;
	content: "|";
}

.page-breadcumb ul li:last-child:after {
	content: "";
	right: 0;
}

/*.page-breadcumb ul li.sgselected a {
	text-decoration: underline;
	text-underline-offset: 4px;
}*/

.page-breadcumb + .projects {
	padding-top: 21px;
}

/* Contact */
.contact-hero {
	width: 100%;
	padding: 0 0 0px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	min-height: 100vh;
	justify-content: center;
}

.contact-map {
	width: 100%;
	height: 100%;
	min-height: 500px;
}

.contact-map-iframe {
	width: 100%;
	height: 100%;
}

.contact-map-iframe iframe {
	width: 100%;
	height: 100%;
	min-height: 500px;
	display: block;
	border: 0;
}

.contact-hero {
	align-items: center;
}

.contact-address {
	width: 100%;
	text-align: center;
}

.contact-address h2 {
	font-size: 25px;
	margin-bottom: 20px;
}

.contact-address p {
	margin-bottom: 20px;
}

.contact-address a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Responsive styles for contact map */
@media (max-width: 992px) {
	.contact-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 20px;
		min-height: auto;
	}

	.contact-map {
		min-height: 400px;
	}

	.contact-map-iframe iframe {
		min-height: 400px;
	}
}

/* Shop Styles */
.shop-section {
	padding: 80px 0 50px 0;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.product-item {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	transition: transform 0.3s ease;
}

.product-image {
	overflow: hidden;
	margin-bottom: 15px;
	background-color: #f5f5f5;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
	/*transform: scale(1.05);*/
}

.product-info {
	padding: 10px 0;
}

.product-info h3 {
	margin-bottom: 5px;
	font-size: 18px;
}

.product-info a {
	text-decoration: none;
	color: inherit;
}

.product-info a h3 {
	transition: color 0.3s ease;
}

.product-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.price {
	color: #e69300;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Responsive Shop Styles */
@media (max-width: 992px) {
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 576px) {
	.shop-section {
		padding: 40px 0 20px 0;
	}

	.shop-grid {
		grid-template-columns: 1fr;
	}

	.product-item {
		margin-bottom: 20px;
	}
}

/* Single product */
.single-shop-section {
	padding: 60px 0;
}

.product-single-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 150px;
	align-items: start;
}

/* Product Gallery */
.product-gallery {
	position: relative;
	overflow: hidden;
}

.product-slider div {
	outline: none;
}

.product-slider img {
	width: 100%;
	height: auto;
}

.product-slider .slick-slide {
	position: relative;
}

/* Product Details */
.product-details {
	position: relative;
}

.product-breadcrumb {
	font-size: 12px;
	line-height: 12px;
	color: rgba(66, 10, 14, 0.7);
	border-bottom: 1px solid rgba(66, 10, 14, 0.7);
	display: inline-block;
}

.product-breadcrumb a {
	color: rgba(66, 10, 14, 0.7);
	transition: color 0.3s ease;
}

.product-title {
	font-size: 25px;
	margin-top: 20px;
	margin-bottom: 15px;
	display: block;
}

.product-price {
	color: #e69300;
	margin-bottom: 10px;
}

.product-options {
	margin-bottom: 50px;
}

.product-options h3 {
	font-size: 12px;
	margin-bottom: 15px;
	display: inline-block;
	text-decoration: underline;
}

.color-options {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.color-option {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-option:hover {
	transform: scale(1.1);
}

.color-option.active {
	transform: scale(1.2);
	z-index: 1;
	box-shadow: 0 0 0 2px #fcfaf0, 0 0 0 3px #420a0e;
}

.color-option.active::after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 14px;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.color-option.white {
	background-color: #fff;
	border: 1px solid #ddd;
}

.color-option.white.active::after {
	color: #420a0e;
	text-shadow: none;
}

.color-option.black {
	background-color: #000;
}

.color-option.blue {
	background-color: #6495af;
}

.color-option.navy {
	background-color: #1c3f59;
}

.color-option.mint {
	background-color: #b6ddd4;
}

.color-option.mint.active::after {
	color: #420a0e;
	text-shadow: none;
}

.color-option.pink {
	background-color: #ec4c6d;
}

.color-option.red {
	background-color: #dc3545;
}

.color-option.yellow {
	background-color: #ffc107;
}

.color-option.yellow.active::after {
	color: #420a0e;
	text-shadow: none;
}

.selected-color-name {
	font-size: 14px;
	color: #777;
	margin-top: 10px;
}

.quantity-selector {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	border: 1px solid #420a0e;
	display: inline-flex;
	margin-right: 10px;
}

.quantity-btn {
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #420a0e;
}

.quantity-input {
	width: 20px;
	height: 40px;
	border: none;
	text-align: center;
	font-size: 16px;
	background: none;
	color: #420a0e;
}

.add-to-basket-btn {
	background-color: transparent;
	color: #420a0e;
	border: 1px solid #420a0e;
	padding: 12px 30px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: inherit;
	margin-bottom: 30px;
}

.add-to-basket-btn:hover {
	background-color: #420a0e;
	color: #fff;
}

/* Product Tabs */
.product-tabs {
	margin-top: 10px;
}

.tab-buttons {
	display: flex;
	margin-bottom: 20px;
}

.tab-btn {
	background: none;
	border: none;
	padding: 10px 0px;
	font-size: 12px;
	cursor: pointer;
	color: #420a0e;
	font-family: inherit;
	position: relative;
	margin-right: 40px;
}

.tab-btn.active {
	color: #420a0e;
}

.tab-btn.active::after {
	content: "";
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #420a0e;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.tab-pane p {
	margin-bottom: 15px;
}

.tab-pane ul {
	padding-left: 20px;
	margin-bottom: 15px;
}

.tab-pane li {
	margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.product-single-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.product-gallery {
		margin-bottom: 20px;
	}
}

@media (max-width: 576px) {
	.single-shop-section {
		padding: 20px 0 30px;
	}

	.product-single-container {
		gap: 10px;
	}

	.tab-buttons {
		flex-wrap: wrap;
	}

	.tab-btn {
		padding: 8px 0;
		font-size: 14px;
	}
}

/* Process */

.design-process {
	background-color: #fcfaf0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.process-items {
	background-color: #e69300;
	overflow: hidden;
}

.process-item {
	border-radius: 5px 5px 0 0;
	padding: 30px;
	color: #fff;
	min-height: 180px;
	display: flex;
	align-items: center;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-top: -12px;
	position: relative;
}

.process-item:hover {
	transform: translateY(-10px);
}

.process-item:nth-child(1) {
	z-index: 1;
	cursor: default;
	background-color: #fcfaf0;
	color: #420a0e;
}

.process-item:nth-child(2) {
	z-index: 2;
	background-color: #504e30;
	color: #fff;
}

.process-item:nth-child(3) {
	z-index: 3;
	background-color: #adc9d2;
	color: #420a0e;
}

.process-item:nth-child(4) {
	z-index: 4;
	background-color: #420a0e;
	color: #fff;
}

.process-item:nth-child(5) {
	z-index: 5;
	background-color: #e69300;
	color: #420a0e;
}

.process-title {
	font-size: 25px;
}

.process-item:nth-child(1):hover {
	transform: translateY(0px);
}

.progress-image {
	background-size: cover;
	background-position: center;
}

/* Responsive styles */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
	.design-process {
		grid-template-columns: 1fr;
	}

	.progress-image {
		min-height: 600px;
	}
}

@media (max-width: 576px) {
	.process-item {
		min-height: 100px;
	}

	.process-item:nth-child(1) {
		min-height: 80px;
	}

	.process-title {
		font-size: 18px;
	}
}

/* Process Popup Styles */
.process-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fcfaf0;
	z-index: 1000;
	display: none;
	overflow-y: auto;
}

.process-popup.active {
	display: block;
}

.process-popup-content {
	display: grid;
	grid-template-columns: 50% 50%;
	height: 100%;
}

.process-popup-left {
	background-color: #504e30;
	position: relative;
	padding: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.process-tabs {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.process-tab {
	padding: 10px 5px 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #fff;
	border-radius: 10px 10px 0 0;
	width: 25%;
	flex: 0 0 25%;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: -5px;
}

.process-tab:hover {
	transform: translateY(-5px);
}

.process-tab:nth-child(1) {
	background: #504e30;
}

.process-tab:nth-child(2) {
	background: #adc9d2;
	color: #420a0e;
}

.process-tab:nth-child(3) {
	background: #420a0e;
}

.process-tab:nth-child(4) {
	background: #e69300;
	color: #420a0e;
}

.process-tab h3 {
	font-size: 13px;
	margin: 0;
}

.process-popup-right {
	background-size: cover;
	background-position: center;
	position: relative;
}

.process-popup-content-item {
	display: none;
	position: relative;
}

.process-popup-content-item.active {
	display: block;
}

.process-popup-content-item h2 {
	color: #fff;
	font-size: 25px;
	margin-bottom: 30px;
}

.process-popup-content-item p {
	color: #fff;
	margin-bottom: 20px;
}

/* Responsive styles for popup */
@media (max-width: 992px) {
	.process-popup-content {
		grid-template-columns: 1fr;
	}

	.process-popup-left {
		padding-bottom: 150px;
	}

	.process-popup-right {
		padding: 60px;
		min-height: 600px;
	}
}

@media (max-width: 768px) {
	.process-tabs {
	}

	.process-tab {
		padding: 15px;
		text-align: center;
		width: 50%;
		flex: 0 0 50%;
	}
}

@media (max-width: 576px) {
	.process-tab {
		width: 100%;
		flex: 0 0 50%;
	}
}

/* Process Hero Section */
.process-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding-top:20px !important;
	/*min-height: calc(100vh - 72px);
	height: calc(100vh - 72px);*/
}

.process-hero-inner {

	padding:0px 100px 0px 30px;
}

.process-hero-video {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.process-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.process-video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.process-hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 0;
	height: 100%;
	overflow-y: auto;
}

.process-hero-content h2 {
	font-size: 25px;
	margin-bottom: 30px;
}

/*.process-hero-content p {
	margin-bottom: 20px;
}*/

.process-hero-content .btn {
	margin-top: 20px;
	align-self: flex-start;
}

@media (max-width: 992px) {
	.process-hero {
		grid-template-columns: 1fr;
		height: auto;
		min-height: auto;
	}

	.process-hero-video {
		
	}

	.process-hero-content {
		display: block;	
		padding: 0;	
		overflow-y:unset;
		height:unset;
	}
}

@media (max-width: 576px) {
	body {
		
	}

	.process-hero
	{
		gap: 0px;
	}

	.process-hero-video {
		min-height: 250px;
	}

	process-hero-inner {
		padding: 0;
	}

	.process-hero-content {
		padding: 30px 0;
	}

	.hero_down_angle {
		bottom: 100px;
	}

	.firstsection {
		margin-top: 0 !important;
	}

	#introhp {
		padding: 40px 0;
	}

	.title1 {
        font-size: 1.6em !important;
    }

	.teaser-copy {
		max-width: 100% !important;
		width: 100% !important;
	}
}


/* Default underline (hidden initially) */
.main-nav ul li a::after,
.secondary-nav ul li a::after, #portfolionav li a::after{
	content: "";
	position: absolute;
	bottom: 0px; /* distance below text */
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background-color: currentColor; /* match link color */
	transition: width 0.5s ease;
}

/* Hover underline — only for non-active links */
.main-nav ul li a:not(.el_active):hover::after,
.secondary-nav ul li a:not(.el_active):hover::after,  #portfolionav li a:hover::after {
	width: 20px;
}

/* Active link — underline always visible, custom color, no animation */
.main-nav ul li a.el_active::after,
.secondary-nav ul li a.el_active::after, #portfolionav li.sgselected a::after {
	width: 20px;
	transition: none; /* instantly visible */
}

/* 13inch mac */
@media (min-width: 1101px) and (max-width: 1440px) {
	.container {
		width: 100%;
		padding: 0;
		max-width: 1112px;
	}

	.container-full {
		max-width: 1112px;
	}

	.container-lg {
		max-width: 1342px;
	}

	.header-container {
		max-width: 1000px;
	}

	.main-nav ul li, .secondary-nav ul li {
		margin: 0 40px;
	}

	.sghp .process-info-inner {
		padding: 0 180px 0 30px;
	}
}

@media (min-width: 1441px) {
	.container, .container-full {
		width: 77%;
		max-width: inherit;
	}

	.header-container {
		max-width: 1300px;
	}

	/*.process-info-inner {
		padding: 0 245px 0 30px;
	}

	.container-lg {
		max-width: 1342px;
	}

	

	.main-nav ul li, .secondary-nav ul li {
		margin: 0 40px;
	}*/
}

.firstsection
{
	margin-top:71px;
}

.page-hero {
	margin-top: 160px !important;
}