/* Conjured Wood landing page (front page) */

/* Full-bleed sections inside Botiga's .container.content-wrapper */
.page-template-front-page .content-wrapper {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.page-template-front-page .content-wrapper .row.main-row {
	margin-left: 0;
	margin-right: 0;
}

.page-template-front-page .content-wrapper .row.main-row > * {
	padding-left: 0;
	padding-right: 0;
}

.conjured-wood-hero {
	background: linear-gradient(135deg, #69483b 0%, #917563 50%, #a88363 100%);
	color: #f5f5dc;
	padding: 120px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.conjured-wood-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood-grain" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q5 8 10 10 T20 10" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23wood-grain)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-subtitle {
	font-size: 1.3rem;
	font-weight: 300;
	margin-bottom: 2rem;
	opacity: 0.9;
	font-style: italic;
}

.hero-cta {
	display: inline-block;
	background: #d4af37;
	color: #2c1810;
	padding: 15px 40px;
	text-decoration: none;
	border-radius: 3px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 2px solid #d4af37;
}

.hero-cta:hover {
	background: transparent;
	color: #d4af37;
	transform: translateY(-2px);
}

.features-section {
	padding: 80px 0;
	background: #fafafa;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.feature-card {
	background: white;
	padding: 40px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 3rem;
	color: #8b4513;
	margin-bottom: 20px;
}

.feature-title {
	font-size: 1.5rem;
	color: #2c1810;
	margin-bottom: 15px;
	font-weight: 600;
}

.feature-description {
	color: #666;
	line-height: 1.6;
}

.products-showcase {
	padding: 80px 0;
	background: white;
}

.showcase-title {
	text-align: center;
	font-size: 2.5rem;
	color: #2c1810;
	margin-bottom: 60px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.product-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.product-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.product-card-link:hover .product-card {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image {
	height: 300px;
	background: linear-gradient(45deg, #8b4513, #a0522d);
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-info {
	padding: 25px;
}

.product-name {
	font-size: 1.3rem;
	color: #2c1810;
	margin-bottom: 10px;
	font-weight: 600;
}

.product-description {
	color: #666;
	line-height: 1.5;
	margin-bottom: 15px;
}

.product-price {
	color: #d4af37;
	font-size: 1.2rem;
	font-weight: 600;
}

.about-section {
	padding: 80px 0;
	background: #2c1810;
	color: #f5f5dc;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px;
}

.about-title {
	font-size: 2.5rem;
	margin-bottom: 30px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
	opacity: 0.9;
}

.contact-section {
	padding: 80px 0;
	background: #fafafa;
	text-align: center;
}

.contact-content {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-title {
	font-size: 2.5rem;
	color: #2c1810;
	margin-bottom: 30px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.contact-text {
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}

.contact-email {
	color: #d4af37;
	font-weight: 600;
	text-decoration: none;
}

.contact-email:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.hero-subtitle {
		font-size: 1.1rem;
	}

	.features-grid,
	.products-grid {
		grid-template-columns: 1fr;
	}
}
