/********** Template CSS **********/
:root {
	--primary: #A34725;
	--secondary: #A67C52;
	--light: #EFFDF5;
	--dark: #A34725;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

p {
	color: #2E2E2E;
}

html {
	scroll-behavior: smooth;
}

/*** loader ***/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #F9F6F1;
	/* matches your background */
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Logo animation */
.loader-logo img {
	width: 80px;
	height: 80px;
	animation: rotateY 1.5s linear infinite;
	transform-style: preserve-3d;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@keyframes rotateY {
	from {
		transform: rotateY(0deg);
	}

	to {
		transform: rotateY(360deg);
	}
}

/*** Button ***/
.btn {
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 50px;
}

/*** Icon ***/
.icon {
	padding: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF !important;
	border-radius: 50px;
	border: 1px dashed var(--primary) !important;
}

.container-fluid {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Fix navbar alignment on small screens */
.navbar {
    justify-content: space-between; /* push logo left, burger right */
  }
  
  /* Reduce padding for mobile so it doesn’t overflow */
  @media (max-width: 388px) {
    .nav-bar {
      padding: 0 1rem; /* smaller padding */
      margin: 0;       /* remove top margin */
    }
  
    .navbar-brand h1 {
      font-size: 1.1rem; /* shrink site name on small devices */
    }
  
    .navbar-brand img {
      width: 40px !important;
      height: 40px !important;
    }
  }

  @media (max-width: 991.98px) {
    .nav-bar.container {
      max-width: 100% !important;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }

  @media (max-width: 991.98px) {
    .navbar {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  
    .container.nav-bar {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  }
  
  .navbar-toggler:focus{
    box-shadow: none;
  }
  
/*** Navbar ***/
.nav-bar {
	position: relative;
	margin-top: 45px;
	/* padding: 0 3rem; */
	/* transition: .5s; */
	z-index: 9999;
	transition: all 0.4s ease;
}

/* .nav-bar.sticky-top {
	position: sticky;
	padding: 0;
	z-index: 9999;
    background: #fff;
	transition: all 0.4s ease;
} */

.nav-bar.sticky-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* full width when sticky */
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 0;
    padding: 0 3rem;
    z-index: 9999;
  }

.navbar {
	box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar-light .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #FFFFFF;
	font-size: 15px;
	text-transform: uppercase;
	outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
	color: #7A4E35;
}

@media (max-width: 991.98px) {
	.nav-bar {
		margin: 0;
		padding: 0;
	}

	.navbar-light .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar-light .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

.navbar-light .navbar-brand {
	height: 75px;
}

.navbar-light .navbar-nav .nav-link {
	color: var(--dark);
	font-weight: 500;
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		top: 100%;
		margin-top: 0;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
		opacity: 0;
		visibility: hidden;
		transition: .5s;

	}

	.navbar .nav-item:hover .dropdown-menu {
		transform: rotateX(0deg);
		visibility: visible;
		transition: .5s;
		opacity: 1;
		background: #F9F6F1;
	}
}

/*** Header ***/
@media (min-width: 992px) {
	.header {
		margin-top: -120px;
	}
}

.header-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: -25px;
	/* safer margin */
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	z-index: 10;
	/* ✅ added */
	pointer-events: none;
	/* ✅ this avoids parent blocking */
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
	margin: 7px 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: var(--primary);
	border-radius: 40px;
	font-size: 20px;
	transition: 0.5s;
	z-index: 11;
	/* ✅ sits above everything */
	pointer-events: all;
	/* ✅ makes them clickable */
	cursor: pointer;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
	background: #A6A989;
}

.header-carousel .owl-carousel-item img {
	pointer-events: none;
}


@media (max-width: 768px) {
	.header-carousel .owl-nav {
		left: 25px;
	}
}

.typewriter {
	font-size: 2rem;
	color: #A34725;
	white-space: nowrap;
	overflow: hidden;
	border-right: 2px solid #A34725;
	width: 0;
	animation: typing 4s steps(40, end) forwards, blink 0.7s infinite;
}

@keyframes typing {
	from {
		width: 0
	}

	to {
		width: 100%
	}
}

@keyframes blink {

	0%,
	100% {
		border-color: transparent
	}

	50% {
		border-color: #A34725
	}
}


/*** homepage About us ***/
.about-img img {
	position: relative;
	z-index: 2;
}

.about-img::before {
	position: absolute;
	content: "";
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background: #A6A989;
	transform: skew(20deg);
	z-index: 1;
}

.aboutus,
.promises,
.our-story-section,
.makers-section,
.contact-section,
.products-section,
.kiln-section,
.keypoints-section,
.cta-band {
	background-color: #F3EEE8;
}

.aboutus h1,
.products h1,
.promises h1,
.testimonial h1,
.our-story-section h1,
.team-feature-section h1,
.makers-section h1,
.trusted-by-section h1,
.contact-intro h1,
.products-section h1,
.kiln-section h1,
.keypoints-section h1,
.beyond-furniture-section h1 {
	font-size: 2rem;
	font-weight: 500;
}
 

.aboutus .section-title::after,
.promises .section-title::after,
.testimonial .section-title::after,
.our-story-section .section-title::after,
.team-feature-section .section-title::after,
.makers-section .section-title::after,
.trusted-by-section .section-title::after,
.contactus .section-title::after,
.products-section .section-title::after,
.kiln-section .section-title::after,
.keypoints-section .section-title::after,
.beyond-furniture-section .section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #A34725;
	/* burnt sienna underline */
	margin: 10px auto 0;
	border-radius: 2px;
}

.mitasu-about-image {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.furniture-img {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
	border-radius: 12px;
}

/* Background accent layer */
.accent-block {
	position: absolute;
	top: 20px;
	left: -20px;
	width: 110%;
	height: 100%;
	background-color: #F3E8DF;
	/* light beige wood-like tone */
	z-index: 1;
	transform: rotate(-2deg);
	border-radius: 20px;
}

.mitasu-about-image::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border: 2px solid #A34725;
	border-radius: 12px;
	z-index: 3;
	pointer-events: none;
}

.section {
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
}

/* our products category */

.category-flex-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.category-card {
	position: relative;
	width: 18%;
	min-width: 160px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.category-card img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
	border-radius: 12px;
	transition: transform 0.4s ease;
}

.category-card:hover img {
	transform: scale(1.1);
	filter: blur(2px) brightness(70%);
}

.category-card .overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
	transform: translateY(10px);
	text-align: center;
}

.category-card:hover .overlay {
	opacity: 1;
	transform: translateY(0);
}

.category-card .overlay h5 {
	font-size: 1.2rem;
	color: #FFFFFF;
	font-weight: 600;
	/* text-transform: uppercase; */
	letter-spacing: 1px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
	/* Makes it stand out */
}

.cta-text {
	font-size: 1.05rem;
	font-weight: 500;
	color: #5A4A42;
	/* warm woody brown for subtlety */
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.4px;
}


@media (max-width: 992px) {
	.category-card {
		width: 30%;
	}
}

@media (max-width: 768px) {
	.category-card {
		width: 45%;
	}
}

@media (max-width: 576px) {
	.category-card {
		width: 100%;
	}
}


/* promises */

.promises-section {
	background-color: #FAF6F3;
	/* soft beige background */
	padding: 60px 0;
}

.icon-circle {
	width: 80px;
	height: 80px;
	background-color: #f0e5dd;
	color: #A34725;
	/* Mitasu woody brand color */
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 32px;
	margin: 0 auto 15px auto;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.promise-box:hover .icon-circle {
	background-color: #A34725;
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.promise-box h5 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #3e2f26;
	margin-bottom: 10px;
}

.promise-box p {
	color: #6e6e6e;
	font-size: 0.95rem;
	line-height: 1.6;
	max-width: 360px;
	margin: 0 auto;
}

.promises .promise-box:nth-child(n+4) {
	margin-top: 80px;
	/* adjust as needed */
}

/* testimonial */

.testimonial {
	background-color: #F9F6F1;
}

.testimonial-card {
	position: relative;
	background-color: #fff;
	border-radius: 12px;
	padding: 40px 20px 25px 20px;
	/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); */
	text-align: left;
	height: 100%;
	transition: transform 0.3s ease;
	overflow: visible;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); */
	cursor: pointer;
}

.testimonial-container,
.owl-stage {
	overflow: visible !important;
}

/* New wrapper to offset image from the card */
.client-img-wrapper {
	position: absolute;
	top: -30px;
	left: 20px;
}

.client-img {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 0 0 3px #f1e5dd;
}

.stars i {
	color: #FFA534;
	/* warm star yellow */
	font-size: 14px;
	margin-right: 2px;
}

.testimonial-card p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
	margin-top: 20px;
	flex-grow: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* number of lines to show */
	-webkit-box-orient: vertical;
	line-height: 1.6;
	color: #444;
}

