body.home .site-content > .ast-container{
	max-width:var(--obh-container-width) !important;
	padding:0 !important;
}

body.home .site-content{
	padding:0 !important;
}

:root{
	--obh-container-width:1200px;
	--obh-text-width:820px;
}

.obh-hero{
	position:relative;
	width:100%;
	height:85vh;
	min-height:600px;
	overflow:hidden;
	display:flex;
	align-items:center;
}

.obh-hero-bg{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	filter:brightness(0.4);
}

.obh-hero-overlay{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:linear-gradient(135deg, rgba(26,35,50,0.85) 0%, rgba(26,35,50,0.4) 60%, transparent 100%);
}

.obh-hero-content{
	position:relative;
	z-index:2;
	max-width:700px;
	padding:40px 80px;
	color:#fff;
}

.obh-hero-badge{
	display:inline-block;
	background:rgba(200,164,92,0.2);
	border:1px solid #c8a45c;
	color:#c8a45c;
	padding:6px 18px;
	border-radius:30px;
	font-size:13px;
	font-family:'Inter', sans-serif;
	font-weight:500;
	letter-spacing:2px;
	text-transform:uppercase;
	margin-bottom:24px;
}

.obh-hero h1{
	font-family:'Playfair Display', serif !important;
	font-size:56px !important;
	font-weight:700 !important;
	line-height:1.15 !important;
	margin:0 0 20px !important;
	color:#fff !important;
}

