.shop-page {
	background:#fff;
	color:#1a1a1a;
}

.shop-page * {
	box-sizing:border-box;
}

.shop-page h1,
.shop-page h2,
.shop-page h3 {
	color:#000;
	font-family:"Outfit","Open Sans",Arial,sans-serif;
}

/* HERO */

.shop-hero {
	padding:72px 20px;
	background:linear-gradient(135deg,#fdfbfb 0%,#ebedee 100%);
	text-align:center;
}

.shop-hero-inner {
	max-width:980px;
	margin:0 auto;
}

.shop-hero h1 {
	font-size:44px;
	font-weight:700;
	line-height:1.2;
	margin:0 0 18px;
}

.shop-hero p {
	font-size:20px;
	line-height:1.6;
	max-width:820px;
	margin:0 auto;
}

/* MAIN */

.shop-main {
	max-width:900px;
	margin:0 auto;
	padding:64px 20px;
}

.shop-content {
	background:#fff;
	border:1px solid #e9ecef;
	border-radius:16px;
	padding:32px;
}

.shop-content h2 {
	text-align:center;
	margin:0 0 24px;
}

.shop-content p,
.shop-product-card p,
.shop-product-card li,
.shop-cta p {
	font-size:16px;
	line-height:1.7;
}

.shop-highlight-grid {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:12px;
	margin:28px 0;
}

.shop-highlight-grid div {
	background:#ffffff;
	border:1px solid #e9ecef;
	border-radius:12px;
	padding:14px;
	font-weight:700;
	text-align:center;
	color:#2c3e50;
}

.shop-payment-box {
	background:#fff4f2;
	border:1px solid #f1c4bd;
	border-radius:16px;
	padding:28px;
	text-align:center;
	margin:30px 0;
}

.shop-payment-box h3 {
	color:#ed615a;
	font-size:28px;
	margin:0 0 12px;
}

.shop-payment-box p {
	max-width:720px;
	margin:0 auto 22px;
}

/* PRODUCTS */

.shop-products {
	background:#f8f9fa;
	padding:64px 20px;
	text-align:center;
}

.shop-section-inner {
	max-width:1140px;
	margin:0 auto;
}

.shop-products h2 {
	margin:0 0 34px;
	font-size:34px;
	font-weight:700;
}

.shop-products-grid {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:18px;
}

.shop-product-card {
	background:#fff;
	border:1px solid #e9ecef;
	border-radius:14px;
	padding:24px;
	text-align:left;
	display:grid;
	grid-template-columns:150px 1fr;
	gap:22px;
	align-items:center;
}

.shop-product-card img {
	max-width:150px;
	height:auto;
	display:block;
	margin:0 auto;
}

.shop-product-card h3 {
	margin:0 0 12px;
	font-size:23px;
}

.shop-product-card ul {
	margin:14px 0 0;
	padding-left:26px;
}

.shop-product-card li {
	margin:5px 0;
}

.shop-note {
	margin-top:14px;
	padding:12px;
	background:#fff4f2;
	border:1px solid #f1c4bd;
	border-radius:10px;
	font-weight:700;
	color:#2c3e50;
}

/* CTA */

.shop-cta {
	padding:80px 20px;
	text-align:center;
	background:#ffffff;
}

.shop-cta h2 {
	margin:0 0 15px;
	font-size:38px;
	font-weight:700;
}

.shop-cta p {
	max-width:740px;
	margin:0 auto 30px;
	font-size:18px;
	color:#555;
}

.shop-cta-buttons {
	display:flex;
	justify-content:center;
	gap:12px;
	flex-wrap:wrap;
}

/* BUTTONS */

.shop-btn {
	display:inline-block;
	padding:12px 26px;
	border-radius:8px;
	background:#ed615a;
	color:#fff !important;
	border:1px solid #ed615a;
	font-weight:700;
	text-decoration:none !important;
	transition:all 0.2s ease;
}

.shop-btn:hover {
	background:#d44d47;
	border-color:#d44d47;
	color:#fff !important;
}

.shop-btn-outline {
	background:#ffffff;
	color:#ed615a !important;
}

.shop-btn-outline:hover {
	background:#ed615a;
	color:#fff !important;
}

/* RESPONSIVE */

@media (max-width:991px) {
	.shop-hero h1 {
		font-size:36px;
	}

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

	.shop-product-card {
		grid-template-columns:1fr;
		text-align:center;
	}

	.shop-product-card ul {
		text-align:left;
		display:inline-block;
	}

	.shop-cta h2 {
		font-size:30px;
	}
}