.client-name {
	margin-top: 20px;
	font-weight: 600;
	font-size: 1rem;
	color: #3e2f26;
}

.client-role {
	color: #999;
	font-size: 0.85rem;
}

.testimonial .testimonial-card {
	margin-top: 2.5rem;
}

.testimonial-container {
	margin-top: 45px;
}

.testimonial-text {
	font-size: 0.95rem;
	color: #444;
	line-height: 1.6;
	margin-top: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* show 3 lines */
	-webkit-box-orient: vertical;
	transition: max-height 0.4s ease;
	max-height: 72px;
	/* ~3 lines */
}

/* Expanded text */
.testimonial-text.expanded {
	-webkit-line-clamp: unset;
	max-height: 500px;
}

/* Read More button */
.read-more-btn {
	border: none;
	background: none;
	color: #A34725;
	/* matches theme */
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	padding: 0;
	margin-top: 8px;
	display: inline-block;
	transition: color 0.3s ease;
}

.read-more-btn:hover {
	color: #5A3E36;
}

/*** Footer ***/
.footer .btn.btn-social {
	margin-right: 5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 35px;
	transition: .3s;
}

.footer .btn.btn-social:hover {
	color: var(--primary);
	border-color: var(--light);
}

.footer .form-control {
	border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
	color: var(--light);
}