.obh-hero h1 span{color:#c8a45c;}

.obh-hero p{
	font-family:'Inter', sans-serif;
	font-size:18px;
	line-height:1.7;
	color:rgba(255,255,255,0.85);
	margin-bottom:32px;
	font-weight:300;
}

.obh-hero-cta{
	display:inline-flex;
	gap:16px;
	flex-wrap:wrap;
}

.obh-btn-primary{
	display:inline-block;
	background:#c8a45c;
	color:#fff !important;
	padding:16px 36px;
	border-radius:4px;
	font-family:'Inter', sans-serif;
	font-size:16px;
	font-weight:600;
	text-decoration:none !important;
	transition:all 0.3s;
	letter-spacing:0.5px;
}

.obh-btn-primary:hover{
	background:#b08d3e;
	transform:translateY(-2px);
	box-shadow:0 8px 25px rgba(200,164,92,0.4);
}

.obh-btn-secondary{
	display:inline-block;
	background:transparent;
	color:#fff !important;
	padding:16px 36px;
	border:2px solid rgba(255,255,255,0.4);
	border-radius:4px;
	font-family:'Inter', sans-serif;
	font-size:16px;
	font-weight:500;
	text-decoration:none !important;
	transition:all 0.3s;
}

.obh-btn-secondary:hover{
	border-color:#c8a45c;
	color:#c8a45c !important;
}

.obh-trust-bar{
	width:100%;
	background:#1a2332;
	padding:28px 0;
	border-top:2px solid #c8a45c;
}

.obh-trust-inner{
	max-width:var(--obh-container-width);
	margin:0 auto;
	display:flex;
	justify-content:space-around;
	flex-wrap:wrap;
	gap:20px;
	padding:0 20px;
}

.obh-trust-item{
	text-align:center;
	color:#fff;
	font-family:'Inter', sans-serif;
}

.obh-trust-icon{font-size:28px;margin-bottom:8px;}

.obh-trust-text{font-size:14px;font-weight:500;letter-spacing:0.5px;}

.obh-section{
	width:100%;
	padding:80px 20px;
}

.obh-section-inner{
	max-width:var(--obh-container-width);
	margin:0 auto;
}

.obh-section-title{
	text-align:center;
	margin-bottom:16px;
}

.obh-section-title h2{
	font-family:'Playfair Display', serif !important;
	font-size:40px !important;
	font-weight:700 !important;
	color:#1a2332 !important;
	margin:0 !important;
}

.obh-section-title h2 span{color:#c8a45c;}

.obh-section-subtitle{
	text-align:center;
	font-family:'Inter', sans-serif;
	font-size:17px;
	color:#666;
	margin-bottom:50px;
	line-height:1.6;
	max-width:var(--obh-text-width);
	margin-left:auto;
	margin-right:auto;
}

.obh-products-grid{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:30px;
	margin-bottom:40px;
}

.obh-product-card{
	background:#fff;
	border-radius:8px;
	overflow:hidden;
	box-shadow:0 4px 20px rgba(0,0,0,0.08);
	transition:all 0.3s;
}

.obh-product-card:hover{
	transform:translateY(-5px);
	box-shadow:0 12px 40px rgba(0,0,0,0.15);
}

.obh-product-img{
	width:100%;
	height:300px;
	object-fit:cover;
	display:block;
}

.obh-product-info{padding:24px;}

.obh-product-info h3{
	font-family:'Playfair Display', serif !important;
	font-size:22px !important;
	font-weight:600 !important;
	color:#1a2332 !important;
	margin:0 0 8px !important;
}

.obh-product-price{
	font-family:'Inter', sans-serif;
	font-size:14px;
	color:#888;
}

.obh-product-price .old-price{
	text-decoration:line-through;
	margin-right:8px;
}

.obh-product-price .new-price{
	color:#c8a45c;
	font-size:20px;
	font-weight:700;
}

.obh-product-btn{
	display:inline-block;
	background:#1a2332;
	color:#fff !important;
	padding:12px 24px;
	border-radius:4px;
	font-family:'Inter', sans-serif;
	font-size:14px;
	font-weight:600;
	text-decoration:none !important;
	margin-top:16px;
	transition:all 0.3s;
}

.obh-product-btn:hover{background:#c8a45c;}

.obh-bg-light{background:#f7f5f0;}

.obh-steps{
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	gap:30px;
}

.obh-step{
	text-align:center;
	padding:30px 20px;
}

.obh-step-number{
	width:60px;
	height:60px;
	background:linear-gradient(135deg, #c8a45c, #e6c77b);
	color:#fff;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-family:'Playfair Display', serif;
	font-size:24px;
	font-weight:700;
	margin:0 auto 20px;
}

.obh-step h3{
	font-family:'Playfair Display', serif !important;
	font-size:20px !important;
	color:#1a2332 !important;
	margin-bottom:12px !important;
}

.obh-step p{
	font-family:'Inter', sans-serif;
	font-size:15px;
	color:#666;
	line-height:1.6;
}

.obh-gallery-img{
	width:100%;
	border-radius:8px;
	box-shadow:0 8px 30px rgba(0,0,0,0.12);
}

.obh-testimonials{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:30px;
}

.obh-testimonial{
	background:#fff;
	padding:32px;
	border-radius:8px;
	box-shadow:0 4px 20px rgba(0,0,0,0.06);
	border-top:3px solid #c8a45c;
}

.obh-stars{color:#c8a45c;font-size:18px;margin-bottom:16px;}

.obh-testimonial p{
	font-family:'Inter', sans-serif;
	font-size:15px;
	color:#555;
	line-height:1.7;
	font-style:italic;
	margin-bottom:16px;
}

.obh-testimonial-author{
	font-family:'Inter', sans-serif;
	font-size:14px;
	font-weight:600;
	color:#1a2332;
}

.obh-cta-section{
	background:linear-gradient(135deg, #1a2332 0%, #2a3a52 100%) !important;
	color:#fff;
	text-align:center;
}

.obh-cta-section h2{
	font-family:'Playfair Display', serif !important;
	font-size:40px !important;
	color:#fff !important;
	margin-bottom:16px !important;
}

.obh-cta-section p{
	font-family:'Inter', sans-serif;
	font-size:18px;
	color:rgba(255,255,255,0.8);
	margin-bottom:32px;
	max-width:600px;
	margin-left:auto;
	margin-right:auto;
}

@media (max-width: 768px){
	.obh-hero-content{padding:30px;}
	.obh-hero h1{font-size:36px !important;}
	.obh-products-grid{grid-template-columns:1fr;}
	.obh-steps{grid-template-columns:repeat(2, 1fr);}
	.obh-testimonials{grid-template-columns:1fr;}
	.obh-trust-inner{flex-direction:column;align-items:center;}
}

