/* ==========================================================================
   China Guides v2 — 1:1 redesign per 06_Hub & 07_Product designs
   Palette: cream hero #F6DDC7, bronze #AD882F, gold fill #F5D596,
   dark green #1C302B, light cards #F5F5F5, trust strip #EFEFF0, sage #E3EBD4
   ========================================================================== */

.g2-hub,
.g2-single { background: #fff; }

.g2-container {
	max-width: var(--cts-container, 1280px);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Shared: buttons / headings ---------- */
.g2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease;
	line-height: 1.2;
}
.g2-btn-lg { padding: 14px 34px; font-size: 15.5px; }
.g2-btn-sm { padding: 8px 18px; font-size: 13px; }
.g2-btn-block { width: 100%; }
.g2-btn-dark { background: #1C302B; color: #fff; }
.g2-btn-dark:hover { background: #2A443C; transform: translateY(-1px); }
.g2-btn-gold { background: #F5D596; color: #1C302B; font-weight: 700; }
.g2-btn-gold:hover { background: #EFC87E; transform: translateY(-1px); }
.g2-btn-bronze { background: #AD882F; color: #fff; }
.g2-btn-bronze:hover { background: #96751F; }
.g2-btn-bronze-o { background: transparent; border-color: #AD882F; color: #AD882F; }
.g2-btn-bronze-o:hover { background: #AD882F; color: #fff; }

.g2-h2 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 27px;
	color: #1C302B;
	margin: 0 0 22px;
}
.g2-section { padding: 46px 0 6px; }
.g2-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.g2-section-sub { color: #6b7280; font-size: 15px; margin: -12px 0 24px; }
.g2-count { font-size: 13px; color: #6b7280; }
.g2-readtime {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	color: #6b7280;
}
.g2-readlink {
	color: #AD882F;
	font-weight: 600;
	font-size: 13.5px;
	text-decoration: none;
}
.g2-readlink:hover { text-decoration: underline; }

/* ==========================================================================
   HUB (design 06)
   ========================================================================== */

/* ---------- Hero: cream left + photo right ---------- */
.g2-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	background: linear-gradient(105deg, #F6DDC7 0%, #F1DCC8 55%, #EADFD1 100%);
	border-bottom: 1px solid rgba(173, 136, 47, 0.15);
}
.g2-hero-left { padding: 72px 24px 64px clamp(32px, 5.5vw, 84px); max-width: 760px; }
.g2-hero-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(34px, 4.2vw, 52px);
	line-height: 1.1;
	color: #1C302B;
	margin: 0 0 16px;
}
.g2-hero-sub { font-size: 16.5px; line-height: 1.65; color: #4b5563; margin: 0 0 26px; max-width: 560px; }
.g2-hero-search {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 999px;
	padding: 6px 6px 6px 18px;
	box-shadow: 0 6px 20px rgba(28, 48, 43, 0.08);
	max-width: 560px;
	margin-bottom: 22px;
}
.g2-hero-search svg { color: #9ca3af; flex: none; }
.g2-hero-search input {
	flex: 1;
	border: none;
	background: none;
	font-size: 14.5px;
	color: #1f2937;
	min-width: 0;
}
.g2-hero-search input:focus { outline: none; }
.g2-search-go {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: #1C302B;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.25s ease;
}
.g2-search-go:hover { background: #2A443C; }
.g2-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.g2-hero-photo { position: relative; overflow: hidden; min-height: 420px; }
.g2-hero-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.g2-hero-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(246, 221, 199, 0.55) 0%, rgba(246, 221, 199, 0) 30%);
}

/* ---------- Category chips ---------- */
.g2-chips {
	border-bottom: 1px solid #eef0ee;
	background: #fff;
}
.g2-chips-inner {
	display: flex;
	gap: 10px;
	padding-top: 18px;
	padding-bottom: 18px;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.g2-chips-inner::-webkit-scrollbar { display: none; }
.g2-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 18px;
	border-radius: 999px;
	border: 1.5px solid #e0e4e0;
	background: #F4F6F4;
	font-size: 13.5px;
	font-weight: 500;
	color: #4b5563;
	cursor: pointer;
	transition: all 0.2s ease;
}
.g2-chip em {
	font-style: normal;
	font-size: 11px;
	background: #E4E7E5;
	border-radius: 999px;
	padding: 1px 8px;
	color: #6b7280;
}
.g2-chip:hover { border-color: #AD882F; color: #AD882F; }
.g2-chip.is-active { background: #1C302B; border-color: #1C302B; color: #fff; }
.g2-chip.is-active em { background: rgba(255, 255, 255, 0.18); color: #fff; }

/* ---------- Featured layout ---------- */
.g2-feat-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	gap: 48px;
	padding-top: 52px;
}
.g2-feat-item {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 28px;
	padding: 22px 0;
	border-bottom: 1px solid #eef0ee;
}
.g2-feat-item:first-of-type { border-top: 1px solid #eef0ee; }
.g2-feat-img {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	display: block;
}
.g2-feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.g2-feat-item:hover .g2-feat-img img { transform: scale(1.04); }
.g2-feat-cat {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #AD882F;
	margin-bottom: 8px;
}
.g2-feat-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 21px;
	line-height: 1.3;
	margin: 0 0 8px;
}
.g2-feat-title a { color: #1C302B; text-decoration: none; }
.g2-feat-title a:hover { color: #AD882F; }
.g2-feat-desc { font-size: 14px; line-height: 1.65; color: #6b7280; margin: 0 0 12px; }
.g2-feat-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ---------- Sidebar: popular + community + custom ---------- */
.g2-pop {
	background: #FAFAF9;
	border: 1px solid #eef0ee;
	border-radius: 14px;
	padding: 6px 18px;
	margin-bottom: 22px;
}
.g2-pop-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 13px 0;
	border-bottom: 1px dashed #e5e7e5;
	text-decoration: none;
}
.g2-pop-item:last-child { border-bottom: none; }
.g2-pop-item:hover .g2-pop-title { color: #AD882F; }
.g2-pop-title { font-size: 14px; font-weight: 600; color: #1f2937; line-height: 1.4; transition: color 0.2s ease; }

.g2-comm-card {
	background: #1C302B;
	border-radius: 16px;
	color: #fff;
	padding: 24px 22px;
	margin-bottom: 18px;
}
.g2-comm-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; margin: 0 0 8px; color: #fff; }
.g2-comm-card p { font-size: 13.5px; line-height: 1.6; opacity: 0.85; margin: 0 0 16px; }
.g2-comm-form { display: grid; gap: 10px; }
.g2-comm-form input {
	padding: 12px 16px;
	border-radius: 10px;
	border: none;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.95);
	color: #1f2937;
}
.g2-comm-form input:focus { outline: 2px solid #F5D596; }
.g2-comm-notes { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.g2-comm-notes li { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; opacity: 0.8; }
.g2-comm-notes svg { color: #F5D596; }

.g2-cust-card {
	background: #E3EBD4;
	border-radius: 16px;
	padding: 22px;
}
.g2-cust-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; margin: 0 0 8px; color: #1C302B; }
.g2-cust-card p { font-size: 13.5px; line-height: 1.6; color: #3f4b42; margin: 0 0 16px; }

/* ---------- View all ---------- */
.g2-viewall { text-align: center; padding: 34px 0 4px; }

/* ---------- Grid ---------- */
.g2-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	padding-top: 6px;
}
.g2-card {
	background: #fff;
	border: 1px solid #e8eae8;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}
.g2-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(28, 48, 43, 0.12); }
.g2-card[hidden] { display: none; }
.g2-card-cover { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.g2-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.g2-card:hover .g2-card-cover img { transform: scale(1.05); }
.g2-card-cat {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(28, 48, 43, 0.9);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
}
.g2-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.g2-card-title { font-size: 16.5px; line-height: 1.35; margin: 0 0 8px; }
.g2-card-title a { color: #1C302B; text-decoration: none; }
.g2-card-title a:hover { color: #AD882F; }
.g2-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.g2-card-stars { color: #AD882F; font-size: 13px; letter-spacing: 1px; }
.g2-card-rating { font-size: 13px; font-weight: 700; color: #1f2937; }
.g2-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px dashed #eef0ee;
}
.g2-card-price { display: flex; align-items: baseline; gap: 8px; }
.g2-card-price del { color: #9ca3af; font-size: 13px; }
.g2-card-price strong { font-size: 20px; font-weight: 700; color: #1C302B; }
.g2-empty { text-align: center; padding: 50px 20px; color: #6b7280; }

/* ---------- Toolbox ---------- */
.g2-tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.g2-tool {
	background: #F6F6F5;
	border-radius: 16px;
	padding: 24px 22px;
	transition: all 0.25s ease;
}
.g2-tool:hover { background: #fff; box-shadow: 0 10px 24px rgba(28, 48, 43, 0.1); }
.g2-tool-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #1C302B;
	color: #F5D596;
	margin-bottom: 14px;
}
.g2-tool-icon svg { width: 24px; height: 24px; }
.g2-tool h3 { font-size: 16px; margin: 0 0 8px; color: #1C302B; }
.g2-tool p { font-size: 13px; line-height: 1.6; color: #6b7280; margin: 0 0 14px; }

/* ---------- Cities ---------- */
.g2-cities { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.g2-city {
	display: flex;
	flex-direction: column;
	background: #F6F6F5;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.25s ease;
}
.g2-city:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(28, 48, 43, 0.14); }
.g2-city-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.g2-city-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.g2-city:hover .g2-city-img img { transform: scale(1.06); }
.g2-city-name { font-size: 16px; font-weight: 700; color: #1C302B; padding: 12px 14px 2px; }
.g2-city-marks { font-size: 12px; color: #6b7280; padding: 0 14px; line-height: 1.5; }
.g2-city .g2-readlink { padding: 10px 14px 14px; }

/* ---------- Discover ---------- */
.g2-discover { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g2-disc-card {
	background: #fff;
	border: 1px solid #e8eae8;
	border-radius: 16px;
	padding: 28px 26px;
	transition: all 0.25s ease;
}
.g2-disc-card:hover { box-shadow: 0 10px 24px rgba(28, 48, 43, 0.1); transform: translateY(-3px); }
.g2-disc-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; margin: 0 0 10px; color: #1C302B; }
.g2-disc-card p { font-size: 14px; line-height: 1.65; color: #6b7280; margin: 0 0 16px; }

/* ---------- Newsletter banner ---------- */
.g2-nl { background: #E3EBD4; margin-top: 46px; }
.g2-nl-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-top: 46px;
	padding-bottom: 46px;
	flex-wrap: wrap;
}
.g2-nl h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; margin: 0 0 6px; color: #1C302B; }
.g2-nl p { margin: 0; font-size: 14.5px; color: #3f4b42; }
.g2-nl-form { display: flex; gap: 10px; }
.g2-nl-form input {
	padding: 13px 18px;
	border-radius: 999px;
	border: 1.5px solid rgba(28, 48, 43, 0.2);
	font-size: 14px;
	min-width: 260px;
	background: #fff;
}

/* ==========================================================================
   SINGLE GUIDE (design 07)
   ========================================================================== */

/* ---------- Breadcrumb ---------- */
.g2p-breadcrumb {
	border-bottom: 1px solid #eef0ee;
	padding: 14px 0;
	font-size: 13px;
	color: #6b7280;
}
.g2p-breadcrumb a { color: #6b7280; text-decoration: none; }
.g2p-breadcrumb a:hover { color: #AD882F; }

/* ---------- Hero ---------- */
.g2p-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) 380px;
	gap: 56px;
	align-items: center;
	padding-top: 46px;
	padding-bottom: 46px;
}
.g2p-cat {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #AD882F;
	margin-bottom: 10px;
}
.g2p-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(30px, 3.8vw, 46px);
	line-height: 1.12;
	color: #1C302B;
	margin: 0 0 16px;
}
.g2p-excerpt { font-size: 16px; line-height: 1.7; color: #4b5563; margin: 0 0 18px; }
.g2p-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 14.5px; color: #6b7280; }
.g2p-rating strong { color: #1C302B; }
.g2p-stars { color: #AD882F; letter-spacing: 2px; font-size: 16px; }

/* ---------- Price card ---------- */
.g2p-pricecard {
	background: #fff;
	border: 1px solid #e5e7e5;
	border-radius: 20px;
	box-shadow: 0 14px 40px rgba(28, 48, 43, 0.12);
	padding: 28px 26px;
}
.g2p-pricecard-label {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}
.g2p-pricecard-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.g2p-pricecard-price strong { font-family: 'Playfair Display', Georgia, serif; font-size: 42px; font-weight: 700; color: #1C302B; line-height: 1; }
.g2p-pricecard-price span { color: #6b7280; font-size: 14px; }
.g2p-pricecard-feats { list-style: none; margin: 0 0 20px; padding: 0 0 18px; border-bottom: 1px dashed #e5e7e5; display: grid; gap: 11px; }
.g2p-pricecard-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #374151; line-height: 1.5; }
.g2p-pricecard-feats svg { color: #1e7a46; flex: none; margin-top: 3px; }
.g2p-pricecard-btn .cts-btn,
.g2p-pricecard-btn button {
	display: block;
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 999px;
	background: #F5D596;
	color: #1C302B;
	font-size: 15.5px;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: background 0.25s ease;
}
.g2p-pricecard-btn .cts-btn:hover,
.g2p-pricecard-btn button:hover { background: #EFC87E; }
.g2p-pricecard-saved {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 14px;
	font-size: 12.5px;
	color: #6b7280;
}
.g2p-pricecard-saved svg { color: #AD882F; }

/* ---------- Trust strip ---------- */
.g2p-trust { background: #EFEFF0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.g2p-trust-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.g2p-trust-item { display: flex; align-items: center; gap: 13px; color: #1C302B; }
.g2p-trust-item > svg { color: #AD882F; flex: none; }
.g2p-trust-item strong { display: block; font-size: 14px; }
.g2p-trust-item span { display: block; font-size: 12.5px; color: #6b7280; }

/* ---------- Main 2-col ---------- */
.g2p-main {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	gap: 44px;
	padding-top: 44px;
	padding-bottom: 30px;
	align-items: start;
}
.g2p-h {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 22px;
	color: #1C302B;
	margin: 0 0 16px;
}

/* ---------- TOC card ---------- */
.g2p-toc-card {
	background: #F6F6F5;
	border-radius: 16px;
	padding: 24px 22px;
	margin-bottom: 26px;
}
.g2p-toc { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.g2p-toc li {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 9px 0;
	border-bottom: 1px dashed #e0e2e0;
	font-size: 14px;
	color: #374151;
	line-height: 1.45;
}
.g2p-toc li:last-child { border-bottom: none; }
.g2p-toc-num {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #1C302B;
	color: #F5D596;
	font-size: 12.5px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ---------- Sample cards ---------- */
.g2p-sample {
	background: #fff;
	border: 1px solid #e5e7e5;
	border-radius: 16px;
	padding: 22px 20px;
	margin-bottom: 16px;
}
.g2p-sample-tag {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.8px;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}
.g2p-sample.is-unlocked .g2p-sample-tag { background: #E3F4E9; color: #1e7a46; }
.g2p-sample.is-locked .g2p-sample-tag { background: #F3E8D2; color: #8a6a1f; }
.g2p-sample h3 { font-size: 16.5px; line-height: 1.4; margin: 0 0 12px; color: #1C302B; }
.g2p-sample-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.g2p-sample-list li { display: flex; gap: 9px; font-size: 13.5px; color: #4b5563; line-height: 1.55; }
.g2p-sample-list li::before { content: "✓"; color: #1e7a46; font-weight: 700; flex: none; }
.g2p-sample.is-locked .g2p-sample-list li::before { content: "•"; color: #8a6a1f; }
.g2p-blur {
	filter: blur(4.5px);
	user-select: none;
	pointer-events: none;
}
.g2p-sample-locknote {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed #e5e7e5;
	color: #6b7280;
	font-size: 12.5px;
}
.g2p-sample-locknote svg { color: #8a6a1f; flex: none; }
.g2p-sample .g2-readlink { display: inline-block; margin-top: 10px; }
.g2p-sample-html { font-size: 14px; line-height: 1.7; color: #4b5563; }
.g2p-sample-html h2 { font-size: 17px; color: #1C302B; margin: 0 0 10px; }
.g2p-sample-html p { margin: 0 0 12px; }

/* ---------- Look inside ---------- */
.g2p-pages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.g2p-page { margin: 0; text-align: center; }
.g2p-page img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid #e5e7e5;
	box-shadow: 0 6px 16px rgba(28, 48, 43, 0.1);
	display: block;
	transition: transform 0.25s ease;
}
.g2p-page:hover img { transform: translateY(-4px); }
.g2p-page figcaption { padding-top: 9px; }
.g2p-page figcaption strong { display: block; font-size: 13px; color: #1C302B; }
.g2p-page figcaption span { display: block; font-size: 11.5px; color: #6b7280; margin-top: 2px; line-height: 1.4; }
.g2p-inside-note {
	text-align: center;
	font-size: 13px;
	color: #6b7280;
	margin: 16px 0 0;
}

/* ---------- CTA banner ---------- */
.g2p-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	background: #1C302B;
	border-radius: 18px;
	color: #fff;
	padding: 28px 30px;
	margin: 30px 0;
}
.g2p-cta h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 23px; margin: 0 0 5px; color: #fff; }
.g2p-cta p { margin: 0; font-size: 13.5px; opacity: 0.82; }

/* ---------- What's included ---------- */
.g2p-included { margin-bottom: 30px; }
.g2p-inc-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.g2p-inc-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: #F6F6F5;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 13.5px;
	color: #374151;
	line-height: 1.5;
}
.g2p-inc-list svg { color: #1e7a46; flex: none; margin-top: 2px; }

/* ---------- FAQ ---------- */
.g2p-faq-wrap { margin-bottom: 26px; }
.g2p-faq-item {
	background: #fff;
	border: 1px solid #e5e7e5;
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
}
.g2p-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 15px 18px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14.5px;
	font-weight: 600;
	color: #1C302B;
	text-align: left;
}
.g2p-faq-toggle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #EFEFF0;
	position: relative;
	flex: none;
	transition: background 0.25s ease;
}
.g2p-faq-toggle::before,
.g2p-faq-toggle::after {
	content: "";
	position: absolute;
	background: #1C302B;
	border-radius: 2px;
	left: 50%;
	top: 50%;
}
.g2p-faq-toggle::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.g2p-faq-toggle::after { width: 2px; height: 10px; transform: translate(-50%, -50%); transition: transform 0.25s ease; }
.g2p-faq-item.is-open .g2p-faq-toggle { background: #F5D596; }
.g2p-faq-item.is-open .g2p-faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.g2p-faq-a {
	display: none;
	padding: 0 18px 16px;
	font-size: 13.5px;
	line-height: 1.7;
	color: #6b7280;
	animation: g2-fade 0.3s ease;
}
.g2p-faq-item.is-open .g2p-faq-a { display: block; }
.g2p-faq-a p { margin: 0; }
@keyframes g2-fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Bottom buy row ---------- */
.g2p-buyrow { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 4px; }

/* ---------- Reviews ---------- */
.g2p-reviews-wrap { background: #F6F6F5; padding: 46px 0 50px; }
.g2p-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g2p-review {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	margin: 0;
}
.g2p-review-stars { color: #AD882F; letter-spacing: 2px; margin-bottom: 10px; font-size: 15px; }
.g2p-review blockquote { margin: 0 0 16px; font-size: 14px; line-height: 1.65; color: #374151; font-style: italic; }
.g2p-review figcaption { display: flex; align-items: center; gap: 12px; }
.g2p-review-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.g2p-review-initial {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1C302B;
	color: #F5D596;
	font-weight: 700;
	font-size: 17px;
}
.g2p-review figcaption strong { display: block; font-size: 14px; color: #1C302B; }
.g2p-review figcaption span { font-size: 12px; color: #6b7280; }

/* ---------- Guarantee strip ---------- */
.g2p-guarantee { background: #E3EBD4; }
.g2p-guarantee-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 34px;
	padding-bottom: 34px;
	flex-wrap: wrap;
}
.g2p-guarantee h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 21px; margin: 0 0 5px; color: #1C302B; }
.g2p-guarantee p { margin: 0; font-size: 14px; color: #3f4b42; }
.g2p-guarantee-badges { display: flex; gap: 10px; }
.g2-pay-badge {
	background: #fff;
	border: 1px solid rgba(28, 48, 43, 0.15);
	border-radius: 8px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 800;
	color: #1C302B;
	letter-spacing: 0.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
	.g2-cities { grid-template-columns: repeat(3, 1fr); }
	.g2-tools { grid-template-columns: repeat(2, 1fr); }
	.g2p-pages { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1080px) {
	.g2-hero { grid-template-columns: 1fr; }
	.g2-hero-photo { min-height: 300px; order: -1; }
	.g2-feat-layout { grid-template-columns: 1fr; }
	.g2p-hero-inner { grid-template-columns: 1fr; }
	.g2p-main { grid-template-columns: 1fr; }
	.g2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.g2-hero-left { padding: 44px 24px 40px; }
	.g2-feat-item { grid-template-columns: 1fr; }
	.g2-grid { grid-template-columns: 1fr; }
	.g2-tools { grid-template-columns: 1fr; }
	.g2-cities { grid-template-columns: repeat(2, 1fr); }
	.g2-discover { grid-template-columns: 1fr; }
	.g2-nl-form { flex-direction: column; width: 100%; }
	.g2p-pages { grid-template-columns: repeat(2, 1fr); }
	.g2p-inc-list { grid-template-columns: 1fr; }
	.g2p-reviews { grid-template-columns: 1fr; }
	.g2p-trust-inner { grid-template-columns: repeat(2, 1fr); }
	.g2-hero-btns .g2-btn { width: 100%; }
}