.footer .footer-menu a {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.footer p {
	color: #F9F6F1;
}

.footer-link {
	position: relative;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-weight: 400;
	font-size: 1rem;
	padding: 6px 8px;
	transition: all 0.3s ease;
}

.footer-link::after {
	content: "";
	position: absolute;
	left: 8px;
	bottom: 4px;
	width: 0%;
	height: 1px;
	background-color: #fff;
	transition: width 0.3s ease;
}

.footer-link:hover {
	color: #fff;
}

.footer-link:hover::after {
	width: calc(100% - 16px);
}

.final-cta h5 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.6;
	color: #F9F6F1;
}

.btn-cta {
	background-color: transparent;
	color: #F9F6F1;
	border: 2px solid #F9F6F1;
	padding: 10px 30px;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.btn-cta:hover {
	background-color: #F9F6F1;
	color: #2E2B26;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* About us page */
/* Our story */
/* =========================================
   SECTION: Our Story (About Section)
   ========================================= */
.our-story-section {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.story-intro {
	font-weight: 500;
	color: #5A3E36;
	font-size: 1.1rem;
}

.our-story-section p {
	color: #4E4E4E;
	font-size: 1rem;
	line-height: 1.7;
	text-align: justify;
}

/* =========================================
   SECTION: Faces of Mitasu (Team Feature)
   ========================================= */
.team-feature-section {
	background-color: #F9F6F1;
	padding: 4rem 0;
}

/* Image column styles */
.team-feature-image {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	border: 1px solid #A34725;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
}

.full-image {
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
	border-radius: 12px 0 0 12px;
}

/* Text content column styles */
.team-feature-content {
	background-color: #F3EEE8;
	border-radius: 0 12px 12px 0;
	box-shadow: 0 8px 20px rgba(163, 71, 37, 0.15),
		0 2px 6px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.team-feature-content h3 {
	color: #5A3E36;
	font-weight: 600;
}

.team-feature-content .subheading {
	color: #A34725;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 1px;
}

.team-feature-content .lead {
	font-size: 1.05rem;
	font-weight: 400;
	color: #4B3A2F;
	line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 991px) {
	.team-feature-image {
		border-radius: 12px 12px 0 0;
	}

	.team-feature-content {
		border-radius: 0 0 12px 12px;
		padding: 30px;
		text-align: center;
	}
}

/* =========================================
   SECTION: Meet the Makers
   ========================================= */
.makers-card {
	/* background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.makers-img {
	width: 100%;
	height: auto;
	/* allow natural aspect ratio */
	/* max-height: 200px; */
	/* keep it landscape, not too tall */
	object-fit: contain;
	/* show full image without cropping */
	border-radius: 10px;
	transition: transform 0.4s ease, filter 0.4s ease;
	/* background-color: #f9f6f1; */
	/* padding background for empty space */
}

.makers-card:hover {
	transform: translateY(-8px);
	/* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15); */
}

.makers-card:hover .makers-img {
	transform: scale(1.05);
	filter: brightness(1.05);
}

.makers-name {
	font-weight: 600;
	color: #5A3E36;
	margin-top: 12px;
	font-size: 1rem;
}

.makers-tagline {
	font-size: 1.15rem;
	color: #A34725;
	font-weight: 500;
}


/* =========================================
   SECTION: Trusted By
   ========================================= */
.trusted-by-section {
	background-color: #F9F6F1;
	padding: 4rem 0;
}

.trusted-logo {
	/* max-height: 80px; */
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
}

.trusted-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: translateY(-3px);
}

/* ================================
   CONTACT US SECTION STYLES
   ================================ */

/* ===== Contact Form Wrapper ===== */
.form-wrapper {
	max-width: 700px;
	margin: auto;
}

/* ===== Form Fields (Inputs & Textarea) ===== */
.form-control {
	border-radius: 50px;
	/* pill shape for inputs */
	padding: 0.75rem 1.25rem;
	border: none;
	box-shadow: none;
	background-color: #F9F6F1;
	color: #A34725;
	transition: border-color 0.3s ease;
}

.form-control::placeholder {
	color: #a47b68;
	opacity: 1;
}

.form-control:focus::placeholder {
	color: #c59076;
}

/* Larger radius for textarea only */
textarea.form-control {
	border-radius: 16px;
}

/* Focus state */
.form-control:focus {
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #F9F6F1;
	border-color: var(--primary);
	box-shadow: 0 0 0 0.2rem rgba(163, 71, 37, 0.1);
}

/* ===== Section Intro Text ===== */
.contact-intro h1 {
	font-weight: 600;
	margin-bottom: 1rem;
}

.contact-intro .lead {
	font-size: 1.1rem;
	color: #7B6E66;
}

/* ===== Left Column: Our Craft, Our Care ===== */
.craft-care-inner {
	background: #fff;
	border: 1px solid rgba(163, 71, 37, 0.1);
	padding: 2.5rem;
	border-radius: 14px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craft-care-inner:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.craft-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: rgba(163, 71, 37, 0.08);
	border-radius: 50%;
	font-size: 1.6rem;
	color: var(--primary);
	box-shadow: 0 4px 12px rgba(163, 71, 37, 0.1);
}

.craft-title {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #5A3E36;
}

.craft-text {
	font-size: 1rem;
	color: #6B5B51;
	line-height: 1.7;
}

/* ===== Right Column: Contact Cards ===== */
.contact-card {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(163, 71, 37, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.contact-icon {
	font-size: 1.5rem;
	color: var(--primary);
	margin-right: 1rem;
	background: rgba(163, 71, 37, 0.08);
	padding: 10px;
	border-radius: 50%;
}

/* Ensure both columns match height */
.craft-care-inner,
.contact-cards-wrapper {
	height: 100%;
}

/* Contact cards spacing inside wrapper */
.contact-cards-wrapper .contact-card {
	flex: 1;
	margin-bottom: 1rem;
}

.contact-cards-wrapper .contact-card:last-child {
	margin-bottom: 0;
}

/* ===== Secondary Text (Below Highlight Section) ===== */
.contact-subtext {
	font-size: 1rem;
	color: #888;
}

.contact-form-section .form-control:focus {
    background-color: inherit;  /* don’t change background */
    border-color: #A34725;      /* brand color */
    box-shadow: none;
    outline: none;
}

/* products page */
/* ================================
   PRODUCTS SECTION
   ================================ */

/* ===== Section Container ===== */
.products-section {
	padding: 4rem 0;
}

/* ===== Individual Category Block ===== */
.product-block {
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== Category Intro Row (Icon + Text) ===== */
.product-category {
	gap: 1.5rem;
}

/* ===== Category Icon (Left) ===== */
.category-icon {
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	background-color: rgba(163, 71, 37, 0.08);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.8rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== Category Content (Right) ===== */
.category-content h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #5A3E36;
}

.category-content p {
	color: #6b5b51;
	line-height: 1.6;
	margin: 0;
}

/* ===== Product Carousel Item Styling ===== */
/*** product ***/
.product-carousel .owl-item {
	transition: opacity 0.3s ease, transform 0.3s ease;
	opacity: 0.3;
	/* default faded */
}

/* Focused items (middle 4) */
.product-carousel .owl-item.active {
	opacity: 1;
}

/* Optional: make outside ones slightly scaled down */
.product-carousel .owl-item:not(.active) {
	transform: scale(0.95);
}

.product-carousel .product-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	margin: 10px;
	cursor: pointer;
}

.product-carousel .product-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
    display: block;
}

@media (max-width: 768px) {
    .product-carousel .product-item img {
      height: auto;  /* smaller height for phones */
    }
  }

.product-carousel .product-item:hover img {
	transform: scale(1.05);
}

.product-carousel .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(163, 71, 37, 0.9);
	color: #fff;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.4s ease-in-out;
}

.product-carousel .product-item:hover .overlay {
	transform: translateY(0);
} 

.product-carousel h5 {
	color: #F9F6F1;
	font-size: 18px;
	font-weight: 500;
}

.product-carousel p {
	font-size: 13px;
	line-height: 1.4;
	color: #D6C3B4;
}

/* Optional: Add hover effect for single-image blocks */
.product-block img {
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-block img:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.aboutus .section-title::after,
.products .section-title::after,
.promises .section-title::after,
.testimonial .section-title::after,
.our-story-section .section-title::after,
.team-feature-section .section-title::after,
.makers-section .section-title::after,
.trusted-by-section .section-title::after,
.usp-section .section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #A34725;
	/* burnt sienna underline */
	margin: 10px auto 0;
	border-radius: 2px;
}

.category-heading-wrapper {
	margin-bottom: 20px;
	padding-left: 15px;
	position: relative;
}

.category-heading-wrapper::before {
	content: "Chairs";
	font-family: 'Playfair Display', serif;
	font-size: 4rem;
	color: #EFE9E3;
	position: absolute;
	left: 0;
	top: -40px;
	z-index: 0;
	opacity: 0.5;
	pointer-events: none;
}

.category-title-left {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: #5A3E36;
	/* deep woody tone */
	margin: 0;
	position: relative;
	display: inline-block;
}

.product-carousel {
	position: relative;
	padding: 0 40px;
	/* space for arrows */
}

.owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.owl-nav span {
	font-size: 2rem;
	color: #A34725;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	pointer-events: all;
	transition: all 0.3s ease;
}

.owl-nav span:hover {
	color: #A6A989;
}


/* usp page */

.body-text-box {
	background: #F9F6F1;
	border-radius: 12px;
	border-left: 5px solid #b0855b;
	border-right: 5px solid #b0855b;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	margin: 0 auto;
	/* center align */
}

.body-text-box .body-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #444;
}

.fetures-heading {
	color: #7A4E35;
}

/* Arrow styling */
.arrow {
	font-size: 1.2rem;
	color: #b0855b;
	/* wood accent */
	display: inline-block;
	margin-top: 5px;
	animation: arrow-pulse 1.5s infinite;
}

/* Subtle arrow animation */
@keyframes arrow-pulse {

	0%,
	100% {
		transform: translateX(0);
		opacity: 1;
	}

	50% {
		transform: translateX(5px);
		opacity: 0.7;
	}
}

/* Video styling */
video {
	border-radius: 12px;
	object-fit: cover;
}

/* Wrapper keeps video centered */
.video-wrapper {
    background: #000; /* black border/letterbox */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

/* Maintain aspect ratio with black bars if needed */
.video-letterbox {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* show entire video, keep aspect ratio */
    border-radius: 12px;
}

/* Fullscreen Button */
.fullscreen-btn,
.unmute-btn {
  position: absolute;
  bottom: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.fullscreen-btn { right: 15px; }
.unmute-btn { left: 15px; }

.fullscreen-btn:hover,
.unmute-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* Closing box minimal style */
.closing-box {
	border-top: 1px solid #e0e0e0;
	/* subtle divider in theme color */
}

.closing-box p {
	font-size: 1.1rem;
	color: #444;
	line-height: 1.6;
}

.text-brown {
	color: #A34725;
	/* theme highlight */
	font-weight: 600;
}


.key-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	padding-top: 60px;
	/* extra space for circle */
	overflow: visible;
	/* allow circle outside */
}

.key-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	cursor: pointer;
}

/* Icon Circle */
.icon-circle-usp {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #A34725;
	/* theme brown */
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	position: absolute;
	top: -35px;
	/* overlap */
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

/* -----------------------------------
   Beyond Furniture Section
----------------------------------- */

.section-intro {
	max-width: 750px;
	margin: 0 auto;
	font-size: 1.05rem;
	color: #4E4E4E;
	line-height: 1.7;
}

.beyond-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beyond-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.beyond-img {
	width: 100%;
	/* height: 250px; */
	object-fit: cover;
	transition: transform 0.4s ease;
}

.beyond-card:hover .beyond-img {
	transform: scale(1.05);
}

/* @media (max-width: 768px) {
	.beyond-img {
		height: 200px;
	}
} */


.craftsmanship-text {
	max-width: 800px;
	font-size: 1.1rem;
	line-height: 1.9;
	color: #444;
	text-align: center;
	border-left: 4px solid #a47148;
	border-right: 4px solid #a47148;
	padding: 2rem 1.5rem;
	border-radius: 12px;
	background: #faf7f3;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.craft-title {
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.4;
}

.craft-title span {
	color: #A34725;
	/* brand highlight */
}

.lead-text {
	font-size: 1.25rem;
	color: #444;
}

.craft-points {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.craft-points .point {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 500;
	color: #333;
}

.craft-points .point i {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #A34725;
}

.craft-quote {
	font-size: 1.1rem;
	font-style: italic;
	color: #555;
	max-width: 650px;
	margin: 0 auto;
	padding-left: 1rem;
}

.closing {
	font-size: 1.1rem;
	letter-spacing: 0.5px;
	color: #2c2c2c;
}

/* Decorative Image Layout */
.image-grid {
	position: relative;
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.decor-image {
	width: 240px;
	height: 160px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.decor-image:hover {
	transform: scale(1.05);
}

/* Decorative scattered placement */
.img1 {
	transform: rotate(-3deg);
}

.img2 {
	transform: rotate(2deg);
	margin-top: 40px;
}

.img3 {
	transform: rotate(-2deg);
}

.img4 {
	transform: rotate(3deg);
	margin-top: 40px;
}


/* CTA Band */
.cta-band {
	padding: 4rem 1rem;
	border-radius: 0;
}

.cta-title {
	font-size: 2rem;
	font-weight: 600;
	color: #A34725;
}

.cta-subtitle {
	font-size: 1rem;
	color: #555;
	margin-bottom: 2rem;
}

/* Button Styling */
.cta-btn {
	display: inline-block;
	padding: 0.9rem 2rem;
	font-size: 1.1rem;
	font-weight: 500;
	color: #fff;
	background: #a47148;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
	background: #8b5c3e;
	transform: translateY(-2px);
}

/* Prevent horizontal overflow on all devices */
body {
    overflow-x: hidden;
  }
  
  /* Avoid restricting html – allows sticky elements to work */
  html {
    width: 100%;
    overflow-x: visible;
  }

  /* Prevent any container from exceeding viewport width */
   .container-fluid {
    overflow-x: hidden !important;
  }
  
  